okclient

package module
v0.0.0-...-3380054 Latest Latest
Warning

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

Go to latest
Published: May 8, 2023 License: Apache-2.0 Imports: 22 Imported by: 0

README

Go API client for okclient

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

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: v1
  • Package version: 28.2.2
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import okclient "github.com/max-bytes/omnikeeper-client-go"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
AnsibleInventoryScanIngestApi AnsibleInventoryScanIngestIngestAnsibleInventoryScan Post /api/v{version}/Ingest/AnsibleInventoryScan
AuthRedirectApi AuthRedirectIndex Get /.well-known/openid-configuration
CytoscapeApi CytoscapeTraitCentric Get /api/v{version}/Cytoscape/traitCentric
GraphQLApi GraphQLDebug Post /graphql-debug
GraphQLApi GraphQLGet Get /graphql
GraphQLApi GraphQLIndex Post /graphql
GraphvizDotApi GraphvizDotLayerCentric Get /api/v{version}/GraphvizDot/layerCentric
GraphvizDotApi GraphvizDotTraitCentric Get /api/v{version}/GraphvizDot/traitCentric
GridViewApi GridViewAddContext Post /api/v{version}/GridView/context Adds new context
GridViewApi GridViewChangeData Post /api/v{version}/GridView/contexts/{context}/change Saves grid view row changes and returns change results
GridViewApi GridViewDeleteContext Delete /api/v{version}/GridView/context/{name} Deletes specific context
GridViewApi GridViewEditContext Put /api/v{version}/GridView/context/{name} Edits specific context
GridViewApi GridViewGetData Get /api/v{version}/GridView/contexts/{context}/data Returns grid view data for specific context
GridViewApi GridViewGetGridViewContext Get /api/v{version}/GridView/context/{name} Returns a single context in full
GridViewApi GridViewGetGridViewContexts Get /api/v{version}/GridView/contexts Returns a list of contexts for grid view.
GridViewApi GridViewGetSchema Get /api/v{version}/GridView/contexts/{context}/schema Returns grid view schema for specific context
ImportExportLayerApi ImportExportLayerExportLayer Get /api/v{version}/ImportExportLayer/exportLayer
MetadataApi MetadataGetMetadata Get /api/odata/{context}/$metadata
MetadataApi MetadataGetServiceDocument Get /api/odata/{context}
OKPluginGenericJSONIngestApi ManageContextGetAllContexts Get /api/v{version}/ingest/genericJSON/manage/context
OKPluginGenericJSONIngestApi ManageContextGetContext Get /api/v{version}/ingest/genericJSON/manage/context/{id}
OKPluginGenericJSONIngestApi ManageContextRemoveContext Delete /api/v{version}/ingest/genericJSON/manage/context/{id}
OKPluginGenericJSONIngestApi ManageContextUpsertContext Post /api/v{version}/ingest/genericJSON/manage/context
OKPluginGenericJSONIngestApi PassiveDataIngest Post /api/v{version}/ingest/genericJSON/data
RestartApplicationApi RestartApplicationRestart Get /api/v{version}/RestartApplication/restart
UsageStatsApi UsageStatsFetch Get /api/v{version}/UsageStats/fetch

Documentation For Models

Documentation For Authorization

oauth2
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes: N/A

Example

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

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)
oauth2
  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: https://[keycloak-url]/auth/realms/acme/protocol/openid-connect/auth
  • Scopes: N/A

Example

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

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
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 (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedAttributeStateEnumValues = []AttributeState{
	"New",
	"Changed",
	"Removed",
	"Renewed",
}

All allowed values of AttributeState enum

View Source
var AllowedAttributeValueTypeEnumValues = []AttributeValueType{
	"Text",
	"MultilineText",
	"Integer",
	"JSON",
	"YAML",
	"Image",
	"Mask",
	"Double",
	"Boolean",
	"DateTimeWithOffset",
}

All allowed values of AttributeValueType enum

View Source
var AllowedEdmContainerElementKindEnumValues = []EdmContainerElementKind{
	"None",
	"EntitySet",
	"ActionImport",
	"FunctionImport",
	"Singleton",
}

All allowed values of EdmContainerElementKind enum

View Source
var AllowedEdmExpressionKindEnumValues = []EdmExpressionKind{
	"None",
	"BinaryConstant",
	"BooleanConstant",
	"DateTimeOffsetConstant",
	"DecimalConstant",
	"FloatingConstant",
	"GuidConstant",
	"IntegerConstant",
	"StringConstant",
	"DurationConstant",
	"Null",
	"Record",
	"Collection",
	"Path",
	"If",
	"Cast",
	"IsType",
	"FunctionApplication",
	"LabeledExpressionReference",
	"Labeled",
	"PropertyPath",
	"NavigationPropertyPath",
	"DateConstant",
	"TimeOfDayConstant",
	"EnumMember",
	"AnnotationPath",
}

All allowed values of EdmExpressionKind enum

View Source
var AllowedEdmSchemaElementKindEnumValues = []EdmSchemaElementKind{
	"None",
	"TypeDefinition",
	"Term",
	"Action",
	"EntityContainer",
	"Function",
}

All allowed values of EdmSchemaElementKind enum

View Source
var AllowedEdmTypeKindEnumValues = []EdmTypeKind{
	"None",
	"Primitive",
	"Entity",
	"Complex",
	"Collection",
	"EntityReference",
	"Enum",
	"TypeDefinition",
	"Untyped",
	"Path",
}

All allowed values of EdmTypeKind enum

View Source
var AllowedNoFoundTargetCIHandlingEnumValues = []NoFoundTargetCIHandling{
	"CreateNew",
	"CreateNewAndWarn",
	"Drop",
}

All allowed values of NoFoundTargetCIHandling enum

View Source
var AllowedRelationStateEnumValues = []RelationState{
	"New",
	"Removed",
	"Renewed",
}

All allowed values of RelationState enum

View Source
var AllowedSameTargetCIHandlingEnumValues = []SameTargetCIHandling{
	"Error",
	"Drop",
	"DropAndWarn",
	"Evade",
	"EvadeAndWarn",
	"Merge",
}

All allowed values of SameTargetCIHandling enum

View Source
var AllowedSameTempIDHandlingEnumValues = []SameTempIDHandling{
	"DropAndWarn",
	"Drop",
}

All allowed values of SameTempIDHandling enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	AnsibleInventoryScanIngestApi *AnsibleInventoryScanIngestApiService

	AuthRedirectApi *AuthRedirectApiService

	CytoscapeApi *CytoscapeApiService

	GraphQLApi *GraphQLApiService

	GraphvizDotApi *GraphvizDotApiService

	GridViewApi *GridViewApiService

	ImportExportLayerApi *ImportExportLayerApiService

	MetadataApi *MetadataApiService

	OKPluginGenericJSONIngestApi *OKPluginGenericJSONIngestApiService

	RestartApplicationApi *RestartApplicationApiService

	UsageStatsApi *UsageStatsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Landscape omnikeeper REST API API vv1 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 AbstractInboundIDMethod

type AbstractInboundIDMethod struct {
	Type string `json:"type"`
}

AbstractInboundIDMethod struct for AbstractInboundIDMethod

func NewAbstractInboundIDMethod

func NewAbstractInboundIDMethod(type_ string) *AbstractInboundIDMethod

NewAbstractInboundIDMethod instantiates a new AbstractInboundIDMethod 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 NewAbstractInboundIDMethodWithDefaults

func NewAbstractInboundIDMethodWithDefaults() *AbstractInboundIDMethod

NewAbstractInboundIDMethodWithDefaults instantiates a new AbstractInboundIDMethod 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 (*AbstractInboundIDMethod) GetType

func (o *AbstractInboundIDMethod) GetType() string

GetType returns the Type field value

func (*AbstractInboundIDMethod) GetTypeOk

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

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

func (AbstractInboundIDMethod) MarshalJSON

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

func (*AbstractInboundIDMethod) SetType

func (o *AbstractInboundIDMethod) SetType(v string)

SetType sets field value

func (AbstractInboundIDMethod) ToMap

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

type AddContextRequest

type AddContextRequest struct {
	Id            *string                `json:"id,omitempty"`
	SpeakingName  *string                `json:"speakingName,omitempty"`
	Description   *string                `json:"description,omitempty"`
	Configuration *GridViewConfiguration `json:"configuration,omitempty"`
}

AddContextRequest struct for AddContextRequest

func NewAddContextRequest

func NewAddContextRequest() *AddContextRequest

NewAddContextRequest instantiates a new AddContextRequest 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 NewAddContextRequestWithDefaults

func NewAddContextRequestWithDefaults() *AddContextRequest

NewAddContextRequestWithDefaults instantiates a new AddContextRequest 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 (*AddContextRequest) GetConfiguration

func (o *AddContextRequest) GetConfiguration() GridViewConfiguration

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*AddContextRequest) GetConfigurationOk

func (o *AddContextRequest) GetConfigurationOk() (*GridViewConfiguration, bool)

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

func (*AddContextRequest) GetDescription

func (o *AddContextRequest) GetDescription() string

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

func (*AddContextRequest) GetDescriptionOk

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

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

func (*AddContextRequest) GetId

func (o *AddContextRequest) GetId() string

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

func (*AddContextRequest) GetIdOk

func (o *AddContextRequest) 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 (*AddContextRequest) GetSpeakingName

func (o *AddContextRequest) GetSpeakingName() string

GetSpeakingName returns the SpeakingName field value if set, zero value otherwise.

func (*AddContextRequest) GetSpeakingNameOk

func (o *AddContextRequest) GetSpeakingNameOk() (*string, bool)

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

func (*AddContextRequest) HasConfiguration

func (o *AddContextRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*AddContextRequest) HasDescription

func (o *AddContextRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AddContextRequest) HasId

func (o *AddContextRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*AddContextRequest) HasSpeakingName

func (o *AddContextRequest) HasSpeakingName() bool

HasSpeakingName returns a boolean if a field has been set.

func (AddContextRequest) MarshalJSON

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

func (*AddContextRequest) SetConfiguration

func (o *AddContextRequest) SetConfiguration(v GridViewConfiguration)

SetConfiguration gets a reference to the given GridViewConfiguration and assigns it to the Configuration field.

func (*AddContextRequest) SetDescription

func (o *AddContextRequest) SetDescription(v string)

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

func (*AddContextRequest) SetId

func (o *AddContextRequest) SetId(v string)

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

func (*AddContextRequest) SetSpeakingName

func (o *AddContextRequest) SetSpeakingName(v string)

SetSpeakingName gets a reference to the given string and assigns it to the SpeakingName field.

func (AddContextRequest) ToMap

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

type AnsibleInventoryScanDTO

type AnsibleInventoryScanDTO struct {
	SetupFacts   map[string]string `json:"setupFacts"`
	YumInstalled map[string]string `json:"yumInstalled"`
	YumRepos     map[string]string `json:"yumRepos"`
	YumUpdates   map[string]string `json:"yumUpdates"`
}

AnsibleInventoryScanDTO struct for AnsibleInventoryScanDTO

func NewAnsibleInventoryScanDTO

func NewAnsibleInventoryScanDTO(setupFacts map[string]string, yumInstalled map[string]string, yumRepos map[string]string, yumUpdates map[string]string) *AnsibleInventoryScanDTO

NewAnsibleInventoryScanDTO instantiates a new AnsibleInventoryScanDTO 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 NewAnsibleInventoryScanDTOWithDefaults

func NewAnsibleInventoryScanDTOWithDefaults() *AnsibleInventoryScanDTO

NewAnsibleInventoryScanDTOWithDefaults instantiates a new AnsibleInventoryScanDTO 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 (*AnsibleInventoryScanDTO) GetSetupFacts

func (o *AnsibleInventoryScanDTO) GetSetupFacts() map[string]string

GetSetupFacts returns the SetupFacts field value

func (*AnsibleInventoryScanDTO) GetSetupFactsOk

func (o *AnsibleInventoryScanDTO) GetSetupFactsOk() (*map[string]string, bool)

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

func (*AnsibleInventoryScanDTO) GetYumInstalled

func (o *AnsibleInventoryScanDTO) GetYumInstalled() map[string]string

GetYumInstalled returns the YumInstalled field value

func (*AnsibleInventoryScanDTO) GetYumInstalledOk

func (o *AnsibleInventoryScanDTO) GetYumInstalledOk() (*map[string]string, bool)

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

func (*AnsibleInventoryScanDTO) GetYumRepos

func (o *AnsibleInventoryScanDTO) GetYumRepos() map[string]string

GetYumRepos returns the YumRepos field value

func (*AnsibleInventoryScanDTO) GetYumReposOk

func (o *AnsibleInventoryScanDTO) GetYumReposOk() (*map[string]string, bool)

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

func (*AnsibleInventoryScanDTO) GetYumUpdates

func (o *AnsibleInventoryScanDTO) GetYumUpdates() map[string]string

GetYumUpdates returns the YumUpdates field value

func (*AnsibleInventoryScanDTO) GetYumUpdatesOk

func (o *AnsibleInventoryScanDTO) GetYumUpdatesOk() (*map[string]string, bool)

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

func (AnsibleInventoryScanDTO) MarshalJSON

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

func (*AnsibleInventoryScanDTO) SetSetupFacts

func (o *AnsibleInventoryScanDTO) SetSetupFacts(v map[string]string)

SetSetupFacts sets field value

func (*AnsibleInventoryScanDTO) SetYumInstalled

func (o *AnsibleInventoryScanDTO) SetYumInstalled(v map[string]string)

SetYumInstalled sets field value

func (*AnsibleInventoryScanDTO) SetYumRepos

func (o *AnsibleInventoryScanDTO) SetYumRepos(v map[string]string)

SetYumRepos sets field value

func (*AnsibleInventoryScanDTO) SetYumUpdates

func (o *AnsibleInventoryScanDTO) SetYumUpdates(v map[string]string)

SetYumUpdates sets field value

func (AnsibleInventoryScanDTO) ToMap

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

type AnsibleInventoryScanIngestApiService

type AnsibleInventoryScanIngestApiService service

AnsibleInventoryScanIngestApiService AnsibleInventoryScanIngestApi service

func (*AnsibleInventoryScanIngestApiService) AnsibleInventoryScanIngestIngestAnsibleInventoryScan

func (a *AnsibleInventoryScanIngestApiService) AnsibleInventoryScanIngestIngestAnsibleInventoryScan(ctx context.Context, version string) ApiAnsibleInventoryScanIngestIngestAnsibleInventoryScanRequest

AnsibleInventoryScanIngestIngestAnsibleInventoryScan Method for AnsibleInventoryScanIngestIngestAnsibleInventoryScan

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

func (*AnsibleInventoryScanIngestApiService) AnsibleInventoryScanIngestIngestAnsibleInventoryScanExecute

func (a *AnsibleInventoryScanIngestApiService) AnsibleInventoryScanIngestIngestAnsibleInventoryScanExecute(r ApiAnsibleInventoryScanIngestIngestAnsibleInventoryScanRequest) (*http.Response, error)

Execute executes the request

type ApiAnsibleInventoryScanIngestIngestAnsibleInventoryScanRequest

type ApiAnsibleInventoryScanIngestIngestAnsibleInventoryScanRequest struct {
	ApiService *AnsibleInventoryScanIngestApiService
	// contains filtered or unexported fields
}

func (ApiAnsibleInventoryScanIngestIngestAnsibleInventoryScanRequest) AnsibleInventoryScanDTO

func (ApiAnsibleInventoryScanIngestIngestAnsibleInventoryScanRequest) Execute

func (ApiAnsibleInventoryScanIngestIngestAnsibleInventoryScanRequest) SearchLayerIDs

func (ApiAnsibleInventoryScanIngestIngestAnsibleInventoryScanRequest) WriteLayerID

type ApiAuthRedirectIndexRequest

type ApiAuthRedirectIndexRequest struct {
	ApiService *AuthRedirectApiService
	// contains filtered or unexported fields
}

func (ApiAuthRedirectIndexRequest) Execute

type ApiBulkReplaceAttributesInLayerRequest

type ApiBulkReplaceAttributesInLayerRequest struct {
	ApiService *AttributeApiService
	// contains filtered or unexported fields
}

func (ApiBulkReplaceAttributesInLayerRequest) BulkCIAttributeLayerScopeDTO

func (r ApiBulkReplaceAttributesInLayerRequest) BulkCIAttributeLayerScopeDTO(bulkCIAttributeLayerScopeDTO BulkCIAttributeLayerScopeDTO) ApiBulkReplaceAttributesInLayerRequest

func (ApiBulkReplaceAttributesInLayerRequest) Execute

type ApiCytoscapeTraitCentricRequest

type ApiCytoscapeTraitCentricRequest struct {
	ApiService *CytoscapeApiService
	// contains filtered or unexported fields
}

func (ApiCytoscapeTraitCentricRequest) Execute

func (ApiCytoscapeTraitCentricRequest) LayerIDs

func (ApiCytoscapeTraitCentricRequest) TraitIDs

func (ApiCytoscapeTraitCentricRequest) TraitIDsRegex

type ApiFindMergedAttributesByNameRequest

type ApiFindMergedAttributesByNameRequest struct {
	ApiService *AttributeApiService
	// contains filtered or unexported fields
}

func (ApiFindMergedAttributesByNameRequest) AtTime

func (ApiFindMergedAttributesByNameRequest) Ciids

func (ApiFindMergedAttributesByNameRequest) Execute

func (ApiFindMergedAttributesByNameRequest) LayerIDs

func (ApiFindMergedAttributesByNameRequest) Regex

type ApiGetAllCIIDsRequest

type ApiGetAllCIIDsRequest struct {
	ApiService *CIApiService
	// contains filtered or unexported fields
}

func (ApiGetAllCIIDsRequest) Execute

func (r ApiGetAllCIIDsRequest) Execute() ([]string, *http.Response, error)

type ApiGetAllLayersRequest

type ApiGetAllLayersRequest struct {
	ApiService *LayerApiService
	// contains filtered or unexported fields
}

func (ApiGetAllLayersRequest) Execute

func (r ApiGetAllLayersRequest) Execute() ([]LayerDTO, *http.Response, error)

type ApiGetAllMergedRelationsRequest

type ApiGetAllMergedRelationsRequest struct {
	ApiService *RelationApiService
	// contains filtered or unexported fields
}

func (ApiGetAllMergedRelationsRequest) AtTime

func (ApiGetAllMergedRelationsRequest) Execute

func (ApiGetAllMergedRelationsRequest) LayerIDs

type ApiGetCIByIDRequest

type ApiGetCIByIDRequest struct {
	ApiService *CIApiService
	// contains filtered or unexported fields
}

func (ApiGetCIByIDRequest) AtTime

Specify datetime, for which point in time to get the data; leave empty to use current time (https://www.newtonsoft.com/json/help/html/DatesInJSON.htm)

func (ApiGetCIByIDRequest) CIID

func (ApiGetCIByIDRequest) Execute

func (r ApiGetCIByIDRequest) Execute() (*CIDTO, *http.Response, error)

func (ApiGetCIByIDRequest) LayerIDs

func (r ApiGetCIByIDRequest) LayerIDs(layerIDs []string) ApiGetCIByIDRequest

Specifies which layers contribute to the result, and in which order

type ApiGetCIsByIDRequest

type ApiGetCIsByIDRequest struct {
	ApiService *CIApiService
	// contains filtered or unexported fields
}

func (ApiGetCIsByIDRequest) AtTime

Specify datetime, for which point in time to get the data; leave empty to use current time (https://www.newtonsoft.com/json/help/html/DatesInJSON.htm)

func (ApiGetCIsByIDRequest) CIIDs

func (ApiGetCIsByIDRequest) Execute

func (r ApiGetCIsByIDRequest) Execute() ([]CIDTO, *http.Response, error)

func (ApiGetCIsByIDRequest) LayerIDs

func (r ApiGetCIsByIDRequest) LayerIDs(layerIDs []string) ApiGetCIsByIDRequest

Specifies which layers contribute to the result, and in which order

type ApiGetEffectiveTraitsForTraitNameRequest

type ApiGetEffectiveTraitsForTraitNameRequest struct {
	ApiService *TraitApiService
	// contains filtered or unexported fields
}

func (ApiGetEffectiveTraitsForTraitNameRequest) AtTime

func (ApiGetEffectiveTraitsForTraitNameRequest) Execute

func (ApiGetEffectiveTraitsForTraitNameRequest) LayerIDs

func (ApiGetEffectiveTraitsForTraitNameRequest) TraitName

type ApiGetLayerByNameRequest

type ApiGetLayerByNameRequest struct {
	ApiService *LayerApiService
	// contains filtered or unexported fields
}

func (ApiGetLayerByNameRequest) Execute

func (ApiGetLayerByNameRequest) LayerName

type ApiGetLayersByNameRequest

type ApiGetLayersByNameRequest struct {
	ApiService *LayerApiService
	// contains filtered or unexported fields
}

func (ApiGetLayersByNameRequest) Execute

func (ApiGetLayersByNameRequest) LayerNames

func (r ApiGetLayersByNameRequest) LayerNames(layerNames []string) ApiGetLayersByNameRequest

type ApiGetMergedAttributeRequest

type ApiGetMergedAttributeRequest struct {
	ApiService *AttributeApiService
	// contains filtered or unexported fields
}

func (ApiGetMergedAttributeRequest) AtTime

func (ApiGetMergedAttributeRequest) Ciid

func (ApiGetMergedAttributeRequest) Execute

func (ApiGetMergedAttributeRequest) LayerIDs

func (ApiGetMergedAttributeRequest) Name

type ApiGetMergedAttributesRequest

type ApiGetMergedAttributesRequest struct {
	ApiService *AttributeApiService
	// contains filtered or unexported fields
}

func (ApiGetMergedAttributesRequest) AtTime

func (ApiGetMergedAttributesRequest) Ciids

func (ApiGetMergedAttributesRequest) Execute

func (ApiGetMergedAttributesRequest) LayerIDs

type ApiGetMergedAttributesWithNameRequest

type ApiGetMergedAttributesWithNameRequest struct {
	ApiService *AttributeApiService
	// contains filtered or unexported fields
}

func (ApiGetMergedAttributesWithNameRequest) AtTime

func (ApiGetMergedAttributesWithNameRequest) Execute

func (ApiGetMergedAttributesWithNameRequest) LayerIDs

func (ApiGetMergedAttributesWithNameRequest) Name

type ApiGetMergedRelationRequest

type ApiGetMergedRelationRequest struct {
	ApiService *RelationApiService
	// contains filtered or unexported fields
}

func (ApiGetMergedRelationRequest) AtTime

func (ApiGetMergedRelationRequest) Execute

func (ApiGetMergedRelationRequest) FromCIID

func (ApiGetMergedRelationRequest) LayerIDs

func (ApiGetMergedRelationRequest) PredicateID

func (ApiGetMergedRelationRequest) ToCIID

type ApiGetMergedRelationsFromOrToCIRequest

type ApiGetMergedRelationsFromOrToCIRequest struct {
	ApiService *RelationApiService
	// contains filtered or unexported fields
}

func (ApiGetMergedRelationsFromOrToCIRequest) AtTime

func (ApiGetMergedRelationsFromOrToCIRequest) Ciid

func (ApiGetMergedRelationsFromOrToCIRequest) Execute

func (ApiGetMergedRelationsFromOrToCIRequest) LayerIDs

type ApiGetMergedRelationsOutgoingFromCIRequest

type ApiGetMergedRelationsOutgoingFromCIRequest struct {
	ApiService *RelationApiService
	// contains filtered or unexported fields
}

func (ApiGetMergedRelationsOutgoingFromCIRequest) AtTime

func (ApiGetMergedRelationsOutgoingFromCIRequest) Execute

func (ApiGetMergedRelationsOutgoingFromCIRequest) FromCIID

func (ApiGetMergedRelationsOutgoingFromCIRequest) LayerIDs

type ApiGetMergedRelationsWithPredicateRequest

type ApiGetMergedRelationsWithPredicateRequest struct {
	ApiService *RelationApiService
	// contains filtered or unexported fields
}

func (ApiGetMergedRelationsWithPredicateRequest) AtTime

func (ApiGetMergedRelationsWithPredicateRequest) Execute

func (ApiGetMergedRelationsWithPredicateRequest) LayerIDs

func (ApiGetMergedRelationsWithPredicateRequest) PredicateID

type ApiGraphQLDebugRequest

type ApiGraphQLDebugRequest struct {
	ApiService *GraphQLApiService
	// contains filtered or unexported fields
}

func (ApiGraphQLDebugRequest) Execute

func (r ApiGraphQLDebugRequest) Execute() (*http.Response, error)

func (ApiGraphQLDebugRequest) GraphQLQuery

func (r ApiGraphQLDebugRequest) GraphQLQuery(graphQLQuery GraphQLQuery) ApiGraphQLDebugRequest

type ApiGraphQLGetRequest

type ApiGraphQLGetRequest struct {
	ApiService *GraphQLApiService
	// contains filtered or unexported fields
}

func (ApiGraphQLGetRequest) Execute

func (r ApiGraphQLGetRequest) Execute() (*http.Response, error)

func (ApiGraphQLGetRequest) OperationName

func (r ApiGraphQLGetRequest) OperationName(operationName string) ApiGraphQLGetRequest

func (ApiGraphQLGetRequest) Query

func (ApiGraphQLGetRequest) Variables

func (r ApiGraphQLGetRequest) Variables(variables map[string]interface{}) ApiGraphQLGetRequest

type ApiGraphQLIndexRequest

type ApiGraphQLIndexRequest struct {
	ApiService *GraphQLApiService
	// contains filtered or unexported fields
}

func (ApiGraphQLIndexRequest) Execute

func (r ApiGraphQLIndexRequest) Execute() (*http.Response, error)

func (ApiGraphQLIndexRequest) GraphQLQuery

func (r ApiGraphQLIndexRequest) GraphQLQuery(graphQLQuery GraphQLQuery) ApiGraphQLIndexRequest

type ApiGraphvizDotLayerCentricRequest

type ApiGraphvizDotLayerCentricRequest struct {
	ApiService *GraphvizDotApiService
	// contains filtered or unexported fields
}

func (ApiGraphvizDotLayerCentricRequest) Execute

func (ApiGraphvizDotLayerCentricRequest) From

func (ApiGraphvizDotLayerCentricRequest) LayerIDs

func (ApiGraphvizDotLayerCentricRequest) To

type ApiGraphvizDotTraitCentricRequest

type ApiGraphvizDotTraitCentricRequest struct {
	ApiService *GraphvizDotApiService
	// contains filtered or unexported fields
}

func (ApiGraphvizDotTraitCentricRequest) Execute

func (ApiGraphvizDotTraitCentricRequest) LayerIDs

func (ApiGraphvizDotTraitCentricRequest) TraitIDs

func (ApiGraphvizDotTraitCentricRequest) TraitIDsRegex

type ApiGridViewAddContextRequest

type ApiGridViewAddContextRequest struct {
	ApiService *GridViewApiService
	// contains filtered or unexported fields
}

func (ApiGridViewAddContextRequest) AddContextRequest

func (r ApiGridViewAddContextRequest) AddContextRequest(addContextRequest AddContextRequest) ApiGridViewAddContextRequest

func (ApiGridViewAddContextRequest) Execute

type ApiGridViewChangeDataRequest

type ApiGridViewChangeDataRequest struct {
	ApiService *GridViewApiService
	// contains filtered or unexported fields
}

func (ApiGridViewChangeDataRequest) ChangeDataRequest

func (r ApiGridViewChangeDataRequest) ChangeDataRequest(changeDataRequest ChangeDataRequest) ApiGridViewChangeDataRequest

func (ApiGridViewChangeDataRequest) Execute

type ApiGridViewDeleteContextRequest

type ApiGridViewDeleteContextRequest struct {
	ApiService *GridViewApiService
	// contains filtered or unexported fields
}

func (ApiGridViewDeleteContextRequest) Execute

type ApiGridViewEditContextRequest

type ApiGridViewEditContextRequest struct {
	ApiService *GridViewApiService
	// contains filtered or unexported fields
}

func (ApiGridViewEditContextRequest) EditContextRequest

func (r ApiGridViewEditContextRequest) EditContextRequest(editContextRequest EditContextRequest) ApiGridViewEditContextRequest

func (ApiGridViewEditContextRequest) Execute

type ApiGridViewGetDataRequest

type ApiGridViewGetDataRequest struct {
	ApiService *GridViewApiService
	// contains filtered or unexported fields
}

func (ApiGridViewGetDataRequest) Execute

func (r ApiGridViewGetDataRequest) Execute() (*http.Response, error)

type ApiGridViewGetGridViewContextRequest

type ApiGridViewGetGridViewContextRequest struct {
	ApiService *GridViewApiService
	// contains filtered or unexported fields
}

func (ApiGridViewGetGridViewContextRequest) Execute

type ApiGridViewGetGridViewContextsRequest

type ApiGridViewGetGridViewContextsRequest struct {
	ApiService *GridViewApiService
	// contains filtered or unexported fields
}

func (ApiGridViewGetGridViewContextsRequest) Execute

type ApiGridViewGetSchemaRequest

type ApiGridViewGetSchemaRequest struct {
	ApiService *GridViewApiService
	// contains filtered or unexported fields
}

func (ApiGridViewGetSchemaRequest) Execute

type ApiImportExportLayerExportLayerRequest

type ApiImportExportLayerExportLayerRequest struct {
	ApiService *ImportExportLayerApiService
	// contains filtered or unexported fields
}

func (ApiImportExportLayerExportLayerRequest) Ciids

func (ApiImportExportLayerExportLayerRequest) Execute

func (ApiImportExportLayerExportLayerRequest) LayerID

type ApiManageContextGetAllContextsRequest

type ApiManageContextGetAllContextsRequest struct {
	ApiService *OKPluginGenericJSONIngestApiService
	// contains filtered or unexported fields
}

func (ApiManageContextGetAllContextsRequest) Execute

func (r ApiManageContextGetAllContextsRequest) Execute() ([]map[string]interface{}, *http.Response, error)

type ApiManageContextGetContextRequest

type ApiManageContextGetContextRequest struct {
	ApiService *OKPluginGenericJSONIngestApiService
	// contains filtered or unexported fields
}

func (ApiManageContextGetContextRequest) Execute

func (r ApiManageContextGetContextRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiManageContextRemoveContextRequest

type ApiManageContextRemoveContextRequest struct {
	ApiService *OKPluginGenericJSONIngestApiService
	// contains filtered or unexported fields
}

func (ApiManageContextRemoveContextRequest) Execute

type ApiManageContextUpsertContextRequest

type ApiManageContextUpsertContextRequest struct {
	ApiService *OKPluginGenericJSONIngestApiService
	// contains filtered or unexported fields
}

func (ApiManageContextUpsertContextRequest) Body

func (ApiManageContextUpsertContextRequest) Execute

func (r ApiManageContextUpsertContextRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiMetadataGetMetadataRequest

type ApiMetadataGetMetadataRequest struct {
	ApiService *MetadataApiService
	// contains filtered or unexported fields
}

func (ApiMetadataGetMetadataRequest) Execute

type ApiMetadataGetServiceDocumentRequest

type ApiMetadataGetServiceDocumentRequest struct {
	ApiService *MetadataApiService
	// contains filtered or unexported fields
}

func (ApiMetadataGetServiceDocumentRequest) Execute

type ApiPassiveDataIngestRequest

type ApiPassiveDataIngestRequest struct {
	ApiService *OKPluginGenericJSONIngestApiService
	// contains filtered or unexported fields
}

func (ApiPassiveDataIngestRequest) Execute

func (ApiPassiveDataIngestRequest) GenericInboundData

func (r ApiPassiveDataIngestRequest) GenericInboundData(genericInboundData GenericInboundData) ApiPassiveDataIngestRequest

func (ApiPassiveDataIngestRequest) ReadLayerIDs

func (r ApiPassiveDataIngestRequest) ReadLayerIDs(readLayerIDs []string) ApiPassiveDataIngestRequest

func (ApiPassiveDataIngestRequest) WriteLayerID

func (r ApiPassiveDataIngestRequest) WriteLayerID(writeLayerID string) ApiPassiveDataIngestRequest

type ApiRestartApplicationRestartRequest

type ApiRestartApplicationRestartRequest struct {
	ApiService *RestartApplicationApiService
	// contains filtered or unexported fields
}

func (ApiRestartApplicationRestartRequest) Execute

type ApiSearchCIsByTraitsRequest

type ApiSearchCIsByTraitsRequest struct {
	ApiService *CISearchApiService
	// contains filtered or unexported fields
}

func (ApiSearchCIsByTraitsRequest) AtTime

func (ApiSearchCIsByTraitsRequest) Execute

func (ApiSearchCIsByTraitsRequest) LayerIDs

func (ApiSearchCIsByTraitsRequest) WithTraits

func (ApiSearchCIsByTraitsRequest) WithoutTraits

func (r ApiSearchCIsByTraitsRequest) WithoutTraits(withoutTraits []string) ApiSearchCIsByTraitsRequest

type ApiUsageStatsFetchRequest

type ApiUsageStatsFetchRequest struct {
	ApiService *UsageStatsApiService
	// contains filtered or unexported fields
}

func (ApiUsageStatsFetchRequest) Execute

func (r ApiUsageStatsFetchRequest) Execute() (*http.Response, error)

func (ApiUsageStatsFetchRequest) From

func (ApiUsageStatsFetchRequest) To

type AttributeApiService

type AttributeApiService service

AttributeApiService AttributeApi service

func (*AttributeApiService) BulkReplaceAttributesInLayer

func (a *AttributeApiService) BulkReplaceAttributesInLayer(ctx context.Context, version string) ApiBulkReplaceAttributesInLayerRequest

BulkReplaceAttributesInLayer bulk replace all attributes in specified layer

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

func (*AttributeApiService) BulkReplaceAttributesInLayerExecute

func (a *AttributeApiService) BulkReplaceAttributesInLayerExecute(r ApiBulkReplaceAttributesInLayerRequest) (*http.Response, error)

Execute executes the request

func (*AttributeApiService) FindMergedAttributesByName

func (a *AttributeApiService) FindMergedAttributesByName(ctx context.Context, version string) ApiFindMergedAttributesByNameRequest

FindMergedAttributesByName

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

func (*AttributeApiService) FindMergedAttributesByNameExecute

func (a *AttributeApiService) FindMergedAttributesByNameExecute(r ApiFindMergedAttributesByNameRequest) ([]CIAttributeDTO, *http.Response, error)

Execute executes the request

@return []CIAttributeDTO

func (*AttributeApiService) GetMergedAttribute

func (a *AttributeApiService) GetMergedAttribute(ctx context.Context, version string) ApiGetMergedAttributeRequest

GetMergedAttribute

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

func (*AttributeApiService) GetMergedAttributeExecute

func (a *AttributeApiService) GetMergedAttributeExecute(r ApiGetMergedAttributeRequest) (*CIAttributeDTO, *http.Response, error)

Execute executes the request

@return CIAttributeDTO

func (*AttributeApiService) GetMergedAttributes

func (a *AttributeApiService) GetMergedAttributes(ctx context.Context, version string) ApiGetMergedAttributesRequest

GetMergedAttributes

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

func (*AttributeApiService) GetMergedAttributesExecute

func (a *AttributeApiService) GetMergedAttributesExecute(r ApiGetMergedAttributesRequest) ([]CIAttributeDTO, *http.Response, error)

Execute executes the request

@return []CIAttributeDTO

func (*AttributeApiService) GetMergedAttributesWithName

func (a *AttributeApiService) GetMergedAttributesWithName(ctx context.Context, version string) ApiGetMergedAttributesWithNameRequest

GetMergedAttributesWithName

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

func (*AttributeApiService) GetMergedAttributesWithNameExecute

func (a *AttributeApiService) GetMergedAttributesWithNameExecute(r ApiGetMergedAttributesWithNameRequest) ([]CIAttributeDTO, *http.Response, error)

Execute executes the request

@return []CIAttributeDTO

type AttributeState

type AttributeState string

AttributeState the model 'AttributeState'

const (
	ATTRIBUTESTATE_NEW     AttributeState = "New"
	ATTRIBUTESTATE_CHANGED AttributeState = "Changed"
	ATTRIBUTESTATE_REMOVED AttributeState = "Removed"
	ATTRIBUTESTATE_RENEWED AttributeState = "Renewed"
)

List of AttributeState

func NewAttributeStateFromValue

func NewAttributeStateFromValue(v string) (*AttributeState, error)

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

func (AttributeState) IsValid

func (v AttributeState) IsValid() bool

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

func (AttributeState) Ptr

func (v AttributeState) Ptr() *AttributeState

Ptr returns reference to AttributeState value

func (*AttributeState) UnmarshalJSON

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

type AttributeValueDTO

type AttributeValueDTO struct {
	Type    *AttributeValueType `json:"type,omitempty"`
	IsArray *bool               `json:"isArray,omitempty"`
	Values  []string            `json:"values,omitempty"`
}

AttributeValueDTO struct for AttributeValueDTO

func NewAttributeValueDTO

func NewAttributeValueDTO() *AttributeValueDTO

NewAttributeValueDTO instantiates a new AttributeValueDTO 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 NewAttributeValueDTOWithDefaults

func NewAttributeValueDTOWithDefaults() *AttributeValueDTO

NewAttributeValueDTOWithDefaults instantiates a new AttributeValueDTO 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 (*AttributeValueDTO) GetIsArray

func (o *AttributeValueDTO) GetIsArray() bool

GetIsArray returns the IsArray field value if set, zero value otherwise.

func (*AttributeValueDTO) GetIsArrayOk

func (o *AttributeValueDTO) GetIsArrayOk() (*bool, bool)

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

func (*AttributeValueDTO) GetType

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

func (*AttributeValueDTO) GetTypeOk

func (o *AttributeValueDTO) GetTypeOk() (*AttributeValueType, bool)

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

func (*AttributeValueDTO) GetValues

func (o *AttributeValueDTO) GetValues() []string

GetValues returns the Values field value if set, zero value otherwise.

func (*AttributeValueDTO) GetValuesOk

func (o *AttributeValueDTO) GetValuesOk() ([]string, bool)

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

func (*AttributeValueDTO) HasIsArray

func (o *AttributeValueDTO) HasIsArray() bool

HasIsArray returns a boolean if a field has been set.

func (*AttributeValueDTO) HasType

func (o *AttributeValueDTO) HasType() bool

HasType returns a boolean if a field has been set.

func (*AttributeValueDTO) HasValues

func (o *AttributeValueDTO) HasValues() bool

HasValues returns a boolean if a field has been set.

func (AttributeValueDTO) MarshalJSON

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

func (*AttributeValueDTO) SetIsArray

func (o *AttributeValueDTO) SetIsArray(v bool)

SetIsArray gets a reference to the given bool and assigns it to the IsArray field.

func (*AttributeValueDTO) SetType

func (o *AttributeValueDTO) SetType(v AttributeValueType)

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

func (*AttributeValueDTO) SetValues

func (o *AttributeValueDTO) SetValues(v []string)

SetValues gets a reference to the given []string and assigns it to the Values field.

func (AttributeValueDTO) ToMap

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

type AttributeValueType

type AttributeValueType string

AttributeValueType the model 'AttributeValueType'

const (
	ATTRIBUTEVALUETYPE_TEXT                  AttributeValueType = "Text"
	ATTRIBUTEVALUETYPE_MULTILINE_TEXT        AttributeValueType = "MultilineText"
	ATTRIBUTEVALUETYPE_INTEGER               AttributeValueType = "Integer"
	ATTRIBUTEVALUETYPE_JSON                  AttributeValueType = "JSON"
	ATTRIBUTEVALUETYPE_YAML                  AttributeValueType = "YAML"
	ATTRIBUTEVALUETYPE_IMAGE                 AttributeValueType = "Image"
	ATTRIBUTEVALUETYPE_MASK                  AttributeValueType = "Mask"
	ATTRIBUTEVALUETYPE_DOUBLE                AttributeValueType = "Double"
	ATTRIBUTEVALUETYPE_BOOLEAN               AttributeValueType = "Boolean"
	ATTRIBUTEVALUETYPE_DATE_TIME_WITH_OFFSET AttributeValueType = "DateTimeWithOffset"
)

List of AttributeValueType

func NewAttributeValueTypeFromValue

func NewAttributeValueTypeFromValue(v string) (*AttributeValueType, error)

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

func (AttributeValueType) IsValid

func (v AttributeValueType) IsValid() bool

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

func (AttributeValueType) Ptr

Ptr returns reference to AttributeValueType value

func (*AttributeValueType) UnmarshalJSON

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

type AuthRedirectApiService

type AuthRedirectApiService service

AuthRedirectApiService AuthRedirectApi service

func (*AuthRedirectApiService) AuthRedirectIndex

AuthRedirectIndex Method for AuthRedirectIndex

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

func (*AuthRedirectApiService) AuthRedirectIndexExecute

func (a *AuthRedirectApiService) AuthRedirectIndexExecute(r ApiAuthRedirectIndexRequest) (*http.Response, error)

Execute executes the request

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 BulkCIAttributeLayerScopeDTO

type BulkCIAttributeLayerScopeDTO struct {
	NamePrefix string        `json:"namePrefix"`
	LayerID    string        `json:"layerID"`
	Fragments  []FragmentDTO `json:"fragments"`
}

BulkCIAttributeLayerScopeDTO struct for BulkCIAttributeLayerScopeDTO

func NewBulkCIAttributeLayerScopeDTO

func NewBulkCIAttributeLayerScopeDTO(namePrefix string, layerID string, fragments []FragmentDTO) *BulkCIAttributeLayerScopeDTO

NewBulkCIAttributeLayerScopeDTO instantiates a new BulkCIAttributeLayerScopeDTO 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 NewBulkCIAttributeLayerScopeDTOWithDefaults

func NewBulkCIAttributeLayerScopeDTOWithDefaults() *BulkCIAttributeLayerScopeDTO

NewBulkCIAttributeLayerScopeDTOWithDefaults instantiates a new BulkCIAttributeLayerScopeDTO 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 (*BulkCIAttributeLayerScopeDTO) GetFragments

func (o *BulkCIAttributeLayerScopeDTO) GetFragments() []FragmentDTO

GetFragments returns the Fragments field value

func (*BulkCIAttributeLayerScopeDTO) GetFragmentsOk

func (o *BulkCIAttributeLayerScopeDTO) GetFragmentsOk() ([]FragmentDTO, bool)

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

func (*BulkCIAttributeLayerScopeDTO) GetLayerID

func (o *BulkCIAttributeLayerScopeDTO) GetLayerID() string

GetLayerID returns the LayerID field value

func (*BulkCIAttributeLayerScopeDTO) GetLayerIDOk

func (o *BulkCIAttributeLayerScopeDTO) GetLayerIDOk() (*string, bool)

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

func (*BulkCIAttributeLayerScopeDTO) GetNamePrefix

func (o *BulkCIAttributeLayerScopeDTO) GetNamePrefix() string

GetNamePrefix returns the NamePrefix field value

func (*BulkCIAttributeLayerScopeDTO) GetNamePrefixOk

func (o *BulkCIAttributeLayerScopeDTO) GetNamePrefixOk() (*string, bool)

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

func (BulkCIAttributeLayerScopeDTO) MarshalJSON

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

func (*BulkCIAttributeLayerScopeDTO) SetFragments

func (o *BulkCIAttributeLayerScopeDTO) SetFragments(v []FragmentDTO)

SetFragments sets field value

func (*BulkCIAttributeLayerScopeDTO) SetLayerID

func (o *BulkCIAttributeLayerScopeDTO) SetLayerID(v string)

SetLayerID sets field value

func (*BulkCIAttributeLayerScopeDTO) SetNamePrefix

func (o *BulkCIAttributeLayerScopeDTO) SetNamePrefix(v string)

SetNamePrefix sets field value

type CIApiService

type CIApiService service

CIApiService CIApi service

func (*CIApiService) GetAllCIIDs

func (a *CIApiService) GetAllCIIDs(ctx context.Context, version string) ApiGetAllCIIDsRequest

GetAllCIIDs list of all CI-IDs

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

func (*CIApiService) GetAllCIIDsExecute

func (a *CIApiService) GetAllCIIDsExecute(r ApiGetAllCIIDsRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*CIApiService) GetCIByID

func (a *CIApiService) GetCIByID(ctx context.Context, version string) ApiGetCIByIDRequest

GetCIByID single CI by CI-ID

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

func (*CIApiService) GetCIByIDExecute

func (a *CIApiService) GetCIByIDExecute(r ApiGetCIByIDRequest) (*CIDTO, *http.Response, error)

Execute executes the request

@return CIDTO

func (*CIApiService) GetCIsByID

func (a *CIApiService) GetCIsByID(ctx context.Context, version string) ApiGetCIsByIDRequest

GetCIsByID multiple CIs by CI-ID !Watch out for the query URL getting too long because of a lot of CIIDs! TODO: consider using POST

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

func (*CIApiService) GetCIsByIDExecute

func (a *CIApiService) GetCIsByIDExecute(r ApiGetCIsByIDRequest) ([]CIDTO, *http.Response, error)

Execute executes the request

@return []CIDTO

type CIAttributeDTO

type CIAttributeDTO struct {
	Id    string            `json:"id"`
	Name  string            `json:"name"`
	Value AttributeValueDTO `json:"value"`
	Ciid  string            `json:"ciid"`
	State AttributeState    `json:"state"`
}

CIAttributeDTO struct for CIAttributeDTO

func NewCIAttributeDTO

func NewCIAttributeDTO(id string, name string, value AttributeValueDTO, ciid string, state AttributeState) *CIAttributeDTO

NewCIAttributeDTO instantiates a new CIAttributeDTO 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 NewCIAttributeDTOWithDefaults

func NewCIAttributeDTOWithDefaults() *CIAttributeDTO

NewCIAttributeDTOWithDefaults instantiates a new CIAttributeDTO 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 (*CIAttributeDTO) GetCiid

func (o *CIAttributeDTO) GetCiid() string

GetCiid returns the Ciid field value

func (*CIAttributeDTO) GetCiidOk

func (o *CIAttributeDTO) GetCiidOk() (*string, bool)

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

func (*CIAttributeDTO) GetId

func (o *CIAttributeDTO) GetId() string

GetId returns the Id field value

func (*CIAttributeDTO) GetIdOk

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

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

func (*CIAttributeDTO) GetName

func (o *CIAttributeDTO) GetName() string

GetName returns the Name field value

func (*CIAttributeDTO) GetNameOk

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

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

func (*CIAttributeDTO) GetState

func (o *CIAttributeDTO) GetState() AttributeState

GetState returns the State field value

func (*CIAttributeDTO) GetStateOk

func (o *CIAttributeDTO) GetStateOk() (*AttributeState, bool)

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

func (*CIAttributeDTO) GetValue

func (o *CIAttributeDTO) GetValue() AttributeValueDTO

GetValue returns the Value field value

func (*CIAttributeDTO) GetValueOk

func (o *CIAttributeDTO) GetValueOk() (*AttributeValueDTO, bool)

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

func (CIAttributeDTO) MarshalJSON

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

func (*CIAttributeDTO) SetCiid

func (o *CIAttributeDTO) SetCiid(v string)

SetCiid sets field value

func (*CIAttributeDTO) SetId

func (o *CIAttributeDTO) SetId(v string)

SetId sets field value

func (*CIAttributeDTO) SetName

func (o *CIAttributeDTO) SetName(v string)

SetName sets field value

func (*CIAttributeDTO) SetState

func (o *CIAttributeDTO) SetState(v AttributeState)

SetState sets field value

func (*CIAttributeDTO) SetValue

func (o *CIAttributeDTO) SetValue(v AttributeValueDTO)

SetValue sets field value

type CIDTO

type CIDTO struct {
	Id         string                    `json:"id"`
	Attributes map[string]CIAttributeDTO `json:"attributes"`
}

CIDTO struct for CIDTO

func NewCIDTO

func NewCIDTO(id string, attributes map[string]CIAttributeDTO) *CIDTO

NewCIDTO instantiates a new CIDTO 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 NewCIDTOWithDefaults

func NewCIDTOWithDefaults() *CIDTO

NewCIDTOWithDefaults instantiates a new CIDTO 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 (*CIDTO) GetAttributes

func (o *CIDTO) GetAttributes() map[string]CIAttributeDTO

GetAttributes returns the Attributes field value

func (*CIDTO) GetAttributesOk

func (o *CIDTO) GetAttributesOk() (*map[string]CIAttributeDTO, bool)

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

func (*CIDTO) GetId

func (o *CIDTO) GetId() string

GetId returns the Id field value

func (*CIDTO) GetIdOk

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

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

func (CIDTO) MarshalJSON

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

func (*CIDTO) SetAttributes

func (o *CIDTO) SetAttributes(v map[string]CIAttributeDTO)

SetAttributes sets field value

func (*CIDTO) SetId

func (o *CIDTO) SetId(v string)

SetId sets field value

type CISearchApiService

type CISearchApiService service

CISearchApiService CISearchApi service

func (*CISearchApiService) SearchCIsByTraits

func (a *CISearchApiService) SearchCIsByTraits(ctx context.Context, version string) ApiSearchCIsByTraitsRequest

SearchCIsByTraits Method for SearchCIsByTraits

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

func (*CISearchApiService) SearchCIsByTraitsExecute

func (a *CISearchApiService) SearchCIsByTraitsExecute(r ApiSearchCIsByTraitsRequest) ([]CIDTO, *http.Response, error)

Execute executes the request

@return []CIDTO

type ChangeDataCell

type ChangeDataCell struct {
	Id         *string            `json:"id,omitempty"`
	Value      *AttributeValueDTO `json:"value,omitempty"`
	Changeable *bool              `json:"changeable,omitempty"`
}

ChangeDataCell struct for ChangeDataCell

func NewChangeDataCell

func NewChangeDataCell() *ChangeDataCell

NewChangeDataCell instantiates a new ChangeDataCell 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 NewChangeDataCellWithDefaults

func NewChangeDataCellWithDefaults() *ChangeDataCell

NewChangeDataCellWithDefaults instantiates a new ChangeDataCell 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 (*ChangeDataCell) GetChangeable

func (o *ChangeDataCell) GetChangeable() bool

GetChangeable returns the Changeable field value if set, zero value otherwise.

func (*ChangeDataCell) GetChangeableOk

func (o *ChangeDataCell) GetChangeableOk() (*bool, bool)

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

func (*ChangeDataCell) GetId

func (o *ChangeDataCell) GetId() string

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

func (*ChangeDataCell) GetIdOk

func (o *ChangeDataCell) 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 (*ChangeDataCell) GetValue

func (o *ChangeDataCell) GetValue() AttributeValueDTO

GetValue returns the Value field value if set, zero value otherwise.

func (*ChangeDataCell) GetValueOk

func (o *ChangeDataCell) GetValueOk() (*AttributeValueDTO, bool)

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

func (*ChangeDataCell) HasChangeable

func (o *ChangeDataCell) HasChangeable() bool

HasChangeable returns a boolean if a field has been set.

func (*ChangeDataCell) HasId

func (o *ChangeDataCell) HasId() bool

HasId returns a boolean if a field has been set.

func (*ChangeDataCell) HasValue

func (o *ChangeDataCell) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ChangeDataCell) MarshalJSON

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

func (*ChangeDataCell) SetChangeable

func (o *ChangeDataCell) SetChangeable(v bool)

SetChangeable gets a reference to the given bool and assigns it to the Changeable field.

func (*ChangeDataCell) SetId

func (o *ChangeDataCell) SetId(v string)

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

func (*ChangeDataCell) SetValue

func (o *ChangeDataCell) SetValue(v AttributeValueDTO)

SetValue gets a reference to the given AttributeValueDTO and assigns it to the Value field.

func (ChangeDataCell) ToMap

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

type ChangeDataRequest

type ChangeDataRequest struct {
	SparseRows []SparseRow `json:"sparseRows,omitempty"`
}

ChangeDataRequest struct for ChangeDataRequest

func NewChangeDataRequest

func NewChangeDataRequest() *ChangeDataRequest

NewChangeDataRequest instantiates a new ChangeDataRequest 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 NewChangeDataRequestWithDefaults

func NewChangeDataRequestWithDefaults() *ChangeDataRequest

NewChangeDataRequestWithDefaults instantiates a new ChangeDataRequest 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 (*ChangeDataRequest) GetSparseRows

func (o *ChangeDataRequest) GetSparseRows() []SparseRow

GetSparseRows returns the SparseRows field value if set, zero value otherwise.

func (*ChangeDataRequest) GetSparseRowsOk

func (o *ChangeDataRequest) GetSparseRowsOk() ([]SparseRow, bool)

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

func (*ChangeDataRequest) HasSparseRows

func (o *ChangeDataRequest) HasSparseRows() bool

HasSparseRows returns a boolean if a field has been set.

func (ChangeDataRequest) MarshalJSON

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

func (*ChangeDataRequest) SetSparseRows

func (o *ChangeDataRequest) SetSparseRows(v []SparseRow)

SetSparseRows gets a reference to the given []SparseRow and assigns it to the SparseRows field.

func (ChangeDataRequest) ToMap

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

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 Context

type Context struct {
	Id              NullableString         `json:"id,omitempty"`
	ExtractConfig   map[string]interface{} `json:"extractConfig,omitempty"`
	TransformConfig map[string]interface{} `json:"transformConfig,omitempty"`
	LoadConfig      *ILoadConfig           `json:"loadConfig,omitempty"`
}

Context struct for Context

func NewContext

func NewContext() *Context

NewContext instantiates a new Context 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 NewContextWithDefaults

func NewContextWithDefaults() *Context

NewContextWithDefaults instantiates a new Context 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 (*Context) GetExtractConfig

func (o *Context) GetExtractConfig() map[string]interface{}

GetExtractConfig returns the ExtractConfig field value if set, zero value otherwise.

func (*Context) GetExtractConfigOk

func (o *Context) GetExtractConfigOk() (map[string]interface{}, bool)

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

func (*Context) GetId

func (o *Context) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Context) GetIdOk

func (o *Context) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Context) GetLoadConfig

func (o *Context) GetLoadConfig() ILoadConfig

GetLoadConfig returns the LoadConfig field value if set, zero value otherwise.

func (*Context) GetLoadConfigOk

func (o *Context) GetLoadConfigOk() (*ILoadConfig, bool)

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

func (*Context) GetTransformConfig

func (o *Context) GetTransformConfig() map[string]interface{}

GetTransformConfig returns the TransformConfig field value if set, zero value otherwise.

func (*Context) GetTransformConfigOk

func (o *Context) GetTransformConfigOk() (map[string]interface{}, bool)

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

func (*Context) HasExtractConfig

func (o *Context) HasExtractConfig() bool

HasExtractConfig returns a boolean if a field has been set.

func (*Context) HasId

func (o *Context) HasId() bool

HasId returns a boolean if a field has been set.

func (*Context) HasLoadConfig

func (o *Context) HasLoadConfig() bool

HasLoadConfig returns a boolean if a field has been set.

func (*Context) HasTransformConfig

func (o *Context) HasTransformConfig() bool

HasTransformConfig returns a boolean if a field has been set.

func (Context) MarshalJSON

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

func (*Context) SetExtractConfig

func (o *Context) SetExtractConfig(v map[string]interface{})

SetExtractConfig gets a reference to the given map[string]interface{} and assigns it to the ExtractConfig field.

func (*Context) SetId

func (o *Context) SetId(v string)

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

func (*Context) SetIdNil

func (o *Context) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*Context) SetLoadConfig

func (o *Context) SetLoadConfig(v ILoadConfig)

SetLoadConfig gets a reference to the given ILoadConfig and assigns it to the LoadConfig field.

func (*Context) SetTransformConfig

func (o *Context) SetTransformConfig(v map[string]interface{})

SetTransformConfig gets a reference to the given map[string]interface{} and assigns it to the TransformConfig field.

func (*Context) UnsetId

func (o *Context) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type CytoscapeApiService

type CytoscapeApiService service

CytoscapeApiService CytoscapeApi service

func (*CytoscapeApiService) CytoscapeTraitCentric

func (a *CytoscapeApiService) CytoscapeTraitCentric(ctx context.Context, version string) ApiCytoscapeTraitCentricRequest

CytoscapeTraitCentric Method for CytoscapeTraitCentric

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

func (*CytoscapeApiService) CytoscapeTraitCentricExecute

func (a *CytoscapeApiService) CytoscapeTraitCentricExecute(r ApiCytoscapeTraitCentricRequest) (*http.Response, error)

Execute executes the request

type EditContextRequest

type EditContextRequest struct {
	SpeakingName  *string                `json:"speakingName,omitempty"`
	Description   *string                `json:"description,omitempty"`
	Configuration *GridViewConfiguration `json:"configuration,omitempty"`
}

EditContextRequest struct for EditContextRequest

func NewEditContextRequest

func NewEditContextRequest() *EditContextRequest

NewEditContextRequest instantiates a new EditContextRequest 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 NewEditContextRequestWithDefaults

func NewEditContextRequestWithDefaults() *EditContextRequest

NewEditContextRequestWithDefaults instantiates a new EditContextRequest 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 (*EditContextRequest) GetConfiguration

func (o *EditContextRequest) GetConfiguration() GridViewConfiguration

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*EditContextRequest) GetConfigurationOk

func (o *EditContextRequest) GetConfigurationOk() (*GridViewConfiguration, bool)

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

func (*EditContextRequest) GetDescription

func (o *EditContextRequest) GetDescription() string

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

func (*EditContextRequest) GetDescriptionOk

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

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

func (*EditContextRequest) GetSpeakingName

func (o *EditContextRequest) GetSpeakingName() string

GetSpeakingName returns the SpeakingName field value if set, zero value otherwise.

func (*EditContextRequest) GetSpeakingNameOk

func (o *EditContextRequest) GetSpeakingNameOk() (*string, bool)

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

func (*EditContextRequest) HasConfiguration

func (o *EditContextRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*EditContextRequest) HasDescription

func (o *EditContextRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EditContextRequest) HasSpeakingName

func (o *EditContextRequest) HasSpeakingName() bool

HasSpeakingName returns a boolean if a field has been set.

func (EditContextRequest) MarshalJSON

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

func (*EditContextRequest) SetConfiguration

func (o *EditContextRequest) SetConfiguration(v GridViewConfiguration)

SetConfiguration gets a reference to the given GridViewConfiguration and assigns it to the Configuration field.

func (*EditContextRequest) SetDescription

func (o *EditContextRequest) SetDescription(v string)

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

func (*EditContextRequest) SetSpeakingName

func (o *EditContextRequest) SetSpeakingName(v string)

SetSpeakingName gets a reference to the given string and assigns it to the SpeakingName field.

func (EditContextRequest) ToMap

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

type EdmContainerElementKind

type EdmContainerElementKind string

EdmContainerElementKind the model 'EdmContainerElementKind'

const (
	EDMCONTAINERELEMENTKIND_NONE            EdmContainerElementKind = "None"
	EDMCONTAINERELEMENTKIND_ENTITY_SET      EdmContainerElementKind = "EntitySet"
	EDMCONTAINERELEMENTKIND_ACTION_IMPORT   EdmContainerElementKind = "ActionImport"
	EDMCONTAINERELEMENTKIND_FUNCTION_IMPORT EdmContainerElementKind = "FunctionImport"
	EDMCONTAINERELEMENTKIND_SINGLETON       EdmContainerElementKind = "Singleton"
)

List of EdmContainerElementKind

func NewEdmContainerElementKindFromValue

func NewEdmContainerElementKindFromValue(v string) (*EdmContainerElementKind, error)

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

func (EdmContainerElementKind) IsValid

func (v EdmContainerElementKind) IsValid() bool

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

func (EdmContainerElementKind) Ptr

Ptr returns reference to EdmContainerElementKind value

func (*EdmContainerElementKind) UnmarshalJSON

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

type EdmExpressionKind

type EdmExpressionKind string

EdmExpressionKind the model 'EdmExpressionKind'

const (
	EDMEXPRESSIONKIND_NONE                         EdmExpressionKind = "None"
	EDMEXPRESSIONKIND_BINARY_CONSTANT              EdmExpressionKind = "BinaryConstant"
	EDMEXPRESSIONKIND_BOOLEAN_CONSTANT             EdmExpressionKind = "BooleanConstant"
	EDMEXPRESSIONKIND_DATE_TIME_OFFSET_CONSTANT    EdmExpressionKind = "DateTimeOffsetConstant"
	EDMEXPRESSIONKIND_DECIMAL_CONSTANT             EdmExpressionKind = "DecimalConstant"
	EDMEXPRESSIONKIND_FLOATING_CONSTANT            EdmExpressionKind = "FloatingConstant"
	EDMEXPRESSIONKIND_GUID_CONSTANT                EdmExpressionKind = "GuidConstant"
	EDMEXPRESSIONKIND_INTEGER_CONSTANT             EdmExpressionKind = "IntegerConstant"
	EDMEXPRESSIONKIND_STRING_CONSTANT              EdmExpressionKind = "StringConstant"
	EDMEXPRESSIONKIND_DURATION_CONSTANT            EdmExpressionKind = "DurationConstant"
	EDMEXPRESSIONKIND_NULL                         EdmExpressionKind = "Null"
	EDMEXPRESSIONKIND_RECORD                       EdmExpressionKind = "Record"
	EDMEXPRESSIONKIND_COLLECTION                   EdmExpressionKind = "Collection"
	EDMEXPRESSIONKIND_PATH                         EdmExpressionKind = "Path"
	EDMEXPRESSIONKIND_IF                           EdmExpressionKind = "If"
	EDMEXPRESSIONKIND_CAST                         EdmExpressionKind = "Cast"
	EDMEXPRESSIONKIND_IS_TYPE                      EdmExpressionKind = "IsType"
	EDMEXPRESSIONKIND_FUNCTION_APPLICATION         EdmExpressionKind = "FunctionApplication"
	EDMEXPRESSIONKIND_LABELED_EXPRESSION_REFERENCE EdmExpressionKind = "LabeledExpressionReference"
	EDMEXPRESSIONKIND_LABELED                      EdmExpressionKind = "Labeled"
	EDMEXPRESSIONKIND_PROPERTY_PATH                EdmExpressionKind = "PropertyPath"
	EDMEXPRESSIONKIND_NAVIGATION_PROPERTY_PATH     EdmExpressionKind = "NavigationPropertyPath"
	EDMEXPRESSIONKIND_DATE_CONSTANT                EdmExpressionKind = "DateConstant"
	EDMEXPRESSIONKIND_TIME_OF_DAY_CONSTANT         EdmExpressionKind = "TimeOfDayConstant"
	EDMEXPRESSIONKIND_ENUM_MEMBER                  EdmExpressionKind = "EnumMember"
	EDMEXPRESSIONKIND_ANNOTATION_PATH              EdmExpressionKind = "AnnotationPath"
)

List of EdmExpressionKind

func NewEdmExpressionKindFromValue

func NewEdmExpressionKindFromValue(v string) (*EdmExpressionKind, error)

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

func (EdmExpressionKind) IsValid

func (v EdmExpressionKind) IsValid() bool

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

func (EdmExpressionKind) Ptr

Ptr returns reference to EdmExpressionKind value

func (*EdmExpressionKind) UnmarshalJSON

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

type EdmSchemaElementKind

type EdmSchemaElementKind string

EdmSchemaElementKind the model 'EdmSchemaElementKind'

const (
	EDMSCHEMAELEMENTKIND_NONE             EdmSchemaElementKind = "None"
	EDMSCHEMAELEMENTKIND_TYPE_DEFINITION  EdmSchemaElementKind = "TypeDefinition"
	EDMSCHEMAELEMENTKIND_TERM             EdmSchemaElementKind = "Term"
	EDMSCHEMAELEMENTKIND_ACTION           EdmSchemaElementKind = "Action"
	EDMSCHEMAELEMENTKIND_ENTITY_CONTAINER EdmSchemaElementKind = "EntityContainer"
	EDMSCHEMAELEMENTKIND_FUNCTION         EdmSchemaElementKind = "Function"
)

List of EdmSchemaElementKind

func NewEdmSchemaElementKindFromValue

func NewEdmSchemaElementKindFromValue(v string) (*EdmSchemaElementKind, error)

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

func (EdmSchemaElementKind) IsValid

func (v EdmSchemaElementKind) IsValid() bool

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

func (EdmSchemaElementKind) Ptr

Ptr returns reference to EdmSchemaElementKind value

func (*EdmSchemaElementKind) UnmarshalJSON

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

type EdmTypeKind

type EdmTypeKind string

EdmTypeKind the model 'EdmTypeKind'

const (
	EDMTYPEKIND_NONE             EdmTypeKind = "None"
	EDMTYPEKIND_PRIMITIVE        EdmTypeKind = "Primitive"
	EDMTYPEKIND_ENTITY           EdmTypeKind = "Entity"
	EDMTYPEKIND_COMPLEX          EdmTypeKind = "Complex"
	EDMTYPEKIND_COLLECTION       EdmTypeKind = "Collection"
	EDMTYPEKIND_ENTITY_REFERENCE EdmTypeKind = "EntityReference"
	EDMTYPEKIND_ENUM             EdmTypeKind = "Enum"
	EDMTYPEKIND_TYPE_DEFINITION  EdmTypeKind = "TypeDefinition"
	EDMTYPEKIND_UNTYPED          EdmTypeKind = "Untyped"
	EDMTYPEKIND_PATH             EdmTypeKind = "Path"
)

List of EdmTypeKind

func NewEdmTypeKindFromValue

func NewEdmTypeKindFromValue(v string) (*EdmTypeKind, error)

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

func (EdmTypeKind) IsValid

func (v EdmTypeKind) IsValid() bool

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

func (EdmTypeKind) Ptr

func (v EdmTypeKind) Ptr() *EdmTypeKind

Ptr returns reference to EdmTypeKind value

func (*EdmTypeKind) UnmarshalJSON

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

type EffectiveTraitDTO

type EffectiveTraitDTO struct {
	TraitAttributes map[string]CIAttributeDTO `json:"traitAttributes"`
	TraitRelations  map[string][]RelatedCIDTO `json:"traitRelations"`
}

EffectiveTraitDTO struct for EffectiveTraitDTO

func NewEffectiveTraitDTO

func NewEffectiveTraitDTO(traitAttributes map[string]CIAttributeDTO, traitRelations map[string][]RelatedCIDTO) *EffectiveTraitDTO

NewEffectiveTraitDTO instantiates a new EffectiveTraitDTO 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 NewEffectiveTraitDTOWithDefaults

func NewEffectiveTraitDTOWithDefaults() *EffectiveTraitDTO

NewEffectiveTraitDTOWithDefaults instantiates a new EffectiveTraitDTO 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 (*EffectiveTraitDTO) GetTraitAttributes

func (o *EffectiveTraitDTO) GetTraitAttributes() map[string]CIAttributeDTO

GetTraitAttributes returns the TraitAttributes field value

func (*EffectiveTraitDTO) GetTraitAttributesOk

func (o *EffectiveTraitDTO) GetTraitAttributesOk() (*map[string]CIAttributeDTO, bool)

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

func (*EffectiveTraitDTO) GetTraitRelations

func (o *EffectiveTraitDTO) GetTraitRelations() map[string][]RelatedCIDTO

GetTraitRelations returns the TraitRelations field value

func (*EffectiveTraitDTO) GetTraitRelationsOk

func (o *EffectiveTraitDTO) GetTraitRelationsOk() (*map[string][]RelatedCIDTO, bool)

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

func (EffectiveTraitDTO) MarshalJSON

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

func (*EffectiveTraitDTO) SetTraitAttributes

func (o *EffectiveTraitDTO) SetTraitAttributes(v map[string]CIAttributeDTO)

SetTraitAttributes sets field value

func (*EffectiveTraitDTO) SetTraitRelations

func (o *EffectiveTraitDTO) SetTraitRelations(v map[string][]RelatedCIDTO)

SetTraitRelations sets field value

type FragmentDTO

type FragmentDTO struct {
	Name  string            `json:"name"`
	Value AttributeValueDTO `json:"value"`
	Ciid  string            `json:"ciid"`
}

FragmentDTO struct for FragmentDTO

func NewFragmentDTO

func NewFragmentDTO(name string, value AttributeValueDTO, ciid string) *FragmentDTO

NewFragmentDTO instantiates a new FragmentDTO 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 NewFragmentDTOWithDefaults

func NewFragmentDTOWithDefaults() *FragmentDTO

NewFragmentDTOWithDefaults instantiates a new FragmentDTO 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 (*FragmentDTO) GetCiid

func (o *FragmentDTO) GetCiid() string

GetCiid returns the Ciid field value

func (*FragmentDTO) GetCiidOk

func (o *FragmentDTO) GetCiidOk() (*string, bool)

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

func (*FragmentDTO) GetName

func (o *FragmentDTO) GetName() string

GetName returns the Name field value

func (*FragmentDTO) GetNameOk

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

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

func (*FragmentDTO) GetValue

func (o *FragmentDTO) GetValue() AttributeValueDTO

GetValue returns the Value field value

func (*FragmentDTO) GetValueOk

func (o *FragmentDTO) GetValueOk() (*AttributeValueDTO, bool)

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

func (FragmentDTO) MarshalJSON

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

func (*FragmentDTO) SetCiid

func (o *FragmentDTO) SetCiid(v string)

SetCiid sets field value

func (*FragmentDTO) SetName

func (o *FragmentDTO) SetName(v string)

SetName sets field value

func (*FragmentDTO) SetValue

func (o *FragmentDTO) SetValue(v AttributeValueDTO)

SetValue sets field value

type GenericInboundAttribute

type GenericInboundAttribute struct {
	Name  *string            `json:"name,omitempty"`
	Value *AttributeValueDTO `json:"value,omitempty"`
}

GenericInboundAttribute struct for GenericInboundAttribute

func NewGenericInboundAttribute

func NewGenericInboundAttribute() *GenericInboundAttribute

NewGenericInboundAttribute instantiates a new GenericInboundAttribute 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 NewGenericInboundAttributeWithDefaults

func NewGenericInboundAttributeWithDefaults() *GenericInboundAttribute

NewGenericInboundAttributeWithDefaults instantiates a new GenericInboundAttribute 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 (*GenericInboundAttribute) GetName

func (o *GenericInboundAttribute) GetName() string

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

func (*GenericInboundAttribute) GetNameOk

func (o *GenericInboundAttribute) 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 (*GenericInboundAttribute) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*GenericInboundAttribute) GetValueOk

func (o *GenericInboundAttribute) GetValueOk() (*AttributeValueDTO, bool)

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

func (*GenericInboundAttribute) HasName

func (o *GenericInboundAttribute) HasName() bool

HasName returns a boolean if a field has been set.

func (*GenericInboundAttribute) HasValue

func (o *GenericInboundAttribute) HasValue() bool

HasValue returns a boolean if a field has been set.

func (GenericInboundAttribute) MarshalJSON

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

func (*GenericInboundAttribute) SetName

func (o *GenericInboundAttribute) SetName(v string)

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

func (*GenericInboundAttribute) SetValue

SetValue gets a reference to the given AttributeValueDTO and assigns it to the Value field.

func (GenericInboundAttribute) ToMap

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

type GenericInboundCI

type GenericInboundCI struct {
	TempID                  *string                   `json:"tempID,omitempty"`
	IdMethod                *GenericInboundCIIdMethod `json:"idMethod,omitempty"`
	SameTempIDHandling      *SameTempIDHandling       `json:"sameTempIDHandling,omitempty"`
	SameTargetCIHandling    *SameTargetCIHandling     `json:"sameTargetCIHandling,omitempty"`
	NoFoundTargetCIHandling *NoFoundTargetCIHandling  `json:"noFoundTargetCIHandling,omitempty"`
	Attributes              []GenericInboundAttribute `json:"attributes,omitempty"`
}

GenericInboundCI struct for GenericInboundCI

func NewGenericInboundCI

func NewGenericInboundCI() *GenericInboundCI

NewGenericInboundCI instantiates a new GenericInboundCI 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 NewGenericInboundCIWithDefaults

func NewGenericInboundCIWithDefaults() *GenericInboundCI

NewGenericInboundCIWithDefaults instantiates a new GenericInboundCI 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 (*GenericInboundCI) GetAttributes

func (o *GenericInboundCI) GetAttributes() []GenericInboundAttribute

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*GenericInboundCI) GetAttributesOk

func (o *GenericInboundCI) GetAttributesOk() ([]GenericInboundAttribute, bool)

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

func (*GenericInboundCI) GetIdMethod

func (o *GenericInboundCI) GetIdMethod() GenericInboundCIIdMethod

GetIdMethod returns the IdMethod field value if set, zero value otherwise.

func (*GenericInboundCI) GetIdMethodOk

func (o *GenericInboundCI) GetIdMethodOk() (*GenericInboundCIIdMethod, bool)

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

func (*GenericInboundCI) GetNoFoundTargetCIHandling

func (o *GenericInboundCI) GetNoFoundTargetCIHandling() NoFoundTargetCIHandling

GetNoFoundTargetCIHandling returns the NoFoundTargetCIHandling field value if set, zero value otherwise.

func (*GenericInboundCI) GetNoFoundTargetCIHandlingOk

func (o *GenericInboundCI) GetNoFoundTargetCIHandlingOk() (*NoFoundTargetCIHandling, bool)

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

func (*GenericInboundCI) GetSameTargetCIHandling

func (o *GenericInboundCI) GetSameTargetCIHandling() SameTargetCIHandling

GetSameTargetCIHandling returns the SameTargetCIHandling field value if set, zero value otherwise.

func (*GenericInboundCI) GetSameTargetCIHandlingOk

func (o *GenericInboundCI) GetSameTargetCIHandlingOk() (*SameTargetCIHandling, bool)

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

func (*GenericInboundCI) GetSameTempIDHandling

func (o *GenericInboundCI) GetSameTempIDHandling() SameTempIDHandling

GetSameTempIDHandling returns the SameTempIDHandling field value if set, zero value otherwise.

func (*GenericInboundCI) GetSameTempIDHandlingOk

func (o *GenericInboundCI) GetSameTempIDHandlingOk() (*SameTempIDHandling, bool)

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

func (*GenericInboundCI) GetTempID

func (o *GenericInboundCI) GetTempID() string

GetTempID returns the TempID field value if set, zero value otherwise.

func (*GenericInboundCI) GetTempIDOk

func (o *GenericInboundCI) GetTempIDOk() (*string, bool)

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

func (*GenericInboundCI) HasAttributes

func (o *GenericInboundCI) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*GenericInboundCI) HasIdMethod

func (o *GenericInboundCI) HasIdMethod() bool

HasIdMethod returns a boolean if a field has been set.

func (*GenericInboundCI) HasNoFoundTargetCIHandling

func (o *GenericInboundCI) HasNoFoundTargetCIHandling() bool

HasNoFoundTargetCIHandling returns a boolean if a field has been set.

func (*GenericInboundCI) HasSameTargetCIHandling

func (o *GenericInboundCI) HasSameTargetCIHandling() bool

HasSameTargetCIHandling returns a boolean if a field has been set.

func (*GenericInboundCI) HasSameTempIDHandling

func (o *GenericInboundCI) HasSameTempIDHandling() bool

HasSameTempIDHandling returns a boolean if a field has been set.

func (*GenericInboundCI) HasTempID

func (o *GenericInboundCI) HasTempID() bool

HasTempID returns a boolean if a field has been set.

func (GenericInboundCI) MarshalJSON

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

func (*GenericInboundCI) SetAttributes

func (o *GenericInboundCI) SetAttributes(v []GenericInboundAttribute)

SetAttributes gets a reference to the given []GenericInboundAttribute and assigns it to the Attributes field.

func (*GenericInboundCI) SetIdMethod

func (o *GenericInboundCI) SetIdMethod(v GenericInboundCIIdMethod)

SetIdMethod gets a reference to the given GenericInboundCIIdMethod and assigns it to the IdMethod field.

func (*GenericInboundCI) SetNoFoundTargetCIHandling

func (o *GenericInboundCI) SetNoFoundTargetCIHandling(v NoFoundTargetCIHandling)

SetNoFoundTargetCIHandling gets a reference to the given NoFoundTargetCIHandling and assigns it to the NoFoundTargetCIHandling field.

func (*GenericInboundCI) SetSameTargetCIHandling

func (o *GenericInboundCI) SetSameTargetCIHandling(v SameTargetCIHandling)

SetSameTargetCIHandling gets a reference to the given SameTargetCIHandling and assigns it to the SameTargetCIHandling field.

func (*GenericInboundCI) SetSameTempIDHandling

func (o *GenericInboundCI) SetSameTempIDHandling(v SameTempIDHandling)

SetSameTempIDHandling gets a reference to the given SameTempIDHandling and assigns it to the SameTempIDHandling field.

func (*GenericInboundCI) SetTempID

func (o *GenericInboundCI) SetTempID(v string)

SetTempID gets a reference to the given string and assigns it to the TempID field.

func (GenericInboundCI) ToMap

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

type GenericInboundCIIdMethod

type GenericInboundCIIdMethod struct {
	InboundIDMethodByAttribute          *InboundIDMethodByAttribute
	InboundIDMethodByAttributeModifiers *InboundIDMethodByAttributeModifiers
	InboundIDMethodByByUnion            *InboundIDMethodByByUnion
	InboundIDMethodByData               *InboundIDMethodByData
	InboundIDMethodByIntersect          *InboundIDMethodByIntersect
	InboundIDMethodByRelatedTempID      *InboundIDMethodByRelatedTempID
	InboundIDMethodByTemporaryCIID      *InboundIDMethodByTemporaryCIID
}

GenericInboundCIIdMethod - struct for GenericInboundCIIdMethod

func InboundIDMethodByAttributeAsGenericInboundCIIdMethod

func InboundIDMethodByAttributeAsGenericInboundCIIdMethod(v *InboundIDMethodByAttribute) GenericInboundCIIdMethod

InboundIDMethodByAttributeAsGenericInboundCIIdMethod is a convenience function that returns InboundIDMethodByAttribute wrapped in GenericInboundCIIdMethod

func InboundIDMethodByAttributeModifiersAsGenericInboundCIIdMethod

func InboundIDMethodByAttributeModifiersAsGenericInboundCIIdMethod(v *InboundIDMethodByAttributeModifiers) GenericInboundCIIdMethod

InboundIDMethodByAttributeModifiersAsGenericInboundCIIdMethod is a convenience function that returns InboundIDMethodByAttributeModifiers wrapped in GenericInboundCIIdMethod

func InboundIDMethodByByUnionAsGenericInboundCIIdMethod

func InboundIDMethodByByUnionAsGenericInboundCIIdMethod(v *InboundIDMethodByByUnion) GenericInboundCIIdMethod

InboundIDMethodByByUnionAsGenericInboundCIIdMethod is a convenience function that returns InboundIDMethodByByUnion wrapped in GenericInboundCIIdMethod

func InboundIDMethodByDataAsGenericInboundCIIdMethod

func InboundIDMethodByDataAsGenericInboundCIIdMethod(v *InboundIDMethodByData) GenericInboundCIIdMethod

InboundIDMethodByDataAsGenericInboundCIIdMethod is a convenience function that returns InboundIDMethodByData wrapped in GenericInboundCIIdMethod

func InboundIDMethodByIntersectAsGenericInboundCIIdMethod

func InboundIDMethodByIntersectAsGenericInboundCIIdMethod(v *InboundIDMethodByIntersect) GenericInboundCIIdMethod

InboundIDMethodByIntersectAsGenericInboundCIIdMethod is a convenience function that returns InboundIDMethodByIntersect wrapped in GenericInboundCIIdMethod

func InboundIDMethodByRelatedTempIDAsGenericInboundCIIdMethod

func InboundIDMethodByRelatedTempIDAsGenericInboundCIIdMethod(v *InboundIDMethodByRelatedTempID) GenericInboundCIIdMethod

InboundIDMethodByRelatedTempIDAsGenericInboundCIIdMethod is a convenience function that returns InboundIDMethodByRelatedTempID wrapped in GenericInboundCIIdMethod

func InboundIDMethodByTemporaryCIIDAsGenericInboundCIIdMethod

func InboundIDMethodByTemporaryCIIDAsGenericInboundCIIdMethod(v *InboundIDMethodByTemporaryCIID) GenericInboundCIIdMethod

InboundIDMethodByTemporaryCIIDAsGenericInboundCIIdMethod is a convenience function that returns InboundIDMethodByTemporaryCIID wrapped in GenericInboundCIIdMethod

func (*GenericInboundCIIdMethod) GetActualInstance

func (obj *GenericInboundCIIdMethod) GetActualInstance() interface{}

Get the actual instance

func (GenericInboundCIIdMethod) MarshalJSON

func (src GenericInboundCIIdMethod) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GenericInboundCIIdMethod) UnmarshalJSON

func (dst *GenericInboundCIIdMethod) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GenericInboundData

type GenericInboundData struct {
	Cis       []GenericInboundCI       `json:"cis,omitempty"`
	Relations []GenericInboundRelation `json:"relations,omitempty"`
}

GenericInboundData struct for GenericInboundData

func NewGenericInboundData

func NewGenericInboundData() *GenericInboundData

NewGenericInboundData instantiates a new GenericInboundData 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 NewGenericInboundDataWithDefaults

func NewGenericInboundDataWithDefaults() *GenericInboundData

NewGenericInboundDataWithDefaults instantiates a new GenericInboundData 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 (*GenericInboundData) GetCis

func (o *GenericInboundData) GetCis() []GenericInboundCI

GetCis returns the Cis field value if set, zero value otherwise.

func (*GenericInboundData) GetCisOk

func (o *GenericInboundData) GetCisOk() ([]GenericInboundCI, bool)

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

func (*GenericInboundData) GetRelations

func (o *GenericInboundData) GetRelations() []GenericInboundRelation

GetRelations returns the Relations field value if set, zero value otherwise.

func (*GenericInboundData) GetRelationsOk

func (o *GenericInboundData) GetRelationsOk() ([]GenericInboundRelation, bool)

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

func (*GenericInboundData) HasCis

func (o *GenericInboundData) HasCis() bool

HasCis returns a boolean if a field has been set.

func (*GenericInboundData) HasRelations

func (o *GenericInboundData) HasRelations() bool

HasRelations returns a boolean if a field has been set.

func (GenericInboundData) MarshalJSON

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

func (*GenericInboundData) SetCis

func (o *GenericInboundData) SetCis(v []GenericInboundCI)

SetCis gets a reference to the given []GenericInboundCI and assigns it to the Cis field.

func (*GenericInboundData) SetRelations

func (o *GenericInboundData) SetRelations(v []GenericInboundRelation)

SetRelations gets a reference to the given []GenericInboundRelation and assigns it to the Relations field.

func (GenericInboundData) ToMap

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

type GenericInboundRelation

type GenericInboundRelation struct {
	From      *string `json:"from,omitempty"`
	Predicate *string `json:"predicate,omitempty"`
	To        *string `json:"to,omitempty"`
}

GenericInboundRelation struct for GenericInboundRelation

func NewGenericInboundRelation

func NewGenericInboundRelation() *GenericInboundRelation

NewGenericInboundRelation instantiates a new GenericInboundRelation 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 NewGenericInboundRelationWithDefaults

func NewGenericInboundRelationWithDefaults() *GenericInboundRelation

NewGenericInboundRelationWithDefaults instantiates a new GenericInboundRelation 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 (*GenericInboundRelation) GetFrom

func (o *GenericInboundRelation) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*GenericInboundRelation) GetFromOk

func (o *GenericInboundRelation) GetFromOk() (*string, bool)

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

func (*GenericInboundRelation) GetPredicate

func (o *GenericInboundRelation) GetPredicate() string

GetPredicate returns the Predicate field value if set, zero value otherwise.

func (*GenericInboundRelation) GetPredicateOk

func (o *GenericInboundRelation) GetPredicateOk() (*string, bool)

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

func (*GenericInboundRelation) GetTo

func (o *GenericInboundRelation) GetTo() string

GetTo returns the To field value if set, zero value otherwise.

func (*GenericInboundRelation) GetToOk

func (o *GenericInboundRelation) GetToOk() (*string, bool)

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

func (*GenericInboundRelation) HasFrom

func (o *GenericInboundRelation) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*GenericInboundRelation) HasPredicate

func (o *GenericInboundRelation) HasPredicate() bool

HasPredicate returns a boolean if a field has been set.

func (*GenericInboundRelation) HasTo

func (o *GenericInboundRelation) HasTo() bool

HasTo returns a boolean if a field has been set.

func (GenericInboundRelation) MarshalJSON

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

func (*GenericInboundRelation) SetFrom

func (o *GenericInboundRelation) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*GenericInboundRelation) SetPredicate

func (o *GenericInboundRelation) SetPredicate(v string)

SetPredicate gets a reference to the given string and assigns it to the Predicate field.

func (*GenericInboundRelation) SetTo

func (o *GenericInboundRelation) SetTo(v string)

SetTo gets a reference to the given string and assigns it to the To field.

func (GenericInboundRelation) ToMap

func (o GenericInboundRelation) 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 GraphQLApiService

type GraphQLApiService service

GraphQLApiService GraphQLApi service

func (*GraphQLApiService) GraphQLDebug

GraphQLDebug Method for GraphQLDebug

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

func (*GraphQLApiService) GraphQLDebugExecute

func (a *GraphQLApiService) GraphQLDebugExecute(r ApiGraphQLDebugRequest) (*http.Response, error)

Execute executes the request

func (*GraphQLApiService) GraphQLGet

GraphQLGet Method for GraphQLGet

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

func (*GraphQLApiService) GraphQLGetExecute

func (a *GraphQLApiService) GraphQLGetExecute(r ApiGraphQLGetRequest) (*http.Response, error)

Execute executes the request

func (*GraphQLApiService) GraphQLIndex

GraphQLIndex Method for GraphQLIndex

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

func (*GraphQLApiService) GraphQLIndexExecute

func (a *GraphQLApiService) GraphQLIndexExecute(r ApiGraphQLIndexRequest) (*http.Response, error)

Execute executes the request

type GraphQLQuery

type GraphQLQuery struct {
	OperationName NullableString         `json:"operationName,omitempty"`
	Query         NullableString         `json:"query,omitempty"`
	Variables     map[string]interface{} `json:"variables,omitempty"`
}

GraphQLQuery struct for GraphQLQuery

func NewGraphQLQuery

func NewGraphQLQuery() *GraphQLQuery

NewGraphQLQuery instantiates a new GraphQLQuery 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 NewGraphQLQueryWithDefaults

func NewGraphQLQueryWithDefaults() *GraphQLQuery

NewGraphQLQueryWithDefaults instantiates a new GraphQLQuery 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 (*GraphQLQuery) GetOperationName

func (o *GraphQLQuery) GetOperationName() string

GetOperationName returns the OperationName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GraphQLQuery) GetOperationNameOk

func (o *GraphQLQuery) GetOperationNameOk() (*string, bool)

GetOperationNameOk returns a tuple with the OperationName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GraphQLQuery) GetQuery

func (o *GraphQLQuery) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GraphQLQuery) GetQueryOk

func (o *GraphQLQuery) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GraphQLQuery) GetVariables

func (o *GraphQLQuery) GetVariables() map[string]interface{}

GetVariables returns the Variables field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GraphQLQuery) GetVariablesOk

func (o *GraphQLQuery) GetVariablesOk() (map[string]interface{}, bool)

GetVariablesOk returns a tuple with the Variables field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GraphQLQuery) HasOperationName

func (o *GraphQLQuery) HasOperationName() bool

HasOperationName returns a boolean if a field has been set.

func (*GraphQLQuery) HasQuery

func (o *GraphQLQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*GraphQLQuery) HasVariables

func (o *GraphQLQuery) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (GraphQLQuery) MarshalJSON

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

func (*GraphQLQuery) SetOperationName

func (o *GraphQLQuery) SetOperationName(v string)

SetOperationName gets a reference to the given NullableString and assigns it to the OperationName field.

func (*GraphQLQuery) SetOperationNameNil

func (o *GraphQLQuery) SetOperationNameNil()

SetOperationNameNil sets the value for OperationName to be an explicit nil

func (*GraphQLQuery) SetQuery

func (o *GraphQLQuery) SetQuery(v string)

SetQuery gets a reference to the given NullableString and assigns it to the Query field.

func (*GraphQLQuery) SetQueryNil

func (o *GraphQLQuery) SetQueryNil()

SetQueryNil sets the value for Query to be an explicit nil

func (*GraphQLQuery) SetVariables

func (o *GraphQLQuery) SetVariables(v map[string]interface{})

SetVariables gets a reference to the given map[string]interface{} and assigns it to the Variables field.

func (GraphQLQuery) ToMap

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

func (*GraphQLQuery) UnsetOperationName

func (o *GraphQLQuery) UnsetOperationName()

UnsetOperationName ensures that no value is present for OperationName, not even an explicit nil

func (*GraphQLQuery) UnsetQuery

func (o *GraphQLQuery) UnsetQuery()

UnsetQuery ensures that no value is present for Query, not even an explicit nil

type GraphvizDotApiService

type GraphvizDotApiService service

GraphvizDotApiService GraphvizDotApi service

func (*GraphvizDotApiService) GraphvizDotLayerCentric

func (a *GraphvizDotApiService) GraphvizDotLayerCentric(ctx context.Context, version string) ApiGraphvizDotLayerCentricRequest

GraphvizDotLayerCentric Method for GraphvizDotLayerCentric

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

func (*GraphvizDotApiService) GraphvizDotLayerCentricExecute

func (a *GraphvizDotApiService) GraphvizDotLayerCentricExecute(r ApiGraphvizDotLayerCentricRequest) (*http.Response, error)

Execute executes the request

func (*GraphvizDotApiService) GraphvizDotTraitCentric

func (a *GraphvizDotApiService) GraphvizDotTraitCentric(ctx context.Context, version string) ApiGraphvizDotTraitCentricRequest

GraphvizDotTraitCentric Method for GraphvizDotTraitCentric

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

func (*GraphvizDotApiService) GraphvizDotTraitCentricExecute

func (a *GraphvizDotApiService) GraphvizDotTraitCentricExecute(r ApiGraphvizDotTraitCentricRequest) (*http.Response, error)

Execute executes the request

type GridViewApiService

type GridViewApiService service

GridViewApiService GridViewApi service

func (*GridViewApiService) GridViewAddContext

func (a *GridViewApiService) GridViewAddContext(ctx context.Context, version string) ApiGridViewAddContextRequest

GridViewAddContext Adds new context

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

func (*GridViewApiService) GridViewAddContextExecute

func (a *GridViewApiService) GridViewAddContextExecute(r ApiGridViewAddContextRequest) (*http.Response, error)

Execute executes the request

func (*GridViewApiService) GridViewChangeData

func (a *GridViewApiService) GridViewChangeData(ctx context.Context, context string, version string) ApiGridViewChangeDataRequest

GridViewChangeData Saves grid view row changes and returns change results

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

func (*GridViewApiService) GridViewChangeDataExecute

func (a *GridViewApiService) GridViewChangeDataExecute(r ApiGridViewChangeDataRequest) (*http.Response, error)

Execute executes the request

func (*GridViewApiService) GridViewDeleteContext

func (a *GridViewApiService) GridViewDeleteContext(ctx context.Context, name string, version string) ApiGridViewDeleteContextRequest

GridViewDeleteContext Deletes specific context

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

func (*GridViewApiService) GridViewDeleteContextExecute

func (a *GridViewApiService) GridViewDeleteContextExecute(r ApiGridViewDeleteContextRequest) (*http.Response, error)

Execute executes the request

func (*GridViewApiService) GridViewEditContext

func (a *GridViewApiService) GridViewEditContext(ctx context.Context, name string, version string) ApiGridViewEditContextRequest

GridViewEditContext Edits specific context

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

func (*GridViewApiService) GridViewEditContextExecute

func (a *GridViewApiService) GridViewEditContextExecute(r ApiGridViewEditContextRequest) (*http.Response, error)

Execute executes the request

func (*GridViewApiService) GridViewGetData

func (a *GridViewApiService) GridViewGetData(ctx context.Context, context string, version string) ApiGridViewGetDataRequest

GridViewGetData Returns grid view data for specific context

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

func (*GridViewApiService) GridViewGetDataExecute

func (a *GridViewApiService) GridViewGetDataExecute(r ApiGridViewGetDataRequest) (*http.Response, error)

Execute executes the request

func (*GridViewApiService) GridViewGetGridViewContext

func (a *GridViewApiService) GridViewGetGridViewContext(ctx context.Context, name string, version string) ApiGridViewGetGridViewContextRequest

GridViewGetGridViewContext Returns a single context in full

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

func (*GridViewApiService) GridViewGetGridViewContextExecute

func (a *GridViewApiService) GridViewGetGridViewContextExecute(r ApiGridViewGetGridViewContextRequest) (*http.Response, error)

Execute executes the request

func (*GridViewApiService) GridViewGetGridViewContexts

func (a *GridViewApiService) GridViewGetGridViewContexts(ctx context.Context, version string) ApiGridViewGetGridViewContextsRequest

GridViewGetGridViewContexts Returns a list of contexts for grid view.

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

func (*GridViewApiService) GridViewGetGridViewContextsExecute

func (a *GridViewApiService) GridViewGetGridViewContextsExecute(r ApiGridViewGetGridViewContextsRequest) (*http.Response, error)

Execute executes the request

func (*GridViewApiService) GridViewGetSchema

func (a *GridViewApiService) GridViewGetSchema(ctx context.Context, context string, version string) ApiGridViewGetSchemaRequest

GridViewGetSchema Returns grid view schema for specific context

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

func (*GridViewApiService) GridViewGetSchemaExecute

func (a *GridViewApiService) GridViewGetSchemaExecute(r ApiGridViewGetSchemaRequest) (*http.Response, error)

Execute executes the request

type GridViewColumn

type GridViewColumn struct {
	SourceAttributeName *string             `json:"sourceAttributeName,omitempty"`
	SourceAttributePath []string            `json:"sourceAttributePath,omitempty"`
	ColumnDescription   *string             `json:"columnDescription,omitempty"`
	ValueType           *AttributeValueType `json:"valueType,omitempty"`
	WriteLayer          NullableString      `json:"writeLayer,omitempty"`
}

GridViewColumn struct for GridViewColumn

func NewGridViewColumn

func NewGridViewColumn() *GridViewColumn

NewGridViewColumn instantiates a new GridViewColumn 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 NewGridViewColumnWithDefaults

func NewGridViewColumnWithDefaults() *GridViewColumn

NewGridViewColumnWithDefaults instantiates a new GridViewColumn 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 (*GridViewColumn) GetColumnDescription

func (o *GridViewColumn) GetColumnDescription() string

GetColumnDescription returns the ColumnDescription field value if set, zero value otherwise.

func (*GridViewColumn) GetColumnDescriptionOk

func (o *GridViewColumn) GetColumnDescriptionOk() (*string, bool)

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

func (*GridViewColumn) GetSourceAttributeName

func (o *GridViewColumn) GetSourceAttributeName() string

GetSourceAttributeName returns the SourceAttributeName field value if set, zero value otherwise.

func (*GridViewColumn) GetSourceAttributeNameOk

func (o *GridViewColumn) GetSourceAttributeNameOk() (*string, bool)

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

func (*GridViewColumn) GetSourceAttributePath

func (o *GridViewColumn) GetSourceAttributePath() []string

GetSourceAttributePath returns the SourceAttributePath field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GridViewColumn) GetSourceAttributePathOk

func (o *GridViewColumn) GetSourceAttributePathOk() ([]string, bool)

GetSourceAttributePathOk returns a tuple with the SourceAttributePath field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GridViewColumn) GetValueType

func (o *GridViewColumn) GetValueType() AttributeValueType

GetValueType returns the ValueType field value if set, zero value otherwise.

func (*GridViewColumn) GetValueTypeOk

func (o *GridViewColumn) GetValueTypeOk() (*AttributeValueType, bool)

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

func (*GridViewColumn) GetWriteLayer

func (o *GridViewColumn) GetWriteLayer() string

GetWriteLayer returns the WriteLayer field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GridViewColumn) GetWriteLayerOk

func (o *GridViewColumn) GetWriteLayerOk() (*string, bool)

GetWriteLayerOk returns a tuple with the WriteLayer field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GridViewColumn) HasColumnDescription

func (o *GridViewColumn) HasColumnDescription() bool

HasColumnDescription returns a boolean if a field has been set.

func (*GridViewColumn) HasSourceAttributeName

func (o *GridViewColumn) HasSourceAttributeName() bool

HasSourceAttributeName returns a boolean if a field has been set.

func (*GridViewColumn) HasSourceAttributePath

func (o *GridViewColumn) HasSourceAttributePath() bool

HasSourceAttributePath returns a boolean if a field has been set.

func (*GridViewColumn) HasValueType

func (o *GridViewColumn) HasValueType() bool

HasValueType returns a boolean if a field has been set.

func (*GridViewColumn) HasWriteLayer

func (o *GridViewColumn) HasWriteLayer() bool

HasWriteLayer returns a boolean if a field has been set.

func (GridViewColumn) MarshalJSON

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

func (*GridViewColumn) SetColumnDescription

func (o *GridViewColumn) SetColumnDescription(v string)

SetColumnDescription gets a reference to the given string and assigns it to the ColumnDescription field.

func (*GridViewColumn) SetSourceAttributeName

func (o *GridViewColumn) SetSourceAttributeName(v string)

SetSourceAttributeName gets a reference to the given string and assigns it to the SourceAttributeName field.

func (*GridViewColumn) SetSourceAttributePath

func (o *GridViewColumn) SetSourceAttributePath(v []string)

SetSourceAttributePath gets a reference to the given []string and assigns it to the SourceAttributePath field.

func (*GridViewColumn) SetValueType

func (o *GridViewColumn) SetValueType(v AttributeValueType)

SetValueType gets a reference to the given AttributeValueType and assigns it to the ValueType field.

func (*GridViewColumn) SetWriteLayer

func (o *GridViewColumn) SetWriteLayer(v string)

SetWriteLayer gets a reference to the given NullableString and assigns it to the WriteLayer field.

func (*GridViewColumn) SetWriteLayerNil

func (o *GridViewColumn) SetWriteLayerNil()

SetWriteLayerNil sets the value for WriteLayer to be an explicit nil

func (GridViewColumn) ToMap

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

func (*GridViewColumn) UnsetWriteLayer

func (o *GridViewColumn) UnsetWriteLayer()

UnsetWriteLayer ensures that no value is present for WriteLayer, not even an explicit nil

type GridViewConfiguration

type GridViewConfiguration struct {
	ShowCIIDColumn *bool            `json:"showCIIDColumn,omitempty"`
	WriteLayer     *string          `json:"writeLayer,omitempty"`
	ReadLayerset   []string         `json:"readLayerset,omitempty"`
	Columns        []GridViewColumn `json:"columns,omitempty"`
	Trait          *string          `json:"trait,omitempty"`
}

GridViewConfiguration struct for GridViewConfiguration

func NewGridViewConfiguration

func NewGridViewConfiguration() *GridViewConfiguration

NewGridViewConfiguration instantiates a new GridViewConfiguration 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 NewGridViewConfigurationWithDefaults

func NewGridViewConfigurationWithDefaults() *GridViewConfiguration

NewGridViewConfigurationWithDefaults instantiates a new GridViewConfiguration 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 (*GridViewConfiguration) GetColumns

func (o *GridViewConfiguration) GetColumns() []GridViewColumn

GetColumns returns the Columns field value if set, zero value otherwise.

func (*GridViewConfiguration) GetColumnsOk

func (o *GridViewConfiguration) GetColumnsOk() ([]GridViewColumn, bool)

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

func (*GridViewConfiguration) GetReadLayerset

func (o *GridViewConfiguration) GetReadLayerset() []string

GetReadLayerset returns the ReadLayerset field value if set, zero value otherwise.

func (*GridViewConfiguration) GetReadLayersetOk

func (o *GridViewConfiguration) GetReadLayersetOk() ([]string, bool)

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

func (*GridViewConfiguration) GetShowCIIDColumn

func (o *GridViewConfiguration) GetShowCIIDColumn() bool

GetShowCIIDColumn returns the ShowCIIDColumn field value if set, zero value otherwise.

func (*GridViewConfiguration) GetShowCIIDColumnOk

func (o *GridViewConfiguration) GetShowCIIDColumnOk() (*bool, bool)

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

func (*GridViewConfiguration) GetTrait

func (o *GridViewConfiguration) GetTrait() string

GetTrait returns the Trait field value if set, zero value otherwise.

func (*GridViewConfiguration) GetTraitOk

func (o *GridViewConfiguration) GetTraitOk() (*string, bool)

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

func (*GridViewConfiguration) GetWriteLayer

func (o *GridViewConfiguration) GetWriteLayer() string

GetWriteLayer returns the WriteLayer field value if set, zero value otherwise.

func (*GridViewConfiguration) GetWriteLayerOk

func (o *GridViewConfiguration) GetWriteLayerOk() (*string, bool)

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

func (*GridViewConfiguration) HasColumns

func (o *GridViewConfiguration) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (*GridViewConfiguration) HasReadLayerset

func (o *GridViewConfiguration) HasReadLayerset() bool

HasReadLayerset returns a boolean if a field has been set.

func (*GridViewConfiguration) HasShowCIIDColumn

func (o *GridViewConfiguration) HasShowCIIDColumn() bool

HasShowCIIDColumn returns a boolean if a field has been set.

func (*GridViewConfiguration) HasTrait

func (o *GridViewConfiguration) HasTrait() bool

HasTrait returns a boolean if a field has been set.

func (*GridViewConfiguration) HasWriteLayer

func (o *GridViewConfiguration) HasWriteLayer() bool

HasWriteLayer returns a boolean if a field has been set.

func (GridViewConfiguration) MarshalJSON

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

func (*GridViewConfiguration) SetColumns

func (o *GridViewConfiguration) SetColumns(v []GridViewColumn)

SetColumns gets a reference to the given []GridViewColumn and assigns it to the Columns field.

func (*GridViewConfiguration) SetReadLayerset

func (o *GridViewConfiguration) SetReadLayerset(v []string)

SetReadLayerset gets a reference to the given []string and assigns it to the ReadLayerset field.

func (*GridViewConfiguration) SetShowCIIDColumn

func (o *GridViewConfiguration) SetShowCIIDColumn(v bool)

SetShowCIIDColumn gets a reference to the given bool and assigns it to the ShowCIIDColumn field.

func (*GridViewConfiguration) SetTrait

func (o *GridViewConfiguration) SetTrait(v string)

SetTrait gets a reference to the given string and assigns it to the Trait field.

func (*GridViewConfiguration) SetWriteLayer

func (o *GridViewConfiguration) SetWriteLayer(v string)

SetWriteLayer gets a reference to the given string and assigns it to the WriteLayer field.

func (GridViewConfiguration) ToMap

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

type IAttributeValue

type IAttributeValue struct {
	Type    *AttributeValueType `json:"type,omitempty"`
	IsArray *bool               `json:"isArray,omitempty"`
}

IAttributeValue struct for IAttributeValue

func NewIAttributeValue

func NewIAttributeValue() *IAttributeValue

NewIAttributeValue instantiates a new IAttributeValue 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 NewIAttributeValueWithDefaults

func NewIAttributeValueWithDefaults() *IAttributeValue

NewIAttributeValueWithDefaults instantiates a new IAttributeValue 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 (*IAttributeValue) GetIsArray

func (o *IAttributeValue) GetIsArray() bool

GetIsArray returns the IsArray field value if set, zero value otherwise.

func (*IAttributeValue) GetIsArrayOk

func (o *IAttributeValue) GetIsArrayOk() (*bool, bool)

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

func (*IAttributeValue) GetType

func (o *IAttributeValue) GetType() AttributeValueType

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

func (*IAttributeValue) GetTypeOk

func (o *IAttributeValue) GetTypeOk() (*AttributeValueType, bool)

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

func (*IAttributeValue) HasIsArray

func (o *IAttributeValue) HasIsArray() bool

HasIsArray returns a boolean if a field has been set.

func (*IAttributeValue) HasType

func (o *IAttributeValue) HasType() bool

HasType returns a boolean if a field has been set.

func (IAttributeValue) MarshalJSON

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

func (*IAttributeValue) SetIsArray

func (o *IAttributeValue) SetIsArray(v bool)

SetIsArray gets a reference to the given bool and assigns it to the IsArray field.

func (*IAttributeValue) SetType

func (o *IAttributeValue) SetType(v AttributeValueType)

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

type IEdmEntityContainer

type IEdmEntityContainer struct {
	Elements          []IEdmEntityContainerElement `json:"elements,omitempty"`
	SchemaElementKind *EdmSchemaElementKind        `json:"schemaElementKind,omitempty"`
	Namespace         NullableString               `json:"namespace,omitempty"`
	Name              NullableString               `json:"name,omitempty"`
}

IEdmEntityContainer struct for IEdmEntityContainer

func NewIEdmEntityContainer

func NewIEdmEntityContainer() *IEdmEntityContainer

NewIEdmEntityContainer instantiates a new IEdmEntityContainer 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 NewIEdmEntityContainerWithDefaults

func NewIEdmEntityContainerWithDefaults() *IEdmEntityContainer

NewIEdmEntityContainerWithDefaults instantiates a new IEdmEntityContainer 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 (*IEdmEntityContainer) GetElements

GetElements returns the Elements field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmEntityContainer) GetElementsOk

func (o *IEdmEntityContainer) GetElementsOk() ([]IEdmEntityContainerElement, bool)

GetElementsOk returns a tuple with the Elements field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmEntityContainer) GetName

func (o *IEdmEntityContainer) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmEntityContainer) GetNameOk

func (o *IEdmEntityContainer) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmEntityContainer) GetNamespace

func (o *IEdmEntityContainer) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmEntityContainer) GetNamespaceOk

func (o *IEdmEntityContainer) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmEntityContainer) GetSchemaElementKind

func (o *IEdmEntityContainer) GetSchemaElementKind() EdmSchemaElementKind

GetSchemaElementKind returns the SchemaElementKind field value if set, zero value otherwise.

func (*IEdmEntityContainer) GetSchemaElementKindOk

func (o *IEdmEntityContainer) GetSchemaElementKindOk() (*EdmSchemaElementKind, bool)

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

func (*IEdmEntityContainer) HasElements

func (o *IEdmEntityContainer) HasElements() bool

HasElements returns a boolean if a field has been set.

func (*IEdmEntityContainer) HasName

func (o *IEdmEntityContainer) HasName() bool

HasName returns a boolean if a field has been set.

func (*IEdmEntityContainer) HasNamespace

func (o *IEdmEntityContainer) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*IEdmEntityContainer) HasSchemaElementKind

func (o *IEdmEntityContainer) HasSchemaElementKind() bool

HasSchemaElementKind returns a boolean if a field has been set.

func (IEdmEntityContainer) MarshalJSON

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

func (*IEdmEntityContainer) SetElements

func (o *IEdmEntityContainer) SetElements(v []IEdmEntityContainerElement)

SetElements gets a reference to the given []IEdmEntityContainerElement and assigns it to the Elements field.

func (*IEdmEntityContainer) SetName

func (o *IEdmEntityContainer) SetName(v string)

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

func (*IEdmEntityContainer) SetNameNil

func (o *IEdmEntityContainer) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*IEdmEntityContainer) SetNamespace

func (o *IEdmEntityContainer) SetNamespace(v string)

SetNamespace gets a reference to the given NullableString and assigns it to the Namespace field.

func (*IEdmEntityContainer) SetNamespaceNil

func (o *IEdmEntityContainer) SetNamespaceNil()

SetNamespaceNil sets the value for Namespace to be an explicit nil

func (*IEdmEntityContainer) SetSchemaElementKind

func (o *IEdmEntityContainer) SetSchemaElementKind(v EdmSchemaElementKind)

SetSchemaElementKind gets a reference to the given EdmSchemaElementKind and assigns it to the SchemaElementKind field.

func (IEdmEntityContainer) ToMap

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

func (*IEdmEntityContainer) UnsetName

func (o *IEdmEntityContainer) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*IEdmEntityContainer) UnsetNamespace

func (o *IEdmEntityContainer) UnsetNamespace()

UnsetNamespace ensures that no value is present for Namespace, not even an explicit nil

type IEdmEntityContainerElement

type IEdmEntityContainerElement struct {
	ContainerElementKind *EdmContainerElementKind `json:"containerElementKind,omitempty"`
	Container            *IEdmEntityContainer     `json:"container,omitempty"`
	Name                 NullableString           `json:"name,omitempty"`
}

IEdmEntityContainerElement struct for IEdmEntityContainerElement

func NewIEdmEntityContainerElement

func NewIEdmEntityContainerElement() *IEdmEntityContainerElement

NewIEdmEntityContainerElement instantiates a new IEdmEntityContainerElement 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 NewIEdmEntityContainerElementWithDefaults

func NewIEdmEntityContainerElementWithDefaults() *IEdmEntityContainerElement

NewIEdmEntityContainerElementWithDefaults instantiates a new IEdmEntityContainerElement 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 (*IEdmEntityContainerElement) GetContainer

GetContainer returns the Container field value if set, zero value otherwise.

func (*IEdmEntityContainerElement) GetContainerElementKind

func (o *IEdmEntityContainerElement) GetContainerElementKind() EdmContainerElementKind

GetContainerElementKind returns the ContainerElementKind field value if set, zero value otherwise.

func (*IEdmEntityContainerElement) GetContainerElementKindOk

func (o *IEdmEntityContainerElement) GetContainerElementKindOk() (*EdmContainerElementKind, bool)

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

func (*IEdmEntityContainerElement) GetContainerOk

func (o *IEdmEntityContainerElement) GetContainerOk() (*IEdmEntityContainer, bool)

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

func (*IEdmEntityContainerElement) GetName

func (o *IEdmEntityContainerElement) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmEntityContainerElement) GetNameOk

func (o *IEdmEntityContainerElement) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmEntityContainerElement) HasContainer

func (o *IEdmEntityContainerElement) HasContainer() bool

HasContainer returns a boolean if a field has been set.

func (*IEdmEntityContainerElement) HasContainerElementKind

func (o *IEdmEntityContainerElement) HasContainerElementKind() bool

HasContainerElementKind returns a boolean if a field has been set.

func (*IEdmEntityContainerElement) HasName

func (o *IEdmEntityContainerElement) HasName() bool

HasName returns a boolean if a field has been set.

func (IEdmEntityContainerElement) MarshalJSON

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

func (*IEdmEntityContainerElement) SetContainer

SetContainer gets a reference to the given IEdmEntityContainer and assigns it to the Container field.

func (*IEdmEntityContainerElement) SetContainerElementKind

func (o *IEdmEntityContainerElement) SetContainerElementKind(v EdmContainerElementKind)

SetContainerElementKind gets a reference to the given EdmContainerElementKind and assigns it to the ContainerElementKind field.

func (*IEdmEntityContainerElement) SetName

func (o *IEdmEntityContainerElement) SetName(v string)

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

func (*IEdmEntityContainerElement) SetNameNil

func (o *IEdmEntityContainerElement) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (IEdmEntityContainerElement) ToMap

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

func (*IEdmEntityContainerElement) UnsetName

func (o *IEdmEntityContainerElement) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type IEdmExpression

type IEdmExpression struct {
	ExpressionKind *EdmExpressionKind `json:"expressionKind,omitempty"`
}

IEdmExpression struct for IEdmExpression

func NewIEdmExpression

func NewIEdmExpression() *IEdmExpression

NewIEdmExpression instantiates a new IEdmExpression 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 NewIEdmExpressionWithDefaults

func NewIEdmExpressionWithDefaults() *IEdmExpression

NewIEdmExpressionWithDefaults instantiates a new IEdmExpression 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 (*IEdmExpression) GetExpressionKind

func (o *IEdmExpression) GetExpressionKind() EdmExpressionKind

GetExpressionKind returns the ExpressionKind field value if set, zero value otherwise.

func (*IEdmExpression) GetExpressionKindOk

func (o *IEdmExpression) GetExpressionKindOk() (*EdmExpressionKind, bool)

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

func (*IEdmExpression) HasExpressionKind

func (o *IEdmExpression) HasExpressionKind() bool

HasExpressionKind returns a boolean if a field has been set.

func (IEdmExpression) MarshalJSON

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

func (*IEdmExpression) SetExpressionKind

func (o *IEdmExpression) SetExpressionKind(v EdmExpressionKind)

SetExpressionKind gets a reference to the given EdmExpressionKind and assigns it to the ExpressionKind field.

func (IEdmExpression) ToMap

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

type IEdmModel

type IEdmModel struct {
	SchemaElements                []IEdmSchemaElement        `json:"schemaElements,omitempty"`
	VocabularyAnnotations         []IEdmVocabularyAnnotation `json:"vocabularyAnnotations,omitempty"`
	ReferencedModels              []IEdmModel                `json:"referencedModels,omitempty"`
	DeclaredNamespaces            []string                   `json:"declaredNamespaces,omitempty"`
	DirectValueAnnotationsManager map[string]interface{}     `json:"directValueAnnotationsManager,omitempty"`
	EntityContainer               *IEdmEntityContainer       `json:"entityContainer,omitempty"`
}

IEdmModel struct for IEdmModel

func NewIEdmModel

func NewIEdmModel() *IEdmModel

NewIEdmModel instantiates a new IEdmModel 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 NewIEdmModelWithDefaults

func NewIEdmModelWithDefaults() *IEdmModel

NewIEdmModelWithDefaults instantiates a new IEdmModel 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 (*IEdmModel) GetDeclaredNamespaces

func (o *IEdmModel) GetDeclaredNamespaces() []string

GetDeclaredNamespaces returns the DeclaredNamespaces field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmModel) GetDeclaredNamespacesOk

func (o *IEdmModel) GetDeclaredNamespacesOk() ([]string, bool)

GetDeclaredNamespacesOk returns a tuple with the DeclaredNamespaces field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmModel) GetDirectValueAnnotationsManager

func (o *IEdmModel) GetDirectValueAnnotationsManager() map[string]interface{}

GetDirectValueAnnotationsManager returns the DirectValueAnnotationsManager field value if set, zero value otherwise.

func (*IEdmModel) GetDirectValueAnnotationsManagerOk

func (o *IEdmModel) GetDirectValueAnnotationsManagerOk() (map[string]interface{}, bool)

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

func (*IEdmModel) GetEntityContainer

func (o *IEdmModel) GetEntityContainer() IEdmEntityContainer

GetEntityContainer returns the EntityContainer field value if set, zero value otherwise.

func (*IEdmModel) GetEntityContainerOk

func (o *IEdmModel) GetEntityContainerOk() (*IEdmEntityContainer, bool)

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

func (*IEdmModel) GetReferencedModels

func (o *IEdmModel) GetReferencedModels() []IEdmModel

GetReferencedModels returns the ReferencedModels field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmModel) GetReferencedModelsOk

func (o *IEdmModel) GetReferencedModelsOk() ([]IEdmModel, bool)

GetReferencedModelsOk returns a tuple with the ReferencedModels field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmModel) GetSchemaElements

func (o *IEdmModel) GetSchemaElements() []IEdmSchemaElement

GetSchemaElements returns the SchemaElements field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmModel) GetSchemaElementsOk

func (o *IEdmModel) GetSchemaElementsOk() ([]IEdmSchemaElement, bool)

GetSchemaElementsOk returns a tuple with the SchemaElements field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmModel) GetVocabularyAnnotations

func (o *IEdmModel) GetVocabularyAnnotations() []IEdmVocabularyAnnotation

GetVocabularyAnnotations returns the VocabularyAnnotations field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmModel) GetVocabularyAnnotationsOk

func (o *IEdmModel) GetVocabularyAnnotationsOk() ([]IEdmVocabularyAnnotation, bool)

GetVocabularyAnnotationsOk returns a tuple with the VocabularyAnnotations field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmModel) HasDeclaredNamespaces

func (o *IEdmModel) HasDeclaredNamespaces() bool

HasDeclaredNamespaces returns a boolean if a field has been set.

func (*IEdmModel) HasDirectValueAnnotationsManager

func (o *IEdmModel) HasDirectValueAnnotationsManager() bool

HasDirectValueAnnotationsManager returns a boolean if a field has been set.

func (*IEdmModel) HasEntityContainer

func (o *IEdmModel) HasEntityContainer() bool

HasEntityContainer returns a boolean if a field has been set.

func (*IEdmModel) HasReferencedModels

func (o *IEdmModel) HasReferencedModels() bool

HasReferencedModels returns a boolean if a field has been set.

func (*IEdmModel) HasSchemaElements

func (o *IEdmModel) HasSchemaElements() bool

HasSchemaElements returns a boolean if a field has been set.

func (*IEdmModel) HasVocabularyAnnotations

func (o *IEdmModel) HasVocabularyAnnotations() bool

HasVocabularyAnnotations returns a boolean if a field has been set.

func (IEdmModel) MarshalJSON

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

func (*IEdmModel) SetDeclaredNamespaces

func (o *IEdmModel) SetDeclaredNamespaces(v []string)

SetDeclaredNamespaces gets a reference to the given []string and assigns it to the DeclaredNamespaces field.

func (*IEdmModel) SetDirectValueAnnotationsManager

func (o *IEdmModel) SetDirectValueAnnotationsManager(v map[string]interface{})

SetDirectValueAnnotationsManager gets a reference to the given map[string]interface{} and assigns it to the DirectValueAnnotationsManager field.

func (*IEdmModel) SetEntityContainer

func (o *IEdmModel) SetEntityContainer(v IEdmEntityContainer)

SetEntityContainer gets a reference to the given IEdmEntityContainer and assigns it to the EntityContainer field.

func (*IEdmModel) SetReferencedModels

func (o *IEdmModel) SetReferencedModels(v []IEdmModel)

SetReferencedModels gets a reference to the given []IEdmModel and assigns it to the ReferencedModels field.

func (*IEdmModel) SetSchemaElements

func (o *IEdmModel) SetSchemaElements(v []IEdmSchemaElement)

SetSchemaElements gets a reference to the given []IEdmSchemaElement and assigns it to the SchemaElements field.

func (*IEdmModel) SetVocabularyAnnotations

func (o *IEdmModel) SetVocabularyAnnotations(v []IEdmVocabularyAnnotation)

SetVocabularyAnnotations gets a reference to the given []IEdmVocabularyAnnotation and assigns it to the VocabularyAnnotations field.

func (IEdmModel) ToMap

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

type IEdmSchemaElement

type IEdmSchemaElement struct {
	SchemaElementKind *EdmSchemaElementKind `json:"schemaElementKind,omitempty"`
	Namespace         NullableString        `json:"namespace,omitempty"`
	Name              NullableString        `json:"name,omitempty"`
}

IEdmSchemaElement struct for IEdmSchemaElement

func NewIEdmSchemaElement

func NewIEdmSchemaElement() *IEdmSchemaElement

NewIEdmSchemaElement instantiates a new IEdmSchemaElement 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 NewIEdmSchemaElementWithDefaults

func NewIEdmSchemaElementWithDefaults() *IEdmSchemaElement

NewIEdmSchemaElementWithDefaults instantiates a new IEdmSchemaElement 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 (*IEdmSchemaElement) GetName

func (o *IEdmSchemaElement) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmSchemaElement) GetNameOk

func (o *IEdmSchemaElement) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmSchemaElement) GetNamespace

func (o *IEdmSchemaElement) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmSchemaElement) GetNamespaceOk

func (o *IEdmSchemaElement) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmSchemaElement) GetSchemaElementKind

func (o *IEdmSchemaElement) GetSchemaElementKind() EdmSchemaElementKind

GetSchemaElementKind returns the SchemaElementKind field value if set, zero value otherwise.

func (*IEdmSchemaElement) GetSchemaElementKindOk

func (o *IEdmSchemaElement) GetSchemaElementKindOk() (*EdmSchemaElementKind, bool)

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

func (*IEdmSchemaElement) HasName

func (o *IEdmSchemaElement) HasName() bool

HasName returns a boolean if a field has been set.

func (*IEdmSchemaElement) HasNamespace

func (o *IEdmSchemaElement) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*IEdmSchemaElement) HasSchemaElementKind

func (o *IEdmSchemaElement) HasSchemaElementKind() bool

HasSchemaElementKind returns a boolean if a field has been set.

func (IEdmSchemaElement) MarshalJSON

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

func (*IEdmSchemaElement) SetName

func (o *IEdmSchemaElement) SetName(v string)

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

func (*IEdmSchemaElement) SetNameNil

func (o *IEdmSchemaElement) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*IEdmSchemaElement) SetNamespace

func (o *IEdmSchemaElement) SetNamespace(v string)

SetNamespace gets a reference to the given NullableString and assigns it to the Namespace field.

func (*IEdmSchemaElement) SetNamespaceNil

func (o *IEdmSchemaElement) SetNamespaceNil()

SetNamespaceNil sets the value for Namespace to be an explicit nil

func (*IEdmSchemaElement) SetSchemaElementKind

func (o *IEdmSchemaElement) SetSchemaElementKind(v EdmSchemaElementKind)

SetSchemaElementKind gets a reference to the given EdmSchemaElementKind and assigns it to the SchemaElementKind field.

func (IEdmSchemaElement) ToMap

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

func (*IEdmSchemaElement) UnsetName

func (o *IEdmSchemaElement) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*IEdmSchemaElement) UnsetNamespace

func (o *IEdmSchemaElement) UnsetNamespace()

UnsetNamespace ensures that no value is present for Namespace, not even an explicit nil

type IEdmTerm

type IEdmTerm struct {
	Type              *IEdmTypeReference    `json:"type,omitempty"`
	AppliesTo         NullableString        `json:"appliesTo,omitempty"`
	DefaultValue      NullableString        `json:"defaultValue,omitempty"`
	SchemaElementKind *EdmSchemaElementKind `json:"schemaElementKind,omitempty"`
	Namespace         NullableString        `json:"namespace,omitempty"`
	Name              NullableString        `json:"name,omitempty"`
}

IEdmTerm struct for IEdmTerm

func NewIEdmTerm

func NewIEdmTerm() *IEdmTerm

NewIEdmTerm instantiates a new IEdmTerm 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 NewIEdmTermWithDefaults

func NewIEdmTermWithDefaults() *IEdmTerm

NewIEdmTermWithDefaults instantiates a new IEdmTerm 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 (*IEdmTerm) GetAppliesTo

func (o *IEdmTerm) GetAppliesTo() string

GetAppliesTo returns the AppliesTo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmTerm) GetAppliesToOk

func (o *IEdmTerm) GetAppliesToOk() (*string, bool)

GetAppliesToOk returns a tuple with the AppliesTo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmTerm) GetDefaultValue

func (o *IEdmTerm) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmTerm) GetDefaultValueOk

func (o *IEdmTerm) GetDefaultValueOk() (*string, bool)

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmTerm) GetName

func (o *IEdmTerm) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmTerm) GetNameOk

func (o *IEdmTerm) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmTerm) GetNamespace

func (o *IEdmTerm) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmTerm) GetNamespaceOk

func (o *IEdmTerm) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmTerm) GetSchemaElementKind

func (o *IEdmTerm) GetSchemaElementKind() EdmSchemaElementKind

GetSchemaElementKind returns the SchemaElementKind field value if set, zero value otherwise.

func (*IEdmTerm) GetSchemaElementKindOk

func (o *IEdmTerm) GetSchemaElementKindOk() (*EdmSchemaElementKind, bool)

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

func (*IEdmTerm) GetType

func (o *IEdmTerm) GetType() IEdmTypeReference

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

func (*IEdmTerm) GetTypeOk

func (o *IEdmTerm) GetTypeOk() (*IEdmTypeReference, bool)

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

func (*IEdmTerm) HasAppliesTo

func (o *IEdmTerm) HasAppliesTo() bool

HasAppliesTo returns a boolean if a field has been set.

func (*IEdmTerm) HasDefaultValue

func (o *IEdmTerm) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*IEdmTerm) HasName

func (o *IEdmTerm) HasName() bool

HasName returns a boolean if a field has been set.

func (*IEdmTerm) HasNamespace

func (o *IEdmTerm) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*IEdmTerm) HasSchemaElementKind

func (o *IEdmTerm) HasSchemaElementKind() bool

HasSchemaElementKind returns a boolean if a field has been set.

func (*IEdmTerm) HasType

func (o *IEdmTerm) HasType() bool

HasType returns a boolean if a field has been set.

func (IEdmTerm) MarshalJSON

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

func (*IEdmTerm) SetAppliesTo

func (o *IEdmTerm) SetAppliesTo(v string)

SetAppliesTo gets a reference to the given NullableString and assigns it to the AppliesTo field.

func (*IEdmTerm) SetAppliesToNil

func (o *IEdmTerm) SetAppliesToNil()

SetAppliesToNil sets the value for AppliesTo to be an explicit nil

func (*IEdmTerm) SetDefaultValue

func (o *IEdmTerm) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given NullableString and assigns it to the DefaultValue field.

func (*IEdmTerm) SetDefaultValueNil

func (o *IEdmTerm) SetDefaultValueNil()

SetDefaultValueNil sets the value for DefaultValue to be an explicit nil

func (*IEdmTerm) SetName

func (o *IEdmTerm) SetName(v string)

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

func (*IEdmTerm) SetNameNil

func (o *IEdmTerm) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*IEdmTerm) SetNamespace

func (o *IEdmTerm) SetNamespace(v string)

SetNamespace gets a reference to the given NullableString and assigns it to the Namespace field.

func (*IEdmTerm) SetNamespaceNil

func (o *IEdmTerm) SetNamespaceNil()

SetNamespaceNil sets the value for Namespace to be an explicit nil

func (*IEdmTerm) SetSchemaElementKind

func (o *IEdmTerm) SetSchemaElementKind(v EdmSchemaElementKind)

SetSchemaElementKind gets a reference to the given EdmSchemaElementKind and assigns it to the SchemaElementKind field.

func (*IEdmTerm) SetType

func (o *IEdmTerm) SetType(v IEdmTypeReference)

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

func (IEdmTerm) ToMap

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

func (*IEdmTerm) UnsetAppliesTo

func (o *IEdmTerm) UnsetAppliesTo()

UnsetAppliesTo ensures that no value is present for AppliesTo, not even an explicit nil

func (*IEdmTerm) UnsetDefaultValue

func (o *IEdmTerm) UnsetDefaultValue()

UnsetDefaultValue ensures that no value is present for DefaultValue, not even an explicit nil

func (*IEdmTerm) UnsetName

func (o *IEdmTerm) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*IEdmTerm) UnsetNamespace

func (o *IEdmTerm) UnsetNamespace()

UnsetNamespace ensures that no value is present for Namespace, not even an explicit nil

type IEdmType

type IEdmType struct {
	TypeKind *EdmTypeKind `json:"typeKind,omitempty"`
}

IEdmType struct for IEdmType

func NewIEdmType

func NewIEdmType() *IEdmType

NewIEdmType instantiates a new IEdmType 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 NewIEdmTypeWithDefaults

func NewIEdmTypeWithDefaults() *IEdmType

NewIEdmTypeWithDefaults instantiates a new IEdmType 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 (*IEdmType) GetTypeKind

func (o *IEdmType) GetTypeKind() EdmTypeKind

GetTypeKind returns the TypeKind field value if set, zero value otherwise.

func (*IEdmType) GetTypeKindOk

func (o *IEdmType) GetTypeKindOk() (*EdmTypeKind, bool)

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

func (*IEdmType) HasTypeKind

func (o *IEdmType) HasTypeKind() bool

HasTypeKind returns a boolean if a field has been set.

func (IEdmType) MarshalJSON

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

func (*IEdmType) SetTypeKind

func (o *IEdmType) SetTypeKind(v EdmTypeKind)

SetTypeKind gets a reference to the given EdmTypeKind and assigns it to the TypeKind field.

func (IEdmType) ToMap

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

type IEdmTypeReference

type IEdmTypeReference struct {
	IsNullable *bool     `json:"isNullable,omitempty"`
	Definition *IEdmType `json:"definition,omitempty"`
}

IEdmTypeReference struct for IEdmTypeReference

func NewIEdmTypeReference

func NewIEdmTypeReference() *IEdmTypeReference

NewIEdmTypeReference instantiates a new IEdmTypeReference 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 NewIEdmTypeReferenceWithDefaults

func NewIEdmTypeReferenceWithDefaults() *IEdmTypeReference

NewIEdmTypeReferenceWithDefaults instantiates a new IEdmTypeReference 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 (*IEdmTypeReference) GetDefinition

func (o *IEdmTypeReference) GetDefinition() IEdmType

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*IEdmTypeReference) GetDefinitionOk

func (o *IEdmTypeReference) GetDefinitionOk() (*IEdmType, bool)

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

func (*IEdmTypeReference) GetIsNullable

func (o *IEdmTypeReference) GetIsNullable() bool

GetIsNullable returns the IsNullable field value if set, zero value otherwise.

func (*IEdmTypeReference) GetIsNullableOk

func (o *IEdmTypeReference) GetIsNullableOk() (*bool, bool)

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

func (*IEdmTypeReference) HasDefinition

func (o *IEdmTypeReference) HasDefinition() bool

HasDefinition returns a boolean if a field has been set.

func (*IEdmTypeReference) HasIsNullable

func (o *IEdmTypeReference) HasIsNullable() bool

HasIsNullable returns a boolean if a field has been set.

func (IEdmTypeReference) MarshalJSON

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

func (*IEdmTypeReference) SetDefinition

func (o *IEdmTypeReference) SetDefinition(v IEdmType)

SetDefinition gets a reference to the given IEdmType and assigns it to the Definition field.

func (*IEdmTypeReference) SetIsNullable

func (o *IEdmTypeReference) SetIsNullable(v bool)

SetIsNullable gets a reference to the given bool and assigns it to the IsNullable field.

func (IEdmTypeReference) ToMap

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

type IEdmVocabularyAnnotation

type IEdmVocabularyAnnotation struct {
	Qualifier NullableString         `json:"qualifier,omitempty"`
	Term      *IEdmTerm              `json:"term,omitempty"`
	Target    map[string]interface{} `json:"target,omitempty"`
	Value     *IEdmExpression        `json:"value,omitempty"`
}

IEdmVocabularyAnnotation struct for IEdmVocabularyAnnotation

func NewIEdmVocabularyAnnotation

func NewIEdmVocabularyAnnotation() *IEdmVocabularyAnnotation

NewIEdmVocabularyAnnotation instantiates a new IEdmVocabularyAnnotation 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 NewIEdmVocabularyAnnotationWithDefaults

func NewIEdmVocabularyAnnotationWithDefaults() *IEdmVocabularyAnnotation

NewIEdmVocabularyAnnotationWithDefaults instantiates a new IEdmVocabularyAnnotation 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 (*IEdmVocabularyAnnotation) GetQualifier

func (o *IEdmVocabularyAnnotation) GetQualifier() string

GetQualifier returns the Qualifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IEdmVocabularyAnnotation) GetQualifierOk

func (o *IEdmVocabularyAnnotation) GetQualifierOk() (*string, bool)

GetQualifierOk returns a tuple with the Qualifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IEdmVocabularyAnnotation) GetTarget

func (o *IEdmVocabularyAnnotation) GetTarget() map[string]interface{}

GetTarget returns the Target field value if set, zero value otherwise.

func (*IEdmVocabularyAnnotation) GetTargetOk

func (o *IEdmVocabularyAnnotation) GetTargetOk() (map[string]interface{}, bool)

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

func (*IEdmVocabularyAnnotation) GetTerm

func (o *IEdmVocabularyAnnotation) GetTerm() IEdmTerm

GetTerm returns the Term field value if set, zero value otherwise.

func (*IEdmVocabularyAnnotation) GetTermOk

func (o *IEdmVocabularyAnnotation) GetTermOk() (*IEdmTerm, bool)

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

func (*IEdmVocabularyAnnotation) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*IEdmVocabularyAnnotation) GetValueOk

func (o *IEdmVocabularyAnnotation) GetValueOk() (*IEdmExpression, bool)

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

func (*IEdmVocabularyAnnotation) HasQualifier

func (o *IEdmVocabularyAnnotation) HasQualifier() bool

HasQualifier returns a boolean if a field has been set.

func (*IEdmVocabularyAnnotation) HasTarget

func (o *IEdmVocabularyAnnotation) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (*IEdmVocabularyAnnotation) HasTerm

func (o *IEdmVocabularyAnnotation) HasTerm() bool

HasTerm returns a boolean if a field has been set.

func (*IEdmVocabularyAnnotation) HasValue

func (o *IEdmVocabularyAnnotation) HasValue() bool

HasValue returns a boolean if a field has been set.

func (IEdmVocabularyAnnotation) MarshalJSON

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

func (*IEdmVocabularyAnnotation) SetQualifier

func (o *IEdmVocabularyAnnotation) SetQualifier(v string)

SetQualifier gets a reference to the given NullableString and assigns it to the Qualifier field.

func (*IEdmVocabularyAnnotation) SetQualifierNil

func (o *IEdmVocabularyAnnotation) SetQualifierNil()

SetQualifierNil sets the value for Qualifier to be an explicit nil

func (*IEdmVocabularyAnnotation) SetTarget

func (o *IEdmVocabularyAnnotation) SetTarget(v map[string]interface{})

SetTarget gets a reference to the given map[string]interface{} and assigns it to the Target field.

func (*IEdmVocabularyAnnotation) SetTerm

func (o *IEdmVocabularyAnnotation) SetTerm(v IEdmTerm)

SetTerm gets a reference to the given IEdmTerm and assigns it to the Term field.

func (*IEdmVocabularyAnnotation) SetValue

SetValue gets a reference to the given IEdmExpression and assigns it to the Value field.

func (IEdmVocabularyAnnotation) ToMap

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

func (*IEdmVocabularyAnnotation) UnsetQualifier

func (o *IEdmVocabularyAnnotation) UnsetQualifier()

UnsetQualifier ensures that no value is present for Qualifier, not even an explicit nil

type ILoadConfig

type ILoadConfig struct {
	SearchLayerIDs []string       `json:"searchLayerIDs,omitempty"`
	WriteLayerID   NullableString `json:"writeLayerID,omitempty"`
}

ILoadConfig struct for ILoadConfig

func NewILoadConfig

func NewILoadConfig() *ILoadConfig

NewILoadConfig instantiates a new ILoadConfig 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 NewILoadConfigWithDefaults

func NewILoadConfigWithDefaults() *ILoadConfig

NewILoadConfigWithDefaults instantiates a new ILoadConfig 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 (*ILoadConfig) GetSearchLayerIDs

func (o *ILoadConfig) GetSearchLayerIDs() []string

GetSearchLayerIDs returns the SearchLayerIDs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ILoadConfig) GetSearchLayerIDsOk

func (o *ILoadConfig) GetSearchLayerIDsOk() ([]string, bool)

GetSearchLayerIDsOk returns a tuple with the SearchLayerIDs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ILoadConfig) GetWriteLayerID

func (o *ILoadConfig) GetWriteLayerID() string

GetWriteLayerID returns the WriteLayerID field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ILoadConfig) GetWriteLayerIDOk

func (o *ILoadConfig) GetWriteLayerIDOk() (*string, bool)

GetWriteLayerIDOk returns a tuple with the WriteLayerID field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ILoadConfig) HasSearchLayerIDs

func (o *ILoadConfig) HasSearchLayerIDs() bool

HasSearchLayerIDs returns a boolean if a field has been set.

func (*ILoadConfig) HasWriteLayerID

func (o *ILoadConfig) HasWriteLayerID() bool

HasWriteLayerID returns a boolean if a field has been set.

func (ILoadConfig) MarshalJSON

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

func (*ILoadConfig) SetSearchLayerIDs

func (o *ILoadConfig) SetSearchLayerIDs(v []string)

SetSearchLayerIDs gets a reference to the given []string and assigns it to the SearchLayerIDs field.

func (*ILoadConfig) SetWriteLayerID

func (o *ILoadConfig) SetWriteLayerID(v string)

SetWriteLayerID gets a reference to the given NullableString and assigns it to the WriteLayerID field.

func (*ILoadConfig) SetWriteLayerIDNil

func (o *ILoadConfig) SetWriteLayerIDNil()

SetWriteLayerIDNil sets the value for WriteLayerID to be an explicit nil

func (*ILoadConfig) UnsetWriteLayerID

func (o *ILoadConfig) UnsetWriteLayerID()

UnsetWriteLayerID ensures that no value is present for WriteLayerID, not even an explicit nil

type ImportExportLayerApiService

type ImportExportLayerApiService service

ImportExportLayerApiService ImportExportLayerApi service

func (*ImportExportLayerApiService) ImportExportLayerExportLayer

func (a *ImportExportLayerApiService) ImportExportLayerExportLayer(ctx context.Context, version string) ApiImportExportLayerExportLayerRequest

ImportExportLayerExportLayer Method for ImportExportLayerExportLayer

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

func (*ImportExportLayerApiService) ImportExportLayerExportLayerExecute

func (a *ImportExportLayerApiService) ImportExportLayerExportLayerExecute(r ApiImportExportLayerExportLayerRequest) (*http.Response, error)

Execute executes the request

type InboundIDMethodByAttribute

type InboundIDMethodByAttribute struct {
	Attribute *GenericInboundAttribute             `json:"attribute,omitempty"`
	Modifiers *InboundIDMethodByAttributeModifiers `json:"modifiers,omitempty"`
}

InboundIDMethodByAttribute struct for InboundIDMethodByAttribute

func NewInboundIDMethodByAttribute

func NewInboundIDMethodByAttribute(type_ string) *InboundIDMethodByAttribute

NewInboundIDMethodByAttribute instantiates a new InboundIDMethodByAttribute 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 NewInboundIDMethodByAttributeWithDefaults

func NewInboundIDMethodByAttributeWithDefaults() *InboundIDMethodByAttribute

NewInboundIDMethodByAttributeWithDefaults instantiates a new InboundIDMethodByAttribute 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 (*InboundIDMethodByAttribute) GetAttribute

GetAttribute returns the Attribute field value if set, zero value otherwise.

func (*InboundIDMethodByAttribute) GetAttributeOk

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

func (*InboundIDMethodByAttribute) GetModifiers

GetModifiers returns the Modifiers field value if set, zero value otherwise.

func (*InboundIDMethodByAttribute) GetModifiersOk

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

func (*InboundIDMethodByAttribute) HasAttribute

func (o *InboundIDMethodByAttribute) HasAttribute() bool

HasAttribute returns a boolean if a field has been set.

func (*InboundIDMethodByAttribute) HasModifiers

func (o *InboundIDMethodByAttribute) HasModifiers() bool

HasModifiers returns a boolean if a field has been set.

func (InboundIDMethodByAttribute) MarshalJSON

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

func (*InboundIDMethodByAttribute) SetAttribute

SetAttribute gets a reference to the given GenericInboundAttribute and assigns it to the Attribute field.

func (*InboundIDMethodByAttribute) SetModifiers

SetModifiers gets a reference to the given InboundIDMethodByAttributeModifiers and assigns it to the Modifiers field.

func (InboundIDMethodByAttribute) ToMap

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

type InboundIDMethodByAttributeModifiers

type InboundIDMethodByAttributeModifiers struct {
	CaseInsensitive *bool `json:"caseInsensitive,omitempty"`
}

InboundIDMethodByAttributeModifiers struct for InboundIDMethodByAttributeModifiers

func NewInboundIDMethodByAttributeModifiers

func NewInboundIDMethodByAttributeModifiers() *InboundIDMethodByAttributeModifiers

NewInboundIDMethodByAttributeModifiers instantiates a new InboundIDMethodByAttributeModifiers 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 NewInboundIDMethodByAttributeModifiersWithDefaults

func NewInboundIDMethodByAttributeModifiersWithDefaults() *InboundIDMethodByAttributeModifiers

NewInboundIDMethodByAttributeModifiersWithDefaults instantiates a new InboundIDMethodByAttributeModifiers 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 (*InboundIDMethodByAttributeModifiers) GetCaseInsensitive

func (o *InboundIDMethodByAttributeModifiers) GetCaseInsensitive() bool

GetCaseInsensitive returns the CaseInsensitive field value if set, zero value otherwise.

func (*InboundIDMethodByAttributeModifiers) GetCaseInsensitiveOk

func (o *InboundIDMethodByAttributeModifiers) GetCaseInsensitiveOk() (*bool, bool)

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

func (*InboundIDMethodByAttributeModifiers) HasCaseInsensitive

func (o *InboundIDMethodByAttributeModifiers) HasCaseInsensitive() bool

HasCaseInsensitive returns a boolean if a field has been set.

func (InboundIDMethodByAttributeModifiers) MarshalJSON

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

func (*InboundIDMethodByAttributeModifiers) SetCaseInsensitive

func (o *InboundIDMethodByAttributeModifiers) SetCaseInsensitive(v bool)

SetCaseInsensitive gets a reference to the given bool and assigns it to the CaseInsensitive field.

func (InboundIDMethodByAttributeModifiers) ToMap

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

type InboundIDMethodByByUnion

type InboundIDMethodByByUnion struct {
	Inner []OneOfInboundIDMethodByDataInboundIDMethodByAttributeModifiersInboundIDMethodByAttributeInboundIDMethodByRelatedTempIDInboundIDMethodByTemporaryCIIDInboundIDMethodByByUnionInboundIDMethodByIntersect `json:"inner,omitempty"`
}

InboundIDMethodByByUnion struct for InboundIDMethodByByUnion

func NewInboundIDMethodByByUnion

func NewInboundIDMethodByByUnion(type_ string) *InboundIDMethodByByUnion

NewInboundIDMethodByByUnion instantiates a new InboundIDMethodByByUnion 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 NewInboundIDMethodByByUnionWithDefaults

func NewInboundIDMethodByByUnionWithDefaults() *InboundIDMethodByByUnion

NewInboundIDMethodByByUnionWithDefaults instantiates a new InboundIDMethodByByUnion 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 (*InboundIDMethodByByUnion) GetInner

func (o *InboundIDMethodByByUnion) GetInner() []OneOfInboundIDMethodByDataInboundIDMethodByAttributeModifiersInboundIDMethodByAttributeInboundIDMethodByRelatedTempIDInboundIDMethodByTemporaryCIIDInboundIDMethodByByUnionInboundIDMethodByIntersect

GetInner returns the Inner field value if set, zero value otherwise.

func (*InboundIDMethodByByUnion) GetInnerOk

func (o *InboundIDMethodByByUnion) GetInnerOk() ([]OneOfInboundIDMethodByDataInboundIDMethodByAttributeModifiersInboundIDMethodByAttributeInboundIDMethodByRelatedTempIDInboundIDMethodByTemporaryCIIDInboundIDMethodByByUnionInboundIDMethodByIntersect, bool)

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

func (*InboundIDMethodByByUnion) HasInner

func (o *InboundIDMethodByByUnion) HasInner() bool

HasInner returns a boolean if a field has been set.

func (InboundIDMethodByByUnion) MarshalJSON

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

func (*InboundIDMethodByByUnion) SetInner

func (o *InboundIDMethodByByUnion) SetInner(v []OneOfInboundIDMethodByDataInboundIDMethodByAttributeModifiersInboundIDMethodByAttributeInboundIDMethodByRelatedTempIDInboundIDMethodByTemporaryCIIDInboundIDMethodByByUnionInboundIDMethodByIntersect)

SetInner gets a reference to the given []OneOfInboundIDMethodByDataInboundIDMethodByAttributeModifiersInboundIDMethodByAttributeInboundIDMethodByRelatedTempIDInboundIDMethodByTemporaryCIIDInboundIDMethodByByUnionInboundIDMethodByIntersect and assigns it to the Inner field.

func (InboundIDMethodByByUnion) ToMap

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

type InboundIDMethodByByUnionInnerInner

type InboundIDMethodByByUnionInnerInner struct {
	InboundIDMethodByAttribute          *InboundIDMethodByAttribute
	InboundIDMethodByAttributeModifiers *InboundIDMethodByAttributeModifiers
	InboundIDMethodByByUnion            *InboundIDMethodByByUnion
	InboundIDMethodByData               *InboundIDMethodByData
	InboundIDMethodByIntersect          *InboundIDMethodByIntersect
	InboundIDMethodByRelatedTempID      *InboundIDMethodByRelatedTempID
	InboundIDMethodByTemporaryCIID      *InboundIDMethodByTemporaryCIID
}

InboundIDMethodByByUnionInnerInner - struct for InboundIDMethodByByUnionInnerInner

func InboundIDMethodByAttributeAsInboundIDMethodByByUnionInnerInner

func InboundIDMethodByAttributeAsInboundIDMethodByByUnionInnerInner(v *InboundIDMethodByAttribute) InboundIDMethodByByUnionInnerInner

InboundIDMethodByAttributeAsInboundIDMethodByByUnionInnerInner is a convenience function that returns InboundIDMethodByAttribute wrapped in InboundIDMethodByByUnionInnerInner

func InboundIDMethodByAttributeModifiersAsInboundIDMethodByByUnionInnerInner

func InboundIDMethodByAttributeModifiersAsInboundIDMethodByByUnionInnerInner(v *InboundIDMethodByAttributeModifiers) InboundIDMethodByByUnionInnerInner

InboundIDMethodByAttributeModifiersAsInboundIDMethodByByUnionInnerInner is a convenience function that returns InboundIDMethodByAttributeModifiers wrapped in InboundIDMethodByByUnionInnerInner

func InboundIDMethodByByUnionAsInboundIDMethodByByUnionInnerInner

func InboundIDMethodByByUnionAsInboundIDMethodByByUnionInnerInner(v *InboundIDMethodByByUnion) InboundIDMethodByByUnionInnerInner

InboundIDMethodByByUnionAsInboundIDMethodByByUnionInnerInner is a convenience function that returns InboundIDMethodByByUnion wrapped in InboundIDMethodByByUnionInnerInner

func InboundIDMethodByDataAsInboundIDMethodByByUnionInnerInner

func InboundIDMethodByDataAsInboundIDMethodByByUnionInnerInner(v *InboundIDMethodByData) InboundIDMethodByByUnionInnerInner

InboundIDMethodByDataAsInboundIDMethodByByUnionInnerInner is a convenience function that returns InboundIDMethodByData wrapped in InboundIDMethodByByUnionInnerInner

func InboundIDMethodByIntersectAsInboundIDMethodByByUnionInnerInner

func InboundIDMethodByIntersectAsInboundIDMethodByByUnionInnerInner(v *InboundIDMethodByIntersect) InboundIDMethodByByUnionInnerInner

InboundIDMethodByIntersectAsInboundIDMethodByByUnionInnerInner is a convenience function that returns InboundIDMethodByIntersect wrapped in InboundIDMethodByByUnionInnerInner

func InboundIDMethodByRelatedTempIDAsInboundIDMethodByByUnionInnerInner

func InboundIDMethodByRelatedTempIDAsInboundIDMethodByByUnionInnerInner(v *InboundIDMethodByRelatedTempID) InboundIDMethodByByUnionInnerInner

InboundIDMethodByRelatedTempIDAsInboundIDMethodByByUnionInnerInner is a convenience function that returns InboundIDMethodByRelatedTempID wrapped in InboundIDMethodByByUnionInnerInner

func InboundIDMethodByTemporaryCIIDAsInboundIDMethodByByUnionInnerInner

func InboundIDMethodByTemporaryCIIDAsInboundIDMethodByByUnionInnerInner(v *InboundIDMethodByTemporaryCIID) InboundIDMethodByByUnionInnerInner

InboundIDMethodByTemporaryCIIDAsInboundIDMethodByByUnionInnerInner is a convenience function that returns InboundIDMethodByTemporaryCIID wrapped in InboundIDMethodByByUnionInnerInner

func (*InboundIDMethodByByUnionInnerInner) GetActualInstance

func (obj *InboundIDMethodByByUnionInnerInner) GetActualInstance() interface{}

Get the actual instance

func (InboundIDMethodByByUnionInnerInner) MarshalJSON

func (src InboundIDMethodByByUnionInnerInner) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*InboundIDMethodByByUnionInnerInner) UnmarshalJSON

func (dst *InboundIDMethodByByUnionInnerInner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type InboundIDMethodByData

type InboundIDMethodByData struct {
	Attributes []string `json:"attributes,omitempty"`
}

InboundIDMethodByData struct for InboundIDMethodByData

func NewInboundIDMethodByData

func NewInboundIDMethodByData(type_ string) *InboundIDMethodByData

NewInboundIDMethodByData instantiates a new InboundIDMethodByData 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 NewInboundIDMethodByDataWithDefaults

func NewInboundIDMethodByDataWithDefaults() *InboundIDMethodByData

NewInboundIDMethodByDataWithDefaults instantiates a new InboundIDMethodByData 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 (*InboundIDMethodByData) GetAttributes

func (o *InboundIDMethodByData) GetAttributes() []string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*InboundIDMethodByData) GetAttributesOk

func (o *InboundIDMethodByData) GetAttributesOk() ([]string, bool)

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

func (*InboundIDMethodByData) HasAttributes

func (o *InboundIDMethodByData) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (InboundIDMethodByData) MarshalJSON

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

func (*InboundIDMethodByData) SetAttributes

func (o *InboundIDMethodByData) SetAttributes(v []string)

SetAttributes gets a reference to the given []string and assigns it to the Attributes field.

func (InboundIDMethodByData) ToMap

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

type InboundIDMethodByIntersect

type InboundIDMethodByIntersect struct {
	Inner []OneOfInboundIDMethodByDataInboundIDMethodByAttributeModifiersInboundIDMethodByAttributeInboundIDMethodByRelatedTempIDInboundIDMethodByTemporaryCIIDInboundIDMethodByByUnionInboundIDMethodByIntersect `json:"inner,omitempty"`
}

InboundIDMethodByIntersect struct for InboundIDMethodByIntersect

func NewInboundIDMethodByIntersect

func NewInboundIDMethodByIntersect(type_ string) *InboundIDMethodByIntersect

NewInboundIDMethodByIntersect instantiates a new InboundIDMethodByIntersect 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 NewInboundIDMethodByIntersectWithDefaults

func NewInboundIDMethodByIntersectWithDefaults() *InboundIDMethodByIntersect

NewInboundIDMethodByIntersectWithDefaults instantiates a new InboundIDMethodByIntersect 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 (*InboundIDMethodByIntersect) GetInner

func (o *InboundIDMethodByIntersect) GetInner() []OneOfInboundIDMethodByDataInboundIDMethodByAttributeModifiersInboundIDMethodByAttributeInboundIDMethodByRelatedTempIDInboundIDMethodByTemporaryCIIDInboundIDMethodByByUnionInboundIDMethodByIntersect

GetInner returns the Inner field value if set, zero value otherwise.

func (*InboundIDMethodByIntersect) GetInnerOk

func (o *InboundIDMethodByIntersect) GetInnerOk() ([]OneOfInboundIDMethodByDataInboundIDMethodByAttributeModifiersInboundIDMethodByAttributeInboundIDMethodByRelatedTempIDInboundIDMethodByTemporaryCIIDInboundIDMethodByByUnionInboundIDMethodByIntersect, bool)

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

func (*InboundIDMethodByIntersect) HasInner

func (o *InboundIDMethodByIntersect) HasInner() bool

HasInner returns a boolean if a field has been set.

func (InboundIDMethodByIntersect) MarshalJSON

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

func (*InboundIDMethodByIntersect) SetInner

func (o *InboundIDMethodByIntersect) SetInner(v []OneOfInboundIDMethodByDataInboundIDMethodByAttributeModifiersInboundIDMethodByAttributeInboundIDMethodByRelatedTempIDInboundIDMethodByTemporaryCIIDInboundIDMethodByByUnionInboundIDMethodByIntersect)

SetInner gets a reference to the given []OneOfInboundIDMethodByDataInboundIDMethodByAttributeModifiersInboundIDMethodByAttributeInboundIDMethodByRelatedTempIDInboundIDMethodByTemporaryCIIDInboundIDMethodByByUnionInboundIDMethodByIntersect and assigns it to the Inner field.

func (InboundIDMethodByIntersect) ToMap

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

type InboundIDMethodByRelatedTempID

type InboundIDMethodByRelatedTempID struct {
	TempID           *string `json:"tempID,omitempty"`
	OutgoingRelation *bool   `json:"outgoingRelation,omitempty"`
	PredicateID      *string `json:"predicateID,omitempty"`
}

InboundIDMethodByRelatedTempID struct for InboundIDMethodByRelatedTempID

func NewInboundIDMethodByRelatedTempID

func NewInboundIDMethodByRelatedTempID(type_ string) *InboundIDMethodByRelatedTempID

NewInboundIDMethodByRelatedTempID instantiates a new InboundIDMethodByRelatedTempID 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 NewInboundIDMethodByRelatedTempIDWithDefaults

func NewInboundIDMethodByRelatedTempIDWithDefaults() *InboundIDMethodByRelatedTempID

NewInboundIDMethodByRelatedTempIDWithDefaults instantiates a new InboundIDMethodByRelatedTempID 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 (*InboundIDMethodByRelatedTempID) GetOutgoingRelation

func (o *InboundIDMethodByRelatedTempID) GetOutgoingRelation() bool

GetOutgoingRelation returns the OutgoingRelation field value if set, zero value otherwise.

func (*InboundIDMethodByRelatedTempID) GetOutgoingRelationOk

func (o *InboundIDMethodByRelatedTempID) GetOutgoingRelationOk() (*bool, bool)

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

func (*InboundIDMethodByRelatedTempID) GetPredicateID

func (o *InboundIDMethodByRelatedTempID) GetPredicateID() string

GetPredicateID returns the PredicateID field value if set, zero value otherwise.

func (*InboundIDMethodByRelatedTempID) GetPredicateIDOk

func (o *InboundIDMethodByRelatedTempID) GetPredicateIDOk() (*string, bool)

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

func (*InboundIDMethodByRelatedTempID) GetTempID

func (o *InboundIDMethodByRelatedTempID) GetTempID() string

GetTempID returns the TempID field value if set, zero value otherwise.

func (*InboundIDMethodByRelatedTempID) GetTempIDOk

func (o *InboundIDMethodByRelatedTempID) GetTempIDOk() (*string, bool)

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

func (*InboundIDMethodByRelatedTempID) HasOutgoingRelation

func (o *InboundIDMethodByRelatedTempID) HasOutgoingRelation() bool

HasOutgoingRelation returns a boolean if a field has been set.

func (*InboundIDMethodByRelatedTempID) HasPredicateID

func (o *InboundIDMethodByRelatedTempID) HasPredicateID() bool

HasPredicateID returns a boolean if a field has been set.

func (*InboundIDMethodByRelatedTempID) HasTempID

func (o *InboundIDMethodByRelatedTempID) HasTempID() bool

HasTempID returns a boolean if a field has been set.

func (InboundIDMethodByRelatedTempID) MarshalJSON

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

func (*InboundIDMethodByRelatedTempID) SetOutgoingRelation

func (o *InboundIDMethodByRelatedTempID) SetOutgoingRelation(v bool)

SetOutgoingRelation gets a reference to the given bool and assigns it to the OutgoingRelation field.

func (*InboundIDMethodByRelatedTempID) SetPredicateID

func (o *InboundIDMethodByRelatedTempID) SetPredicateID(v string)

SetPredicateID gets a reference to the given string and assigns it to the PredicateID field.

func (*InboundIDMethodByRelatedTempID) SetTempID

func (o *InboundIDMethodByRelatedTempID) SetTempID(v string)

SetTempID gets a reference to the given string and assigns it to the TempID field.

func (InboundIDMethodByRelatedTempID) ToMap

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

type InboundIDMethodByTemporaryCIID

type InboundIDMethodByTemporaryCIID struct {
	TempID *string `json:"tempID,omitempty"`
}

InboundIDMethodByTemporaryCIID struct for InboundIDMethodByTemporaryCIID

func NewInboundIDMethodByTemporaryCIID

func NewInboundIDMethodByTemporaryCIID(type_ string) *InboundIDMethodByTemporaryCIID

NewInboundIDMethodByTemporaryCIID instantiates a new InboundIDMethodByTemporaryCIID 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 NewInboundIDMethodByTemporaryCIIDWithDefaults

func NewInboundIDMethodByTemporaryCIIDWithDefaults() *InboundIDMethodByTemporaryCIID

NewInboundIDMethodByTemporaryCIIDWithDefaults instantiates a new InboundIDMethodByTemporaryCIID 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 (*InboundIDMethodByTemporaryCIID) GetTempID

func (o *InboundIDMethodByTemporaryCIID) GetTempID() string

GetTempID returns the TempID field value if set, zero value otherwise.

func (*InboundIDMethodByTemporaryCIID) GetTempIDOk

func (o *InboundIDMethodByTemporaryCIID) GetTempIDOk() (*string, bool)

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

func (*InboundIDMethodByTemporaryCIID) HasTempID

func (o *InboundIDMethodByTemporaryCIID) HasTempID() bool

HasTempID returns a boolean if a field has been set.

func (InboundIDMethodByTemporaryCIID) MarshalJSON

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

func (*InboundIDMethodByTemporaryCIID) SetTempID

func (o *InboundIDMethodByTemporaryCIID) SetTempID(v string)

SetTempID gets a reference to the given string and assigns it to the TempID field.

func (InboundIDMethodByTemporaryCIID) ToMap

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

type LayerApiService

type LayerApiService service

LayerApiService LayerApi service

func (*LayerApiService) GetAllLayers

func (a *LayerApiService) GetAllLayers(ctx context.Context, version string) ApiGetAllLayersRequest

GetAllLayers list of all layers

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

func (*LayerApiService) GetAllLayersExecute

func (a *LayerApiService) GetAllLayersExecute(r ApiGetAllLayersRequest) ([]LayerDTO, *http.Response, error)

Execute executes the request

@return []LayerDTO

func (*LayerApiService) GetLayerByName

func (a *LayerApiService) GetLayerByName(ctx context.Context, version string) ApiGetLayerByNameRequest

GetLayerByName get a layer by name

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

func (*LayerApiService) GetLayerByNameExecute

func (a *LayerApiService) GetLayerByNameExecute(r ApiGetLayerByNameRequest) (*LayerDTO, *http.Response, error)

Execute executes the request

@return LayerDTO

func (*LayerApiService) GetLayersByName

func (a *LayerApiService) GetLayersByName(ctx context.Context, version string) ApiGetLayersByNameRequest

GetLayersByName get layers by name

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

func (*LayerApiService) GetLayersByNameExecute

func (a *LayerApiService) GetLayersByNameExecute(r ApiGetLayersByNameRequest) ([]LayerDTO, *http.Response, error)

Execute executes the request

@return []LayerDTO

type LayerDTO

type LayerDTO struct {
	Id          string `json:"id"`
	Description string `json:"description"`
}

LayerDTO struct for LayerDTO

func NewLayerDTO

func NewLayerDTO(id string, description string) *LayerDTO

NewLayerDTO instantiates a new LayerDTO 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 NewLayerDTOWithDefaults

func NewLayerDTOWithDefaults() *LayerDTO

NewLayerDTOWithDefaults instantiates a new LayerDTO 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 (*LayerDTO) GetDescription

func (o *LayerDTO) GetDescription() string

GetDescription returns the Description field value

func (*LayerDTO) GetDescriptionOk

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

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

func (*LayerDTO) GetId

func (o *LayerDTO) GetId() string

GetId returns the Id field value

func (*LayerDTO) GetIdOk

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

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

func (LayerDTO) MarshalJSON

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

func (*LayerDTO) SetDescription

func (o *LayerDTO) SetDescription(v string)

SetDescription sets field value

func (*LayerDTO) SetId

func (o *LayerDTO) SetId(v string)

SetId sets field value

type MappedNullable

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

type MetadataApiService

type MetadataApiService service

MetadataApiService MetadataApi service

func (*MetadataApiService) MetadataGetMetadata

func (a *MetadataApiService) MetadataGetMetadata(ctx context.Context, context string) ApiMetadataGetMetadataRequest

MetadataGetMetadata Method for MetadataGetMetadata

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

func (*MetadataApiService) MetadataGetMetadataExecute

func (a *MetadataApiService) MetadataGetMetadataExecute(r ApiMetadataGetMetadataRequest) (*IEdmModel, *http.Response, error)

Execute executes the request

@return IEdmModel

func (*MetadataApiService) MetadataGetServiceDocument

func (a *MetadataApiService) MetadataGetServiceDocument(ctx context.Context, context string) ApiMetadataGetServiceDocumentRequest

MetadataGetServiceDocument Method for MetadataGetServiceDocument

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

func (*MetadataApiService) MetadataGetServiceDocumentExecute

Execute executes the request

@return ODataServiceDocument

type NoFoundTargetCIHandling

type NoFoundTargetCIHandling string

NoFoundTargetCIHandling the model 'NoFoundTargetCIHandling'

const (
	NOFOUNDTARGETCIHANDLING_CREATE_NEW          NoFoundTargetCIHandling = "CreateNew"
	NOFOUNDTARGETCIHANDLING_CREATE_NEW_AND_WARN NoFoundTargetCIHandling = "CreateNewAndWarn"
	NOFOUNDTARGETCIHANDLING_DROP                NoFoundTargetCIHandling = "Drop"
)

List of NoFoundTargetCIHandling

func NewNoFoundTargetCIHandlingFromValue

func NewNoFoundTargetCIHandlingFromValue(v string) (*NoFoundTargetCIHandling, error)

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

func (NoFoundTargetCIHandling) IsValid

func (v NoFoundTargetCIHandling) IsValid() bool

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

func (NoFoundTargetCIHandling) Ptr

Ptr returns reference to NoFoundTargetCIHandling value

func (*NoFoundTargetCIHandling) UnmarshalJSON

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

type NullableAbstractInboundIDMethod

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

func (NullableAbstractInboundIDMethod) Get

func (NullableAbstractInboundIDMethod) IsSet

func (NullableAbstractInboundIDMethod) MarshalJSON

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

func (*NullableAbstractInboundIDMethod) Set

func (*NullableAbstractInboundIDMethod) UnmarshalJSON

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

func (*NullableAbstractInboundIDMethod) Unset

type NullableAddContextRequest

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

func NewNullableAddContextRequest

func NewNullableAddContextRequest(val *AddContextRequest) *NullableAddContextRequest

func (NullableAddContextRequest) Get

func (NullableAddContextRequest) IsSet

func (v NullableAddContextRequest) IsSet() bool

func (NullableAddContextRequest) MarshalJSON

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

func (*NullableAddContextRequest) Set

func (*NullableAddContextRequest) UnmarshalJSON

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

func (*NullableAddContextRequest) Unset

func (v *NullableAddContextRequest) Unset()

type NullableAnsibleInventoryScanDTO

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

func (NullableAnsibleInventoryScanDTO) Get

func (NullableAnsibleInventoryScanDTO) IsSet

func (NullableAnsibleInventoryScanDTO) MarshalJSON

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

func (*NullableAnsibleInventoryScanDTO) Set

func (*NullableAnsibleInventoryScanDTO) UnmarshalJSON

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

func (*NullableAnsibleInventoryScanDTO) Unset

type NullableAttributeState

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

func NewNullableAttributeState

func NewNullableAttributeState(val *AttributeState) *NullableAttributeState

func (NullableAttributeState) Get

func (NullableAttributeState) IsSet

func (v NullableAttributeState) IsSet() bool

func (NullableAttributeState) MarshalJSON

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

func (*NullableAttributeState) Set

func (*NullableAttributeState) UnmarshalJSON

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

func (*NullableAttributeState) Unset

func (v *NullableAttributeState) Unset()

type NullableAttributeValueDTO

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

func NewNullableAttributeValueDTO

func NewNullableAttributeValueDTO(val *AttributeValueDTO) *NullableAttributeValueDTO

func (NullableAttributeValueDTO) Get

func (NullableAttributeValueDTO) IsSet

func (v NullableAttributeValueDTO) IsSet() bool

func (NullableAttributeValueDTO) MarshalJSON

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

func (*NullableAttributeValueDTO) Set

func (*NullableAttributeValueDTO) UnmarshalJSON

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

func (*NullableAttributeValueDTO) Unset

func (v *NullableAttributeValueDTO) Unset()

type NullableAttributeValueType

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

func NewNullableAttributeValueType

func NewNullableAttributeValueType(val *AttributeValueType) *NullableAttributeValueType

func (NullableAttributeValueType) Get

func (NullableAttributeValueType) IsSet

func (v NullableAttributeValueType) IsSet() bool

func (NullableAttributeValueType) MarshalJSON

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

func (*NullableAttributeValueType) Set

func (*NullableAttributeValueType) UnmarshalJSON

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

func (*NullableAttributeValueType) Unset

func (v *NullableAttributeValueType) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableBulkCIAttributeLayerScopeDTO

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

func (NullableBulkCIAttributeLayerScopeDTO) Get

func (NullableBulkCIAttributeLayerScopeDTO) IsSet

func (NullableBulkCIAttributeLayerScopeDTO) MarshalJSON

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

func (*NullableBulkCIAttributeLayerScopeDTO) Set

func (*NullableBulkCIAttributeLayerScopeDTO) UnmarshalJSON

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

func (*NullableBulkCIAttributeLayerScopeDTO) Unset

type NullableCIAttributeDTO

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

func NewNullableCIAttributeDTO

func NewNullableCIAttributeDTO(val *CIAttributeDTO) *NullableCIAttributeDTO

func (NullableCIAttributeDTO) Get

func (NullableCIAttributeDTO) IsSet

func (v NullableCIAttributeDTO) IsSet() bool

func (NullableCIAttributeDTO) MarshalJSON

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

func (*NullableCIAttributeDTO) Set

func (*NullableCIAttributeDTO) UnmarshalJSON

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

func (*NullableCIAttributeDTO) Unset

func (v *NullableCIAttributeDTO) Unset()

type NullableCIDTO

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

func NewNullableCIDTO

func NewNullableCIDTO(val *CIDTO) *NullableCIDTO

func (NullableCIDTO) Get

func (v NullableCIDTO) Get() *CIDTO

func (NullableCIDTO) IsSet

func (v NullableCIDTO) IsSet() bool

func (NullableCIDTO) MarshalJSON

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

func (*NullableCIDTO) Set

func (v *NullableCIDTO) Set(val *CIDTO)

func (*NullableCIDTO) UnmarshalJSON

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

func (*NullableCIDTO) Unset

func (v *NullableCIDTO) Unset()

type NullableChangeDataCell

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

func NewNullableChangeDataCell

func NewNullableChangeDataCell(val *ChangeDataCell) *NullableChangeDataCell

func (NullableChangeDataCell) Get

func (NullableChangeDataCell) IsSet

func (v NullableChangeDataCell) IsSet() bool

func (NullableChangeDataCell) MarshalJSON

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

func (*NullableChangeDataCell) Set

func (*NullableChangeDataCell) UnmarshalJSON

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

func (*NullableChangeDataCell) Unset

func (v *NullableChangeDataCell) Unset()

type NullableChangeDataRequest

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

func NewNullableChangeDataRequest

func NewNullableChangeDataRequest(val *ChangeDataRequest) *NullableChangeDataRequest

func (NullableChangeDataRequest) Get

func (NullableChangeDataRequest) IsSet

func (v NullableChangeDataRequest) IsSet() bool

func (NullableChangeDataRequest) MarshalJSON

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

func (*NullableChangeDataRequest) Set

func (*NullableChangeDataRequest) UnmarshalJSON

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

func (*NullableChangeDataRequest) Unset

func (v *NullableChangeDataRequest) Unset()

type NullableContext

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

func NewNullableContext

func NewNullableContext(val *Context) *NullableContext

func (NullableContext) Get

func (v NullableContext) Get() *Context

func (NullableContext) IsSet

func (v NullableContext) IsSet() bool

func (NullableContext) MarshalJSON

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

func (*NullableContext) Set

func (v *NullableContext) Set(val *Context)

func (*NullableContext) UnmarshalJSON

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

func (*NullableContext) Unset

func (v *NullableContext) Unset()

type NullableEditContextRequest

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

func NewNullableEditContextRequest

func NewNullableEditContextRequest(val *EditContextRequest) *NullableEditContextRequest

func (NullableEditContextRequest) Get

func (NullableEditContextRequest) IsSet

func (v NullableEditContextRequest) IsSet() bool

func (NullableEditContextRequest) MarshalJSON

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

func (*NullableEditContextRequest) Set

func (*NullableEditContextRequest) UnmarshalJSON

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

func (*NullableEditContextRequest) Unset

func (v *NullableEditContextRequest) Unset()

type NullableEdmContainerElementKind

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

func (NullableEdmContainerElementKind) Get

func (NullableEdmContainerElementKind) IsSet

func (NullableEdmContainerElementKind) MarshalJSON

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

func (*NullableEdmContainerElementKind) Set

func (*NullableEdmContainerElementKind) UnmarshalJSON

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

func (*NullableEdmContainerElementKind) Unset

type NullableEdmExpressionKind

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

func NewNullableEdmExpressionKind

func NewNullableEdmExpressionKind(val *EdmExpressionKind) *NullableEdmExpressionKind

func (NullableEdmExpressionKind) Get

func (NullableEdmExpressionKind) IsSet

func (v NullableEdmExpressionKind) IsSet() bool

func (NullableEdmExpressionKind) MarshalJSON

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

func (*NullableEdmExpressionKind) Set

func (*NullableEdmExpressionKind) UnmarshalJSON

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

func (*NullableEdmExpressionKind) Unset

func (v *NullableEdmExpressionKind) Unset()

type NullableEdmSchemaElementKind

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

func NewNullableEdmSchemaElementKind

func NewNullableEdmSchemaElementKind(val *EdmSchemaElementKind) *NullableEdmSchemaElementKind

func (NullableEdmSchemaElementKind) Get

func (NullableEdmSchemaElementKind) IsSet

func (NullableEdmSchemaElementKind) MarshalJSON

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

func (*NullableEdmSchemaElementKind) Set

func (*NullableEdmSchemaElementKind) UnmarshalJSON

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

func (*NullableEdmSchemaElementKind) Unset

func (v *NullableEdmSchemaElementKind) Unset()

type NullableEdmTypeKind

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

func NewNullableEdmTypeKind

func NewNullableEdmTypeKind(val *EdmTypeKind) *NullableEdmTypeKind

func (NullableEdmTypeKind) Get

func (NullableEdmTypeKind) IsSet

func (v NullableEdmTypeKind) IsSet() bool

func (NullableEdmTypeKind) MarshalJSON

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

func (*NullableEdmTypeKind) Set

func (v *NullableEdmTypeKind) Set(val *EdmTypeKind)

func (*NullableEdmTypeKind) UnmarshalJSON

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

func (*NullableEdmTypeKind) Unset

func (v *NullableEdmTypeKind) Unset()

type NullableEffectiveTraitDTO

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

func NewNullableEffectiveTraitDTO

func NewNullableEffectiveTraitDTO(val *EffectiveTraitDTO) *NullableEffectiveTraitDTO

func (NullableEffectiveTraitDTO) Get

func (NullableEffectiveTraitDTO) IsSet

func (v NullableEffectiveTraitDTO) IsSet() bool

func (NullableEffectiveTraitDTO) MarshalJSON

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

func (*NullableEffectiveTraitDTO) Set

func (*NullableEffectiveTraitDTO) UnmarshalJSON

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

func (*NullableEffectiveTraitDTO) Unset

func (v *NullableEffectiveTraitDTO) 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 NullableFragmentDTO

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

func NewNullableFragmentDTO

func NewNullableFragmentDTO(val *FragmentDTO) *NullableFragmentDTO

func (NullableFragmentDTO) Get

func (NullableFragmentDTO) IsSet

func (v NullableFragmentDTO) IsSet() bool

func (NullableFragmentDTO) MarshalJSON

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

func (*NullableFragmentDTO) Set

func (v *NullableFragmentDTO) Set(val *FragmentDTO)

func (*NullableFragmentDTO) UnmarshalJSON

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

func (*NullableFragmentDTO) Unset

func (v *NullableFragmentDTO) Unset()

type NullableGenericInboundAttribute

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

func (NullableGenericInboundAttribute) Get

func (NullableGenericInboundAttribute) IsSet

func (NullableGenericInboundAttribute) MarshalJSON

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

func (*NullableGenericInboundAttribute) Set

func (*NullableGenericInboundAttribute) UnmarshalJSON

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

func (*NullableGenericInboundAttribute) Unset

type NullableGenericInboundCI

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

func NewNullableGenericInboundCI

func NewNullableGenericInboundCI(val *GenericInboundCI) *NullableGenericInboundCI

func (NullableGenericInboundCI) Get

func (NullableGenericInboundCI) IsSet

func (v NullableGenericInboundCI) IsSet() bool

func (NullableGenericInboundCI) MarshalJSON

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

func (*NullableGenericInboundCI) Set

func (*NullableGenericInboundCI) UnmarshalJSON

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

func (*NullableGenericInboundCI) Unset

func (v *NullableGenericInboundCI) Unset()

type NullableGenericInboundCIIdMethod

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

func (NullableGenericInboundCIIdMethod) Get

func (NullableGenericInboundCIIdMethod) IsSet

func (NullableGenericInboundCIIdMethod) MarshalJSON

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

func (*NullableGenericInboundCIIdMethod) Set

func (*NullableGenericInboundCIIdMethod) UnmarshalJSON

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

func (*NullableGenericInboundCIIdMethod) Unset

type NullableGenericInboundData

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

func NewNullableGenericInboundData

func NewNullableGenericInboundData(val *GenericInboundData) *NullableGenericInboundData

func (NullableGenericInboundData) Get

func (NullableGenericInboundData) IsSet

func (v NullableGenericInboundData) IsSet() bool

func (NullableGenericInboundData) MarshalJSON

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

func (*NullableGenericInboundData) Set

func (*NullableGenericInboundData) UnmarshalJSON

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

func (*NullableGenericInboundData) Unset

func (v *NullableGenericInboundData) Unset()

type NullableGenericInboundRelation

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

func (NullableGenericInboundRelation) Get

func (NullableGenericInboundRelation) IsSet

func (NullableGenericInboundRelation) MarshalJSON

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

func (*NullableGenericInboundRelation) Set

func (*NullableGenericInboundRelation) UnmarshalJSON

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

func (*NullableGenericInboundRelation) Unset

func (v *NullableGenericInboundRelation) Unset()

type NullableGraphQLQuery

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

func NewNullableGraphQLQuery

func NewNullableGraphQLQuery(val *GraphQLQuery) *NullableGraphQLQuery

func (NullableGraphQLQuery) Get

func (NullableGraphQLQuery) IsSet

func (v NullableGraphQLQuery) IsSet() bool

func (NullableGraphQLQuery) MarshalJSON

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

func (*NullableGraphQLQuery) Set

func (v *NullableGraphQLQuery) Set(val *GraphQLQuery)

func (*NullableGraphQLQuery) UnmarshalJSON

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

func (*NullableGraphQLQuery) Unset

func (v *NullableGraphQLQuery) Unset()

type NullableGridViewColumn

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

func NewNullableGridViewColumn

func NewNullableGridViewColumn(val *GridViewColumn) *NullableGridViewColumn

func (NullableGridViewColumn) Get

func (NullableGridViewColumn) IsSet

func (v NullableGridViewColumn) IsSet() bool

func (NullableGridViewColumn) MarshalJSON

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

func (*NullableGridViewColumn) Set

func (*NullableGridViewColumn) UnmarshalJSON

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

func (*NullableGridViewColumn) Unset

func (v *NullableGridViewColumn) Unset()

type NullableGridViewConfiguration

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

func (NullableGridViewConfiguration) Get

func (NullableGridViewConfiguration) IsSet

func (NullableGridViewConfiguration) MarshalJSON

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

func (*NullableGridViewConfiguration) Set

func (*NullableGridViewConfiguration) UnmarshalJSON

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

func (*NullableGridViewConfiguration) Unset

func (v *NullableGridViewConfiguration) Unset()

type NullableIAttributeValue

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

func NewNullableIAttributeValue

func NewNullableIAttributeValue(val *IAttributeValue) *NullableIAttributeValue

func (NullableIAttributeValue) Get

func (NullableIAttributeValue) IsSet

func (v NullableIAttributeValue) IsSet() bool

func (NullableIAttributeValue) MarshalJSON

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

func (*NullableIAttributeValue) Set

func (*NullableIAttributeValue) UnmarshalJSON

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

func (*NullableIAttributeValue) Unset

func (v *NullableIAttributeValue) Unset()

type NullableIEdmEntityContainer

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

func NewNullableIEdmEntityContainer

func NewNullableIEdmEntityContainer(val *IEdmEntityContainer) *NullableIEdmEntityContainer

func (NullableIEdmEntityContainer) Get

func (NullableIEdmEntityContainer) IsSet

func (NullableIEdmEntityContainer) MarshalJSON

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

func (*NullableIEdmEntityContainer) Set

func (*NullableIEdmEntityContainer) UnmarshalJSON

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

func (*NullableIEdmEntityContainer) Unset

func (v *NullableIEdmEntityContainer) Unset()

type NullableIEdmEntityContainerElement

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

func (NullableIEdmEntityContainerElement) Get

func (NullableIEdmEntityContainerElement) IsSet

func (NullableIEdmEntityContainerElement) MarshalJSON

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

func (*NullableIEdmEntityContainerElement) Set

func (*NullableIEdmEntityContainerElement) UnmarshalJSON

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

func (*NullableIEdmEntityContainerElement) Unset

type NullableIEdmExpression

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

func NewNullableIEdmExpression

func NewNullableIEdmExpression(val *IEdmExpression) *NullableIEdmExpression

func (NullableIEdmExpression) Get

func (NullableIEdmExpression) IsSet

func (v NullableIEdmExpression) IsSet() bool

func (NullableIEdmExpression) MarshalJSON

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

func (*NullableIEdmExpression) Set

func (*NullableIEdmExpression) UnmarshalJSON

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

func (*NullableIEdmExpression) Unset

func (v *NullableIEdmExpression) Unset()

type NullableIEdmModel

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

func NewNullableIEdmModel

func NewNullableIEdmModel(val *IEdmModel) *NullableIEdmModel

func (NullableIEdmModel) Get

func (v NullableIEdmModel) Get() *IEdmModel

func (NullableIEdmModel) IsSet

func (v NullableIEdmModel) IsSet() bool

func (NullableIEdmModel) MarshalJSON

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

func (*NullableIEdmModel) Set

func (v *NullableIEdmModel) Set(val *IEdmModel)

func (*NullableIEdmModel) UnmarshalJSON

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

func (*NullableIEdmModel) Unset

func (v *NullableIEdmModel) Unset()

type NullableIEdmSchemaElement

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

func NewNullableIEdmSchemaElement

func NewNullableIEdmSchemaElement(val *IEdmSchemaElement) *NullableIEdmSchemaElement

func (NullableIEdmSchemaElement) Get

func (NullableIEdmSchemaElement) IsSet

func (v NullableIEdmSchemaElement) IsSet() bool

func (NullableIEdmSchemaElement) MarshalJSON

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

func (*NullableIEdmSchemaElement) Set

func (*NullableIEdmSchemaElement) UnmarshalJSON

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

func (*NullableIEdmSchemaElement) Unset

func (v *NullableIEdmSchemaElement) Unset()

type NullableIEdmTerm

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

func NewNullableIEdmTerm

func NewNullableIEdmTerm(val *IEdmTerm) *NullableIEdmTerm

func (NullableIEdmTerm) Get

func (v NullableIEdmTerm) Get() *IEdmTerm

func (NullableIEdmTerm) IsSet

func (v NullableIEdmTerm) IsSet() bool

func (NullableIEdmTerm) MarshalJSON

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

func (*NullableIEdmTerm) Set

func (v *NullableIEdmTerm) Set(val *IEdmTerm)

func (*NullableIEdmTerm) UnmarshalJSON

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

func (*NullableIEdmTerm) Unset

func (v *NullableIEdmTerm) Unset()

type NullableIEdmType

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

func NewNullableIEdmType

func NewNullableIEdmType(val *IEdmType) *NullableIEdmType

func (NullableIEdmType) Get

func (v NullableIEdmType) Get() *IEdmType

func (NullableIEdmType) IsSet

func (v NullableIEdmType) IsSet() bool

func (NullableIEdmType) MarshalJSON

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

func (*NullableIEdmType) Set

func (v *NullableIEdmType) Set(val *IEdmType)

func (*NullableIEdmType) UnmarshalJSON

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

func (*NullableIEdmType) Unset

func (v *NullableIEdmType) Unset()

type NullableIEdmTypeReference

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

func NewNullableIEdmTypeReference

func NewNullableIEdmTypeReference(val *IEdmTypeReference) *NullableIEdmTypeReference

func (NullableIEdmTypeReference) Get

func (NullableIEdmTypeReference) IsSet

func (v NullableIEdmTypeReference) IsSet() bool

func (NullableIEdmTypeReference) MarshalJSON

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

func (*NullableIEdmTypeReference) Set

func (*NullableIEdmTypeReference) UnmarshalJSON

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

func (*NullableIEdmTypeReference) Unset

func (v *NullableIEdmTypeReference) Unset()

type NullableIEdmVocabularyAnnotation

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

func (NullableIEdmVocabularyAnnotation) Get

func (NullableIEdmVocabularyAnnotation) IsSet

func (NullableIEdmVocabularyAnnotation) MarshalJSON

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

func (*NullableIEdmVocabularyAnnotation) Set

func (*NullableIEdmVocabularyAnnotation) UnmarshalJSON

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

func (*NullableIEdmVocabularyAnnotation) Unset

type NullableILoadConfig

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

func NewNullableILoadConfig

func NewNullableILoadConfig(val *ILoadConfig) *NullableILoadConfig

func (NullableILoadConfig) Get

func (NullableILoadConfig) IsSet

func (v NullableILoadConfig) IsSet() bool

func (NullableILoadConfig) MarshalJSON

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

func (*NullableILoadConfig) Set

func (v *NullableILoadConfig) Set(val *ILoadConfig)

func (*NullableILoadConfig) UnmarshalJSON

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

func (*NullableILoadConfig) Unset

func (v *NullableILoadConfig) Unset()

type NullableInboundIDMethodByAttribute

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

func (NullableInboundIDMethodByAttribute) Get

func (NullableInboundIDMethodByAttribute) IsSet

func (NullableInboundIDMethodByAttribute) MarshalJSON

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

func (*NullableInboundIDMethodByAttribute) Set

func (*NullableInboundIDMethodByAttribute) UnmarshalJSON

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

func (*NullableInboundIDMethodByAttribute) Unset

type NullableInboundIDMethodByAttributeModifiers

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

func (NullableInboundIDMethodByAttributeModifiers) Get

func (NullableInboundIDMethodByAttributeModifiers) IsSet

func (NullableInboundIDMethodByAttributeModifiers) MarshalJSON

func (*NullableInboundIDMethodByAttributeModifiers) Set

func (*NullableInboundIDMethodByAttributeModifiers) UnmarshalJSON

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

func (*NullableInboundIDMethodByAttributeModifiers) Unset

type NullableInboundIDMethodByByUnion

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

func (NullableInboundIDMethodByByUnion) Get

func (NullableInboundIDMethodByByUnion) IsSet

func (NullableInboundIDMethodByByUnion) MarshalJSON

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

func (*NullableInboundIDMethodByByUnion) Set

func (*NullableInboundIDMethodByByUnion) UnmarshalJSON

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

func (*NullableInboundIDMethodByByUnion) Unset

type NullableInboundIDMethodByByUnionInnerInner

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

func (NullableInboundIDMethodByByUnionInnerInner) Get

func (NullableInboundIDMethodByByUnionInnerInner) IsSet

func (NullableInboundIDMethodByByUnionInnerInner) MarshalJSON

func (*NullableInboundIDMethodByByUnionInnerInner) Set

func (*NullableInboundIDMethodByByUnionInnerInner) UnmarshalJSON

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

func (*NullableInboundIDMethodByByUnionInnerInner) Unset

type NullableInboundIDMethodByData

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

func (NullableInboundIDMethodByData) Get

func (NullableInboundIDMethodByData) IsSet

func (NullableInboundIDMethodByData) MarshalJSON

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

func (*NullableInboundIDMethodByData) Set

func (*NullableInboundIDMethodByData) UnmarshalJSON

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

func (*NullableInboundIDMethodByData) Unset

func (v *NullableInboundIDMethodByData) Unset()

type NullableInboundIDMethodByIntersect

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

func (NullableInboundIDMethodByIntersect) Get

func (NullableInboundIDMethodByIntersect) IsSet

func (NullableInboundIDMethodByIntersect) MarshalJSON

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

func (*NullableInboundIDMethodByIntersect) Set

func (*NullableInboundIDMethodByIntersect) UnmarshalJSON

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

func (*NullableInboundIDMethodByIntersect) Unset

type NullableInboundIDMethodByRelatedTempID

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

func (NullableInboundIDMethodByRelatedTempID) Get

func (NullableInboundIDMethodByRelatedTempID) IsSet

func (NullableInboundIDMethodByRelatedTempID) MarshalJSON

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

func (*NullableInboundIDMethodByRelatedTempID) Set

func (*NullableInboundIDMethodByRelatedTempID) UnmarshalJSON

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

func (*NullableInboundIDMethodByRelatedTempID) Unset

type NullableInboundIDMethodByTemporaryCIID

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

func (NullableInboundIDMethodByTemporaryCIID) Get

func (NullableInboundIDMethodByTemporaryCIID) IsSet

func (NullableInboundIDMethodByTemporaryCIID) MarshalJSON

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

func (*NullableInboundIDMethodByTemporaryCIID) Set

func (*NullableInboundIDMethodByTemporaryCIID) UnmarshalJSON

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

func (*NullableInboundIDMethodByTemporaryCIID) 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 NullableLayerDTO

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

func NewNullableLayerDTO

func NewNullableLayerDTO(val *LayerDTO) *NullableLayerDTO

func (NullableLayerDTO) Get

func (v NullableLayerDTO) Get() *LayerDTO

func (NullableLayerDTO) IsSet

func (v NullableLayerDTO) IsSet() bool

func (NullableLayerDTO) MarshalJSON

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

func (*NullableLayerDTO) Set

func (v *NullableLayerDTO) Set(val *LayerDTO)

func (*NullableLayerDTO) UnmarshalJSON

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

func (*NullableLayerDTO) Unset

func (v *NullableLayerDTO) Unset()

type NullableNoFoundTargetCIHandling

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

func (NullableNoFoundTargetCIHandling) Get

func (NullableNoFoundTargetCIHandling) IsSet

func (NullableNoFoundTargetCIHandling) MarshalJSON

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

func (*NullableNoFoundTargetCIHandling) Set

func (*NullableNoFoundTargetCIHandling) UnmarshalJSON

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

func (*NullableNoFoundTargetCIHandling) Unset

type NullableODataEntitySetInfo

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

func NewNullableODataEntitySetInfo

func NewNullableODataEntitySetInfo(val *ODataEntitySetInfo) *NullableODataEntitySetInfo

func (NullableODataEntitySetInfo) Get

func (NullableODataEntitySetInfo) IsSet

func (v NullableODataEntitySetInfo) IsSet() bool

func (NullableODataEntitySetInfo) MarshalJSON

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

func (*NullableODataEntitySetInfo) Set

func (*NullableODataEntitySetInfo) UnmarshalJSON

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

func (*NullableODataEntitySetInfo) Unset

func (v *NullableODataEntitySetInfo) Unset()

type NullableODataFunctionImportInfo

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

func (NullableODataFunctionImportInfo) Get

func (NullableODataFunctionImportInfo) IsSet

func (NullableODataFunctionImportInfo) MarshalJSON

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

func (*NullableODataFunctionImportInfo) Set

func (*NullableODataFunctionImportInfo) UnmarshalJSON

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

func (*NullableODataFunctionImportInfo) Unset

type NullableODataServiceDocument

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

func NewNullableODataServiceDocument

func NewNullableODataServiceDocument(val *ODataServiceDocument) *NullableODataServiceDocument

func (NullableODataServiceDocument) Get

func (NullableODataServiceDocument) IsSet

func (NullableODataServiceDocument) MarshalJSON

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

func (*NullableODataServiceDocument) Set

func (*NullableODataServiceDocument) UnmarshalJSON

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

func (*NullableODataServiceDocument) Unset

func (v *NullableODataServiceDocument) Unset()

type NullableODataSingletonInfo

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

func NewNullableODataSingletonInfo

func NewNullableODataSingletonInfo(val *ODataSingletonInfo) *NullableODataSingletonInfo

func (NullableODataSingletonInfo) Get

func (NullableODataSingletonInfo) IsSet

func (v NullableODataSingletonInfo) IsSet() bool

func (NullableODataSingletonInfo) MarshalJSON

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

func (*NullableODataSingletonInfo) Set

func (*NullableODataSingletonInfo) UnmarshalJSON

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

func (*NullableODataSingletonInfo) Unset

func (v *NullableODataSingletonInfo) Unset()

type NullableODataTypeAnnotation

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

func NewNullableODataTypeAnnotation

func NewNullableODataTypeAnnotation(val *ODataTypeAnnotation) *NullableODataTypeAnnotation

func (NullableODataTypeAnnotation) Get

func (NullableODataTypeAnnotation) IsSet

func (NullableODataTypeAnnotation) MarshalJSON

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

func (*NullableODataTypeAnnotation) Set

func (*NullableODataTypeAnnotation) UnmarshalJSON

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

func (*NullableODataTypeAnnotation) Unset

func (v *NullableODataTypeAnnotation) Unset()

type NullablePredicateDTO

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

func NewNullablePredicateDTO

func NewNullablePredicateDTO(val *PredicateDTO) *NullablePredicateDTO

func (NullablePredicateDTO) Get

func (NullablePredicateDTO) IsSet

func (v NullablePredicateDTO) IsSet() bool

func (NullablePredicateDTO) MarshalJSON

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

func (*NullablePredicateDTO) Set

func (v *NullablePredicateDTO) Set(val *PredicateDTO)

func (*NullablePredicateDTO) UnmarshalJSON

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

func (*NullablePredicateDTO) Unset

func (v *NullablePredicateDTO) Unset()

type NullableProblemDetails

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

func NewNullableProblemDetails

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get

func (NullableProblemDetails) IsSet

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON

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

func (*NullableProblemDetails) Set

func (*NullableProblemDetails) UnmarshalJSON

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

func (*NullableProblemDetails) Unset

func (v *NullableProblemDetails) Unset()

type NullableRelatedCIDTO

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

func NewNullableRelatedCIDTO

func NewNullableRelatedCIDTO(val *RelatedCIDTO) *NullableRelatedCIDTO

func (NullableRelatedCIDTO) Get

func (NullableRelatedCIDTO) IsSet

func (v NullableRelatedCIDTO) IsSet() bool

func (NullableRelatedCIDTO) MarshalJSON

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

func (*NullableRelatedCIDTO) Set

func (v *NullableRelatedCIDTO) Set(val *RelatedCIDTO)

func (*NullableRelatedCIDTO) UnmarshalJSON

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

func (*NullableRelatedCIDTO) Unset

func (v *NullableRelatedCIDTO) Unset()

type NullableRelationDTO

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

func NewNullableRelationDTO

func NewNullableRelationDTO(val *RelationDTO) *NullableRelationDTO

func (NullableRelationDTO) Get

func (NullableRelationDTO) IsSet

func (v NullableRelationDTO) IsSet() bool

func (NullableRelationDTO) MarshalJSON

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

func (*NullableRelationDTO) Set

func (v *NullableRelationDTO) Set(val *RelationDTO)

func (*NullableRelationDTO) UnmarshalJSON

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

func (*NullableRelationDTO) Unset

func (v *NullableRelationDTO) Unset()

type NullableRelationState

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

func NewNullableRelationState

func NewNullableRelationState(val *RelationState) *NullableRelationState

func (NullableRelationState) Get

func (NullableRelationState) IsSet

func (v NullableRelationState) IsSet() bool

func (NullableRelationState) MarshalJSON

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

func (*NullableRelationState) Set

func (v *NullableRelationState) Set(val *RelationState)

func (*NullableRelationState) UnmarshalJSON

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

func (*NullableRelationState) Unset

func (v *NullableRelationState) Unset()

type NullableSameTargetCIHandling

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

func NewNullableSameTargetCIHandling

func NewNullableSameTargetCIHandling(val *SameTargetCIHandling) *NullableSameTargetCIHandling

func (NullableSameTargetCIHandling) Get

func (NullableSameTargetCIHandling) IsSet

func (NullableSameTargetCIHandling) MarshalJSON

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

func (*NullableSameTargetCIHandling) Set

func (*NullableSameTargetCIHandling) UnmarshalJSON

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

func (*NullableSameTargetCIHandling) Unset

func (v *NullableSameTargetCIHandling) Unset()

type NullableSameTempIDHandling

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

func NewNullableSameTempIDHandling

func NewNullableSameTempIDHandling(val *SameTempIDHandling) *NullableSameTempIDHandling

func (NullableSameTempIDHandling) Get

func (NullableSameTempIDHandling) IsSet

func (v NullableSameTempIDHandling) IsSet() bool

func (NullableSameTempIDHandling) MarshalJSON

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

func (*NullableSameTempIDHandling) Set

func (*NullableSameTempIDHandling) UnmarshalJSON

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

func (*NullableSameTempIDHandling) Unset

func (v *NullableSameTempIDHandling) Unset()

type NullableSparseRow

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

func NewNullableSparseRow

func NewNullableSparseRow(val *SparseRow) *NullableSparseRow

func (NullableSparseRow) Get

func (v NullableSparseRow) Get() *SparseRow

func (NullableSparseRow) IsSet

func (v NullableSparseRow) IsSet() bool

func (NullableSparseRow) MarshalJSON

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

func (*NullableSparseRow) Set

func (v *NullableSparseRow) Set(val *SparseRow)

func (*NullableSparseRow) UnmarshalJSON

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

func (*NullableSparseRow) Unset

func (v *NullableSparseRow) 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 ODataEntitySetInfo

type ODataEntitySetInfo struct {
	TypeAnnotation *ODataTypeAnnotation `json:"typeAnnotation,omitempty"`
	Url            NullableString       `json:"url,omitempty"`
	Name           NullableString       `json:"name,omitempty"`
	Title          NullableString       `json:"title,omitempty"`
}

ODataEntitySetInfo struct for ODataEntitySetInfo

func NewODataEntitySetInfo

func NewODataEntitySetInfo() *ODataEntitySetInfo

NewODataEntitySetInfo instantiates a new ODataEntitySetInfo 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 NewODataEntitySetInfoWithDefaults

func NewODataEntitySetInfoWithDefaults() *ODataEntitySetInfo

NewODataEntitySetInfoWithDefaults instantiates a new ODataEntitySetInfo 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 (*ODataEntitySetInfo) GetName

func (o *ODataEntitySetInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataEntitySetInfo) GetNameOk

func (o *ODataEntitySetInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataEntitySetInfo) GetTitle

func (o *ODataEntitySetInfo) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataEntitySetInfo) GetTitleOk

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

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataEntitySetInfo) GetTypeAnnotation

func (o *ODataEntitySetInfo) GetTypeAnnotation() ODataTypeAnnotation

GetTypeAnnotation returns the TypeAnnotation field value if set, zero value otherwise.

func (*ODataEntitySetInfo) GetTypeAnnotationOk

func (o *ODataEntitySetInfo) GetTypeAnnotationOk() (*ODataTypeAnnotation, bool)

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

func (*ODataEntitySetInfo) GetUrl

func (o *ODataEntitySetInfo) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataEntitySetInfo) GetUrlOk

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

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataEntitySetInfo) HasName

func (o *ODataEntitySetInfo) HasName() bool

HasName returns a boolean if a field has been set.

func (*ODataEntitySetInfo) HasTitle

func (o *ODataEntitySetInfo) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ODataEntitySetInfo) HasTypeAnnotation

func (o *ODataEntitySetInfo) HasTypeAnnotation() bool

HasTypeAnnotation returns a boolean if a field has been set.

func (*ODataEntitySetInfo) HasUrl

func (o *ODataEntitySetInfo) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ODataEntitySetInfo) MarshalJSON

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

func (*ODataEntitySetInfo) SetName

func (o *ODataEntitySetInfo) SetName(v string)

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

func (*ODataEntitySetInfo) SetNameNil

func (o *ODataEntitySetInfo) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ODataEntitySetInfo) SetTitle

func (o *ODataEntitySetInfo) SetTitle(v string)

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

func (*ODataEntitySetInfo) SetTitleNil

func (o *ODataEntitySetInfo) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*ODataEntitySetInfo) SetTypeAnnotation

func (o *ODataEntitySetInfo) SetTypeAnnotation(v ODataTypeAnnotation)

SetTypeAnnotation gets a reference to the given ODataTypeAnnotation and assigns it to the TypeAnnotation field.

func (*ODataEntitySetInfo) SetUrl

func (o *ODataEntitySetInfo) SetUrl(v string)

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

func (*ODataEntitySetInfo) SetUrlNil

func (o *ODataEntitySetInfo) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (ODataEntitySetInfo) ToMap

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

func (*ODataEntitySetInfo) UnsetName

func (o *ODataEntitySetInfo) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*ODataEntitySetInfo) UnsetTitle

func (o *ODataEntitySetInfo) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*ODataEntitySetInfo) UnsetUrl

func (o *ODataEntitySetInfo) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type ODataFunctionImportInfo

type ODataFunctionImportInfo struct {
	TypeAnnotation *ODataTypeAnnotation `json:"typeAnnotation,omitempty"`
	Url            NullableString       `json:"url,omitempty"`
	Name           NullableString       `json:"name,omitempty"`
	Title          NullableString       `json:"title,omitempty"`
}

ODataFunctionImportInfo struct for ODataFunctionImportInfo

func NewODataFunctionImportInfo

func NewODataFunctionImportInfo() *ODataFunctionImportInfo

NewODataFunctionImportInfo instantiates a new ODataFunctionImportInfo 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 NewODataFunctionImportInfoWithDefaults

func NewODataFunctionImportInfoWithDefaults() *ODataFunctionImportInfo

NewODataFunctionImportInfoWithDefaults instantiates a new ODataFunctionImportInfo 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 (*ODataFunctionImportInfo) GetName

func (o *ODataFunctionImportInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataFunctionImportInfo) GetNameOk

func (o *ODataFunctionImportInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataFunctionImportInfo) GetTitle

func (o *ODataFunctionImportInfo) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataFunctionImportInfo) GetTitleOk

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

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataFunctionImportInfo) GetTypeAnnotation

func (o *ODataFunctionImportInfo) GetTypeAnnotation() ODataTypeAnnotation

GetTypeAnnotation returns the TypeAnnotation field value if set, zero value otherwise.

func (*ODataFunctionImportInfo) GetTypeAnnotationOk

func (o *ODataFunctionImportInfo) GetTypeAnnotationOk() (*ODataTypeAnnotation, bool)

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

func (*ODataFunctionImportInfo) GetUrl

func (o *ODataFunctionImportInfo) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataFunctionImportInfo) GetUrlOk

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

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataFunctionImportInfo) HasName

func (o *ODataFunctionImportInfo) HasName() bool

HasName returns a boolean if a field has been set.

func (*ODataFunctionImportInfo) HasTitle

func (o *ODataFunctionImportInfo) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ODataFunctionImportInfo) HasTypeAnnotation

func (o *ODataFunctionImportInfo) HasTypeAnnotation() bool

HasTypeAnnotation returns a boolean if a field has been set.

func (*ODataFunctionImportInfo) HasUrl

func (o *ODataFunctionImportInfo) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ODataFunctionImportInfo) MarshalJSON

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

func (*ODataFunctionImportInfo) SetName

func (o *ODataFunctionImportInfo) SetName(v string)

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

func (*ODataFunctionImportInfo) SetNameNil

func (o *ODataFunctionImportInfo) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ODataFunctionImportInfo) SetTitle

func (o *ODataFunctionImportInfo) SetTitle(v string)

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

func (*ODataFunctionImportInfo) SetTitleNil

func (o *ODataFunctionImportInfo) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*ODataFunctionImportInfo) SetTypeAnnotation

func (o *ODataFunctionImportInfo) SetTypeAnnotation(v ODataTypeAnnotation)

SetTypeAnnotation gets a reference to the given ODataTypeAnnotation and assigns it to the TypeAnnotation field.

func (*ODataFunctionImportInfo) SetUrl

func (o *ODataFunctionImportInfo) SetUrl(v string)

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

func (*ODataFunctionImportInfo) SetUrlNil

func (o *ODataFunctionImportInfo) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (ODataFunctionImportInfo) ToMap

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

func (*ODataFunctionImportInfo) UnsetName

func (o *ODataFunctionImportInfo) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*ODataFunctionImportInfo) UnsetTitle

func (o *ODataFunctionImportInfo) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*ODataFunctionImportInfo) UnsetUrl

func (o *ODataFunctionImportInfo) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type ODataServiceDocument

type ODataServiceDocument struct {
	TypeAnnotation  *ODataTypeAnnotation      `json:"typeAnnotation,omitempty"`
	EntitySets      []ODataEntitySetInfo      `json:"entitySets,omitempty"`
	Singletons      []ODataSingletonInfo      `json:"singletons,omitempty"`
	FunctionImports []ODataFunctionImportInfo `json:"functionImports,omitempty"`
}

ODataServiceDocument struct for ODataServiceDocument

func NewODataServiceDocument

func NewODataServiceDocument() *ODataServiceDocument

NewODataServiceDocument instantiates a new ODataServiceDocument 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 NewODataServiceDocumentWithDefaults

func NewODataServiceDocumentWithDefaults() *ODataServiceDocument

NewODataServiceDocumentWithDefaults instantiates a new ODataServiceDocument 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 (*ODataServiceDocument) GetEntitySets

func (o *ODataServiceDocument) GetEntitySets() []ODataEntitySetInfo

GetEntitySets returns the EntitySets field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataServiceDocument) GetEntitySetsOk

func (o *ODataServiceDocument) GetEntitySetsOk() ([]ODataEntitySetInfo, bool)

GetEntitySetsOk returns a tuple with the EntitySets field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataServiceDocument) GetFunctionImports

func (o *ODataServiceDocument) GetFunctionImports() []ODataFunctionImportInfo

GetFunctionImports returns the FunctionImports field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataServiceDocument) GetFunctionImportsOk

func (o *ODataServiceDocument) GetFunctionImportsOk() ([]ODataFunctionImportInfo, bool)

GetFunctionImportsOk returns a tuple with the FunctionImports field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataServiceDocument) GetSingletons

func (o *ODataServiceDocument) GetSingletons() []ODataSingletonInfo

GetSingletons returns the Singletons field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataServiceDocument) GetSingletonsOk

func (o *ODataServiceDocument) GetSingletonsOk() ([]ODataSingletonInfo, bool)

GetSingletonsOk returns a tuple with the Singletons field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataServiceDocument) GetTypeAnnotation

func (o *ODataServiceDocument) GetTypeAnnotation() ODataTypeAnnotation

GetTypeAnnotation returns the TypeAnnotation field value if set, zero value otherwise.

func (*ODataServiceDocument) GetTypeAnnotationOk

func (o *ODataServiceDocument) GetTypeAnnotationOk() (*ODataTypeAnnotation, bool)

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

func (*ODataServiceDocument) HasEntitySets

func (o *ODataServiceDocument) HasEntitySets() bool

HasEntitySets returns a boolean if a field has been set.

func (*ODataServiceDocument) HasFunctionImports

func (o *ODataServiceDocument) HasFunctionImports() bool

HasFunctionImports returns a boolean if a field has been set.

func (*ODataServiceDocument) HasSingletons

func (o *ODataServiceDocument) HasSingletons() bool

HasSingletons returns a boolean if a field has been set.

func (*ODataServiceDocument) HasTypeAnnotation

func (o *ODataServiceDocument) HasTypeAnnotation() bool

HasTypeAnnotation returns a boolean if a field has been set.

func (ODataServiceDocument) MarshalJSON

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

func (*ODataServiceDocument) SetEntitySets

func (o *ODataServiceDocument) SetEntitySets(v []ODataEntitySetInfo)

SetEntitySets gets a reference to the given []ODataEntitySetInfo and assigns it to the EntitySets field.

func (*ODataServiceDocument) SetFunctionImports

func (o *ODataServiceDocument) SetFunctionImports(v []ODataFunctionImportInfo)

SetFunctionImports gets a reference to the given []ODataFunctionImportInfo and assigns it to the FunctionImports field.

func (*ODataServiceDocument) SetSingletons

func (o *ODataServiceDocument) SetSingletons(v []ODataSingletonInfo)

SetSingletons gets a reference to the given []ODataSingletonInfo and assigns it to the Singletons field.

func (*ODataServiceDocument) SetTypeAnnotation

func (o *ODataServiceDocument) SetTypeAnnotation(v ODataTypeAnnotation)

SetTypeAnnotation gets a reference to the given ODataTypeAnnotation and assigns it to the TypeAnnotation field.

func (ODataServiceDocument) ToMap

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

type ODataSingletonInfo

type ODataSingletonInfo struct {
	TypeAnnotation *ODataTypeAnnotation `json:"typeAnnotation,omitempty"`
	Url            NullableString       `json:"url,omitempty"`
	Name           NullableString       `json:"name,omitempty"`
	Title          NullableString       `json:"title,omitempty"`
}

ODataSingletonInfo struct for ODataSingletonInfo

func NewODataSingletonInfo

func NewODataSingletonInfo() *ODataSingletonInfo

NewODataSingletonInfo instantiates a new ODataSingletonInfo 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 NewODataSingletonInfoWithDefaults

func NewODataSingletonInfoWithDefaults() *ODataSingletonInfo

NewODataSingletonInfoWithDefaults instantiates a new ODataSingletonInfo 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 (*ODataSingletonInfo) GetName

func (o *ODataSingletonInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataSingletonInfo) GetNameOk

func (o *ODataSingletonInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataSingletonInfo) GetTitle

func (o *ODataSingletonInfo) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataSingletonInfo) GetTitleOk

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

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataSingletonInfo) GetTypeAnnotation

func (o *ODataSingletonInfo) GetTypeAnnotation() ODataTypeAnnotation

GetTypeAnnotation returns the TypeAnnotation field value if set, zero value otherwise.

func (*ODataSingletonInfo) GetTypeAnnotationOk

func (o *ODataSingletonInfo) GetTypeAnnotationOk() (*ODataTypeAnnotation, bool)

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

func (*ODataSingletonInfo) GetUrl

func (o *ODataSingletonInfo) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataSingletonInfo) GetUrlOk

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

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataSingletonInfo) HasName

func (o *ODataSingletonInfo) HasName() bool

HasName returns a boolean if a field has been set.

func (*ODataSingletonInfo) HasTitle

func (o *ODataSingletonInfo) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ODataSingletonInfo) HasTypeAnnotation

func (o *ODataSingletonInfo) HasTypeAnnotation() bool

HasTypeAnnotation returns a boolean if a field has been set.

func (*ODataSingletonInfo) HasUrl

func (o *ODataSingletonInfo) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ODataSingletonInfo) MarshalJSON

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

func (*ODataSingletonInfo) SetName

func (o *ODataSingletonInfo) SetName(v string)

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

func (*ODataSingletonInfo) SetNameNil

func (o *ODataSingletonInfo) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ODataSingletonInfo) SetTitle

func (o *ODataSingletonInfo) SetTitle(v string)

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

func (*ODataSingletonInfo) SetTitleNil

func (o *ODataSingletonInfo) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*ODataSingletonInfo) SetTypeAnnotation

func (o *ODataSingletonInfo) SetTypeAnnotation(v ODataTypeAnnotation)

SetTypeAnnotation gets a reference to the given ODataTypeAnnotation and assigns it to the TypeAnnotation field.

func (*ODataSingletonInfo) SetUrl

func (o *ODataSingletonInfo) SetUrl(v string)

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

func (*ODataSingletonInfo) SetUrlNil

func (o *ODataSingletonInfo) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (ODataSingletonInfo) ToMap

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

func (*ODataSingletonInfo) UnsetName

func (o *ODataSingletonInfo) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*ODataSingletonInfo) UnsetTitle

func (o *ODataSingletonInfo) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*ODataSingletonInfo) UnsetUrl

func (o *ODataSingletonInfo) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type ODataTypeAnnotation

type ODataTypeAnnotation struct {
	TypeName NullableString `json:"typeName,omitempty"`
}

ODataTypeAnnotation struct for ODataTypeAnnotation

func NewODataTypeAnnotation

func NewODataTypeAnnotation() *ODataTypeAnnotation

NewODataTypeAnnotation instantiates a new ODataTypeAnnotation 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 NewODataTypeAnnotationWithDefaults

func NewODataTypeAnnotationWithDefaults() *ODataTypeAnnotation

NewODataTypeAnnotationWithDefaults instantiates a new ODataTypeAnnotation 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 (*ODataTypeAnnotation) GetTypeName

func (o *ODataTypeAnnotation) GetTypeName() string

GetTypeName returns the TypeName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ODataTypeAnnotation) GetTypeNameOk

func (o *ODataTypeAnnotation) GetTypeNameOk() (*string, bool)

GetTypeNameOk returns a tuple with the TypeName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ODataTypeAnnotation) HasTypeName

func (o *ODataTypeAnnotation) HasTypeName() bool

HasTypeName returns a boolean if a field has been set.

func (ODataTypeAnnotation) MarshalJSON

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

func (*ODataTypeAnnotation) SetTypeName

func (o *ODataTypeAnnotation) SetTypeName(v string)

SetTypeName gets a reference to the given NullableString and assigns it to the TypeName field.

func (*ODataTypeAnnotation) SetTypeNameNil

func (o *ODataTypeAnnotation) SetTypeNameNil()

SetTypeNameNil sets the value for TypeName to be an explicit nil

func (ODataTypeAnnotation) ToMap

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

func (*ODataTypeAnnotation) UnsetTypeName

func (o *ODataTypeAnnotation) UnsetTypeName()

UnsetTypeName ensures that no value is present for TypeName, not even an explicit nil

type OKPluginGenericJSONIngestApiService

type OKPluginGenericJSONIngestApiService service

OKPluginGenericJSONIngestApiService OKPluginGenericJSONIngestApi service

func (*OKPluginGenericJSONIngestApiService) ManageContextGetAllContexts

ManageContextGetAllContexts Method for ManageContextGetAllContexts

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

func (*OKPluginGenericJSONIngestApiService) ManageContextGetAllContextsExecute

func (a *OKPluginGenericJSONIngestApiService) ManageContextGetAllContextsExecute(r ApiManageContextGetAllContextsRequest) ([]map[string]interface{}, *http.Response, error)

Execute executes the request

@return []map[string]interface{}

func (*OKPluginGenericJSONIngestApiService) ManageContextGetContext

ManageContextGetContext Method for ManageContextGetContext

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

func (*OKPluginGenericJSONIngestApiService) ManageContextGetContextExecute

func (a *OKPluginGenericJSONIngestApiService) ManageContextGetContextExecute(r ApiManageContextGetContextRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OKPluginGenericJSONIngestApiService) ManageContextRemoveContext

ManageContextRemoveContext Method for ManageContextRemoveContext

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

func (*OKPluginGenericJSONIngestApiService) ManageContextRemoveContextExecute

Execute executes the request

@return bool

func (*OKPluginGenericJSONIngestApiService) ManageContextUpsertContext

ManageContextUpsertContext Method for ManageContextUpsertContext

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

func (*OKPluginGenericJSONIngestApiService) ManageContextUpsertContextExecute

func (a *OKPluginGenericJSONIngestApiService) ManageContextUpsertContextExecute(r ApiManageContextUpsertContextRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OKPluginGenericJSONIngestApiService) PassiveDataIngest

PassiveDataIngest Method for PassiveDataIngest

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

func (*OKPluginGenericJSONIngestApiService) PassiveDataIngestExecute

Execute executes the request

type PredicateDTO

type PredicateDTO struct {
	Id          NullableString `json:"id,omitempty"`
	WordingFrom NullableString `json:"wordingFrom,omitempty"`
	WordingTo   NullableString `json:"wordingTo,omitempty"`
}

PredicateDTO struct for PredicateDTO

func NewPredicateDTO

func NewPredicateDTO() *PredicateDTO

NewPredicateDTO instantiates a new PredicateDTO 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 NewPredicateDTOWithDefaults

func NewPredicateDTOWithDefaults() *PredicateDTO

NewPredicateDTOWithDefaults instantiates a new PredicateDTO 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 (*PredicateDTO) GetId

func (o *PredicateDTO) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PredicateDTO) GetIdOk

func (o *PredicateDTO) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PredicateDTO) GetWordingFrom

func (o *PredicateDTO) GetWordingFrom() string

GetWordingFrom returns the WordingFrom field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PredicateDTO) GetWordingFromOk

func (o *PredicateDTO) GetWordingFromOk() (*string, bool)

GetWordingFromOk returns a tuple with the WordingFrom field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PredicateDTO) GetWordingTo

func (o *PredicateDTO) GetWordingTo() string

GetWordingTo returns the WordingTo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PredicateDTO) GetWordingToOk

func (o *PredicateDTO) GetWordingToOk() (*string, bool)

GetWordingToOk returns a tuple with the WordingTo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PredicateDTO) HasId

func (o *PredicateDTO) HasId() bool

HasId returns a boolean if a field has been set.

func (*PredicateDTO) HasWordingFrom

func (o *PredicateDTO) HasWordingFrom() bool

HasWordingFrom returns a boolean if a field has been set.

func (*PredicateDTO) HasWordingTo

func (o *PredicateDTO) HasWordingTo() bool

HasWordingTo returns a boolean if a field has been set.

func (PredicateDTO) MarshalJSON

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

func (*PredicateDTO) SetId

func (o *PredicateDTO) SetId(v string)

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

func (*PredicateDTO) SetIdNil

func (o *PredicateDTO) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*PredicateDTO) SetWordingFrom

func (o *PredicateDTO) SetWordingFrom(v string)

SetWordingFrom gets a reference to the given NullableString and assigns it to the WordingFrom field.

func (*PredicateDTO) SetWordingFromNil

func (o *PredicateDTO) SetWordingFromNil()

SetWordingFromNil sets the value for WordingFrom to be an explicit nil

func (*PredicateDTO) SetWordingTo

func (o *PredicateDTO) SetWordingTo(v string)

SetWordingTo gets a reference to the given NullableString and assigns it to the WordingTo field.

func (*PredicateDTO) SetWordingToNil

func (o *PredicateDTO) SetWordingToNil()

SetWordingToNil sets the value for WordingTo to be an explicit nil

func (*PredicateDTO) UnsetId

func (o *PredicateDTO) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*PredicateDTO) UnsetWordingFrom

func (o *PredicateDTO) UnsetWordingFrom()

UnsetWordingFrom ensures that no value is present for WordingFrom, not even an explicit nil

func (*PredicateDTO) UnsetWordingTo

func (o *PredicateDTO) UnsetWordingTo()

UnsetWordingTo ensures that no value is present for WordingTo, not even an explicit nil

type ProblemDetails

type ProblemDetails struct {
	Type     NullableString `json:"type,omitempty"`
	Title    NullableString `json:"title,omitempty"`
	Status   NullableInt32  `json:"status,omitempty"`
	Detail   NullableString `json:"detail,omitempty"`
	Instance NullableString `json:"instance,omitempty"`
}

ProblemDetails struct for ProblemDetails

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

NewProblemDetails instantiates a new ProblemDetails 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 NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

NewProblemDetailsWithDefaults instantiates a new ProblemDetails 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 (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetDetailOk

func (o *ProblemDetails) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetInstanceOk

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetStatusOk

func (o *ProblemDetails) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetTitleOk

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

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetTypeOk

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

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

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

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*ProblemDetails) SetDetailNil

func (o *ProblemDetails) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given NullableString and assigns it to the Instance field.

func (*ProblemDetails) SetInstanceNil

func (o *ProblemDetails) SetInstanceNil()

SetInstanceNil sets the value for Instance to be an explicit nil

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

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

func (*ProblemDetails) SetStatusNil

func (o *ProblemDetails) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

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

func (*ProblemDetails) SetTitleNil

func (o *ProblemDetails) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

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

func (*ProblemDetails) SetTypeNil

func (o *ProblemDetails) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (ProblemDetails) ToMap

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

func (*ProblemDetails) UnsetDetail

func (o *ProblemDetails) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

func (*ProblemDetails) UnsetInstance

func (o *ProblemDetails) UnsetInstance()

UnsetInstance ensures that no value is present for Instance, not even an explicit nil

func (*ProblemDetails) UnsetStatus

func (o *ProblemDetails) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*ProblemDetails) UnsetTitle

func (o *ProblemDetails) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*ProblemDetails) UnsetType

func (o *ProblemDetails) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type RelatedCIDTO

type RelatedCIDTO struct {
	FromCIID    string `json:"fromCIID"`
	ToCIID      string `json:"toCIID"`
	PredicateID string `json:"predicateID"`
}

RelatedCIDTO struct for RelatedCIDTO

func NewRelatedCIDTO

func NewRelatedCIDTO(fromCIID string, toCIID string, predicateID string) *RelatedCIDTO

NewRelatedCIDTO instantiates a new RelatedCIDTO 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 NewRelatedCIDTOWithDefaults

func NewRelatedCIDTOWithDefaults() *RelatedCIDTO

NewRelatedCIDTOWithDefaults instantiates a new RelatedCIDTO 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 (*RelatedCIDTO) GetFromCIID

func (o *RelatedCIDTO) GetFromCIID() string

GetFromCIID returns the FromCIID field value

func (*RelatedCIDTO) GetFromCIIDOk

func (o *RelatedCIDTO) GetFromCIIDOk() (*string, bool)

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

func (*RelatedCIDTO) GetPredicateID

func (o *RelatedCIDTO) GetPredicateID() string

GetPredicateID returns the PredicateID field value

func (*RelatedCIDTO) GetPredicateIDOk

func (o *RelatedCIDTO) GetPredicateIDOk() (*string, bool)

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

func (*RelatedCIDTO) GetToCIID

func (o *RelatedCIDTO) GetToCIID() string

GetToCIID returns the ToCIID field value

func (*RelatedCIDTO) GetToCIIDOk

func (o *RelatedCIDTO) GetToCIIDOk() (*string, bool)

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

func (RelatedCIDTO) MarshalJSON

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

func (*RelatedCIDTO) SetFromCIID

func (o *RelatedCIDTO) SetFromCIID(v string)

SetFromCIID sets field value

func (*RelatedCIDTO) SetPredicateID

func (o *RelatedCIDTO) SetPredicateID(v string)

SetPredicateID sets field value

func (*RelatedCIDTO) SetToCIID

func (o *RelatedCIDTO) SetToCIID(v string)

SetToCIID sets field value

type RelationApiService

type RelationApiService service

RelationApiService RelationApi service

func (*RelationApiService) GetAllMergedRelations

func (a *RelationApiService) GetAllMergedRelations(ctx context.Context, version string) ApiGetAllMergedRelationsRequest

GetAllMergedRelations

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

func (*RelationApiService) GetAllMergedRelationsExecute

func (a *RelationApiService) GetAllMergedRelationsExecute(r ApiGetAllMergedRelationsRequest) ([]RelationDTO, *http.Response, error)

Execute executes the request

@return []RelationDTO

func (*RelationApiService) GetMergedRelation

func (a *RelationApiService) GetMergedRelation(ctx context.Context, version string) ApiGetMergedRelationRequest

GetMergedRelation

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

func (*RelationApiService) GetMergedRelationExecute

func (a *RelationApiService) GetMergedRelationExecute(r ApiGetMergedRelationRequest) (*RelationDTO, *http.Response, error)

Execute executes the request

@return RelationDTO

func (*RelationApiService) GetMergedRelationsFromOrToCI

func (a *RelationApiService) GetMergedRelationsFromOrToCI(ctx context.Context, version string) ApiGetMergedRelationsFromOrToCIRequest

GetMergedRelationsFromOrToCI

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

func (*RelationApiService) GetMergedRelationsFromOrToCIExecute

func (a *RelationApiService) GetMergedRelationsFromOrToCIExecute(r ApiGetMergedRelationsFromOrToCIRequest) ([]RelationDTO, *http.Response, error)

Execute executes the request

@return []RelationDTO

func (*RelationApiService) GetMergedRelationsOutgoingFromCI

func (a *RelationApiService) GetMergedRelationsOutgoingFromCI(ctx context.Context, version string) ApiGetMergedRelationsOutgoingFromCIRequest

GetMergedRelationsOutgoingFromCI

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

func (*RelationApiService) GetMergedRelationsOutgoingFromCIExecute

func (a *RelationApiService) GetMergedRelationsOutgoingFromCIExecute(r ApiGetMergedRelationsOutgoingFromCIRequest) ([]RelationDTO, *http.Response, error)

Execute executes the request

@return []RelationDTO

func (*RelationApiService) GetMergedRelationsWithPredicate

func (a *RelationApiService) GetMergedRelationsWithPredicate(ctx context.Context, version string) ApiGetMergedRelationsWithPredicateRequest

GetMergedRelationsWithPredicate

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

func (*RelationApiService) GetMergedRelationsWithPredicateExecute

func (a *RelationApiService) GetMergedRelationsWithPredicateExecute(r ApiGetMergedRelationsWithPredicateRequest) ([]RelationDTO, *http.Response, error)

Execute executes the request

@return []RelationDTO

type RelationDTO

type RelationDTO struct {
	Id          string        `json:"id"`
	FromCIID    string        `json:"fromCIID"`
	ToCIID      string        `json:"toCIID"`
	PredicateID string        `json:"predicateID"`
	State       RelationState `json:"state"`
}

RelationDTO struct for RelationDTO

func NewRelationDTO

func NewRelationDTO(id string, fromCIID string, toCIID string, predicateID string, state RelationState) *RelationDTO

NewRelationDTO instantiates a new RelationDTO 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 NewRelationDTOWithDefaults

func NewRelationDTOWithDefaults() *RelationDTO

NewRelationDTOWithDefaults instantiates a new RelationDTO 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 (*RelationDTO) GetFromCIID

func (o *RelationDTO) GetFromCIID() string

GetFromCIID returns the FromCIID field value

func (*RelationDTO) GetFromCIIDOk

func (o *RelationDTO) GetFromCIIDOk() (*string, bool)

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

func (*RelationDTO) GetId

func (o *RelationDTO) GetId() string

GetId returns the Id field value

func (*RelationDTO) GetIdOk

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

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

func (*RelationDTO) GetPredicateID

func (o *RelationDTO) GetPredicateID() string

GetPredicateID returns the PredicateID field value

func (*RelationDTO) GetPredicateIDOk

func (o *RelationDTO) GetPredicateIDOk() (*string, bool)

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

func (*RelationDTO) GetState

func (o *RelationDTO) GetState() RelationState

GetState returns the State field value

func (*RelationDTO) GetStateOk

func (o *RelationDTO) GetStateOk() (*RelationState, bool)

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

func (*RelationDTO) GetToCIID

func (o *RelationDTO) GetToCIID() string

GetToCIID returns the ToCIID field value

func (*RelationDTO) GetToCIIDOk

func (o *RelationDTO) GetToCIIDOk() (*string, bool)

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

func (RelationDTO) MarshalJSON

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

func (*RelationDTO) SetFromCIID

func (o *RelationDTO) SetFromCIID(v string)

SetFromCIID sets field value

func (*RelationDTO) SetId

func (o *RelationDTO) SetId(v string)

SetId sets field value

func (*RelationDTO) SetPredicateID

func (o *RelationDTO) SetPredicateID(v string)

SetPredicateID sets field value

func (*RelationDTO) SetState

func (o *RelationDTO) SetState(v RelationState)

SetState sets field value

func (*RelationDTO) SetToCIID

func (o *RelationDTO) SetToCIID(v string)

SetToCIID sets field value

type RelationState

type RelationState string

RelationState the model 'RelationState'

const (
	RELATIONSTATE_NEW     RelationState = "New"
	RELATIONSTATE_REMOVED RelationState = "Removed"
	RELATIONSTATE_RENEWED RelationState = "Renewed"
)

List of RelationState

func NewRelationStateFromValue

func NewRelationStateFromValue(v string) (*RelationState, error)

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

func (RelationState) IsValid

func (v RelationState) IsValid() bool

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

func (RelationState) Ptr

func (v RelationState) Ptr() *RelationState

Ptr returns reference to RelationState value

func (*RelationState) UnmarshalJSON

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

type RestartApplicationApiService

type RestartApplicationApiService service

RestartApplicationApiService RestartApplicationApi service

func (*RestartApplicationApiService) RestartApplicationRestart

func (a *RestartApplicationApiService) RestartApplicationRestart(ctx context.Context, version string) ApiRestartApplicationRestartRequest

RestartApplicationRestart Method for RestartApplicationRestart

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

func (*RestartApplicationApiService) RestartApplicationRestartExecute

func (a *RestartApplicationApiService) RestartApplicationRestartExecute(r ApiRestartApplicationRestartRequest) (*http.Response, error)

Execute executes the request

type SameTargetCIHandling

type SameTargetCIHandling string

SameTargetCIHandling the model 'SameTargetCIHandling'

const (
	SAMETARGETCIHANDLING_ERROR          SameTargetCIHandling = "Error"
	SAMETARGETCIHANDLING_DROP           SameTargetCIHandling = "Drop"
	SAMETARGETCIHANDLING_DROP_AND_WARN  SameTargetCIHandling = "DropAndWarn"
	SAMETARGETCIHANDLING_EVADE          SameTargetCIHandling = "Evade"
	SAMETARGETCIHANDLING_EVADE_AND_WARN SameTargetCIHandling = "EvadeAndWarn"
	SAMETARGETCIHANDLING_MERGE          SameTargetCIHandling = "Merge"
)

List of SameTargetCIHandling

func NewSameTargetCIHandlingFromValue

func NewSameTargetCIHandlingFromValue(v string) (*SameTargetCIHandling, error)

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

func (SameTargetCIHandling) IsValid

func (v SameTargetCIHandling) IsValid() bool

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

func (SameTargetCIHandling) Ptr

Ptr returns reference to SameTargetCIHandling value

func (*SameTargetCIHandling) UnmarshalJSON

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

type SameTempIDHandling

type SameTempIDHandling string

SameTempIDHandling the model 'SameTempIDHandling'

const (
	SAMETEMPIDHANDLING_DROP_AND_WARN SameTempIDHandling = "DropAndWarn"
	SAMETEMPIDHANDLING_DROP          SameTempIDHandling = "Drop"
)

List of SameTempIDHandling

func NewSameTempIDHandlingFromValue

func NewSameTempIDHandlingFromValue(v string) (*SameTempIDHandling, error)

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

func (SameTempIDHandling) IsValid

func (v SameTempIDHandling) IsValid() bool

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

func (SameTempIDHandling) Ptr

Ptr returns reference to SameTempIDHandling value

func (*SameTempIDHandling) UnmarshalJSON

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

type ServerConfiguration

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

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

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

URL formats template on a index using given variables

type ServerVariable

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

ServerVariable stores the information about a server variable

type SparseRow

type SparseRow struct {
	Ciid  *string          `json:"ciid,omitempty"`
	Cells []ChangeDataCell `json:"cells,omitempty"`
}

SparseRow struct for SparseRow

func NewSparseRow

func NewSparseRow() *SparseRow

NewSparseRow instantiates a new SparseRow 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 NewSparseRowWithDefaults

func NewSparseRowWithDefaults() *SparseRow

NewSparseRowWithDefaults instantiates a new SparseRow 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 (*SparseRow) GetCells

func (o *SparseRow) GetCells() []ChangeDataCell

GetCells returns the Cells field value if set, zero value otherwise.

func (*SparseRow) GetCellsOk

func (o *SparseRow) GetCellsOk() ([]ChangeDataCell, bool)

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

func (*SparseRow) GetCiid

func (o *SparseRow) GetCiid() string

GetCiid returns the Ciid field value if set, zero value otherwise.

func (*SparseRow) GetCiidOk

func (o *SparseRow) GetCiidOk() (*string, bool)

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

func (*SparseRow) HasCells

func (o *SparseRow) HasCells() bool

HasCells returns a boolean if a field has been set.

func (*SparseRow) HasCiid

func (o *SparseRow) HasCiid() bool

HasCiid returns a boolean if a field has been set.

func (SparseRow) MarshalJSON

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

func (*SparseRow) SetCells

func (o *SparseRow) SetCells(v []ChangeDataCell)

SetCells gets a reference to the given []ChangeDataCell and assigns it to the Cells field.

func (*SparseRow) SetCiid

func (o *SparseRow) SetCiid(v string)

SetCiid gets a reference to the given string and assigns it to the Ciid field.

func (SparseRow) ToMap

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

type TraitApiService

type TraitApiService service

TraitApiService TraitApi service

func (*TraitApiService) GetEffectiveTraitsForTraitName

func (a *TraitApiService) GetEffectiveTraitsForTraitName(ctx context.Context, version string) ApiGetEffectiveTraitsForTraitNameRequest

GetEffectiveTraitsForTraitName Method for GetEffectiveTraitsForTraitName

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

func (*TraitApiService) GetEffectiveTraitsForTraitNameExecute

func (a *TraitApiService) GetEffectiveTraitsForTraitNameExecute(r ApiGetEffectiveTraitsForTraitNameRequest) (*map[string]EffectiveTraitDTO, *http.Response, error)

Execute executes the request

@return map[string]EffectiveTraitDTO

type UsageStatsApiService

type UsageStatsApiService service

UsageStatsApiService UsageStatsApi service

func (*UsageStatsApiService) UsageStatsFetch

func (a *UsageStatsApiService) UsageStatsFetch(ctx context.Context, version string) ApiUsageStatsFetchRequest

UsageStatsFetch Method for UsageStatsFetch

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

func (*UsageStatsApiService) UsageStatsFetchExecute

func (a *UsageStatsApiService) UsageStatsFetchExecute(r ApiUsageStatsFetchRequest) (*http.Response, error)

Execute executes the request

Source Files

Jump to

Keyboard shortcuts

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