pingone

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Aug 7, 2025 License: Apache-2.0 Imports: 30 Imported by: 0

README

Go API client for pingone

PingOne is a cloud-based framework for secure identity access management. The PingOne API gives developers the tools to integrate enterprise and third-party applications with the PingOne platform.

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: 2025.08.07-development
  • Package version: v0.0.1
  • Generator version: 7.13.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://developer.pingidentity.com

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 pingone "github.com/pingidentity/pingone-go-client/pingone"

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

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

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

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

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

Documentation for API Endpoints

All URIs are relative to https://api.pingone.com/v1

Class Method HTTP request Description
DaVinciApplicationsApi CreateDavinciApplication Post /environments/{environmentID}/davinciApplications
DaVinciApplicationsApi CreateFlowPolicyByDavinciApplicationId Post /environments/{environmentID}/davinciApplications/{davinciApplicationID}/flowPolicies
DaVinciApplicationsApi DeleteDavinciApplicationById Delete /environments/{environmentID}/davinciApplications/{davinciApplicationID}
DaVinciApplicationsApi DeleteFlowPolicyByIdUsingDavinciApplicationId Delete /environments/{environmentID}/davinciApplications/{davinciApplicationID}/flowPolicies/{flowPolicyID}
DaVinciApplicationsApi GetDavinciApplicationById Get /environments/{environmentID}/davinciApplications/{davinciApplicationID}
DaVinciApplicationsApi GetDavinciApplications Get /environments/{environmentID}/davinciApplications
DaVinciApplicationsApi GetEventsByDavinciApplicationIdAndFlowPolicyId Get /environments/{environmentID}/davinciApplications/{davinciApplicationID}/flowPolicies/{flowPolicyID}/events
DaVinciApplicationsApi GetFlowPoliciesByDavinciApplicationId Get /environments/{environmentID}/davinciApplications/{davinciApplicationID}/flowPolicies
DaVinciApplicationsApi GetFlowPolicyByIdUsingDavinciApplicationId Get /environments/{environmentID}/davinciApplications/{davinciApplicationID}/flowPolicies/{flowPolicyID}
DaVinciApplicationsApi ReplaceDavinciApplicationById Put /environments/{environmentID}/davinciApplications/{davinciApplicationID}
DaVinciApplicationsApi ReplaceFlowPolicyByIdUsingDavinciApplicationId Put /environments/{environmentID}/davinciApplications/{davinciApplicationID}/flowPolicies/{flowPolicyID}
DaVinciApplicationsApi RotateKeyByDavinciApplicationId Post /environments/{environmentID}/davinciApplications/{davinciApplicationID}/key
DaVinciApplicationsApi RotateSecretByDavinciApplicationId Post /environments/{environmentID}/davinciApplications/{davinciApplicationID}/secret
DaVinciConnectorsApi CreateConnectorInstance Post /environments/{environmentID}/connectorInstances
DaVinciConnectorsApi CreateConnectorInstanceById Post /environments/{environmentID}/connectorInstances/{connectorInstanceID}
DaVinciConnectorsApi DeleteConnectorInstanceById Delete /environments/{environmentID}/connectorInstances/{connectorInstanceID}
DaVinciConnectorsApi GetConnectorById Get /environments/{environmentID}/connectors/{connectorID}
DaVinciConnectorsApi GetConnectorInstanceById Get /environments/{environmentID}/connectorInstances/{connectorInstanceID}
DaVinciConnectorsApi GetConnectorInstances Get /environments/{environmentID}/connectorInstances
DaVinciConnectorsApi GetConnectors Get /environments/{environmentID}/connectors
DaVinciConnectorsApi GetDetailsByConnectorId Get /environments/{environmentID}/connectors/{connectorID}/details
DaVinciConnectorsApi ReplaceConnectorInstanceById Put /environments/{environmentID}/connectorInstances/{connectorInstanceID}
DaVinciVariablesApi CreateVariable Post /environments/{environmentID}/variables
DaVinciVariablesApi DeleteVariableById Delete /environments/{environmentID}/variables/{variableID}
DaVinciVariablesApi GetVariableById Get /environments/{environmentID}/variables/{variableID}
DaVinciVariablesApi GetVariables Get /environments/{environmentID}/variables
DaVinciVariablesApi ReplaceVariableById Put /environments/{environmentID}/variables/{variableID}
DirectoryTotalIdentitiesApi GetTotalIdentities Get /environments/{environmentID}/totalIdentities
EnvironmentsApi CreateEnvironment Post /environments
EnvironmentsApi DeleteEnvironmentById Delete /environments/{environmentID}
EnvironmentsApi GetBillOfMaterialsByEnvironmentId Get /environments/{environmentID}/billOfMaterials
EnvironmentsApi GetEnvironmentById Get /environments/{environmentID}
EnvironmentsApi GetEnvironments Get /environments
EnvironmentsApi ReplaceBillOfMaterialsByEnvironmentId Put /environments/{environmentID}/billOfMaterials
EnvironmentsApi ReplaceEnvironmentById Put /environments/{environmentID}

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

bearerAuth
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), pingone.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)
oauth2
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes: N/A

Example

auth := context.WithValue(context.Background(), pingone.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, pingone.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)
oauth2
  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: /as/authorize
  • Scopes: N/A

Example

auth := context.WithValue(context.Background(), pingone.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, pingone.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

developerexperiences@pingidentity.com

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedBadRequestErrorCodeEnumValues = []BadRequestErrorCode{
	"INVALID_DATA",
	"INVALID_REQUEST",
	"REQUEST_FAILED",
}

All allowed values of BadRequestErrorCode enum

View Source
var AllowedBadRequestErrorDetailCodeEnumValues = []BadRequestErrorDetailCode{
	"ACCOUNT_NOT_USABLE",
	"CONSTRAINT_VIOLATION",
	"EMPTY_VALUE",
	"INVALID_FILTER",
	"INVALID_OTP",
	"INVALID_PARAMETER",
	"INVALID_VALUE",
	"MFA_AUTH_METHODS_CONFLICT",
	"NO_PASSWORD",
	"OUT_OF_RANGE",
	"REQUIRED_VALUE",
	"SIZE_LIMIT_EXCEEDED",
	"UNIQUENESS_VIOLATION",
}

All allowed values of BadRequestErrorDetailCode enum

View Source
var AllowedDaVinciApplicationReplaceRequestOAuthGrantTypeEnumValues = []DaVinciApplicationReplaceRequestOAuthGrantType{
	"authorizationCode",
	"clientCredentials",
	"implicit",
}

All allowed values of DaVinciApplicationReplaceRequestOAuthGrantType enum

View Source
var AllowedDaVinciApplicationReplaceRequestOAuthScopeEnumValues = []DaVinciApplicationReplaceRequestOAuthScope{
	"flow_analytics",
	"offline_access",
	"openid",
	"profile",
}

All allowed values of DaVinciApplicationReplaceRequestOAuthScope enum

View Source
var AllowedDaVinciApplicationResponseOAuthGrantTypeEnumValues = []DaVinciApplicationResponseOAuthGrantType{
	"authorizationCode",
	"clientCredentials",
	"implicit",
}

All allowed values of DaVinciApplicationResponseOAuthGrantType enum

View Source
var AllowedDaVinciApplicationResponseOAuthScopeEnumValues = []DaVinciApplicationResponseOAuthScope{
	"flow_analytics",
	"offline_access",
	"openid",
	"profile",
}

All allowed values of DaVinciApplicationResponseOAuthScope enum

View Source
var AllowedDaVinciConnectorMinimalResponseMetadataTypeEnumValues = []DaVinciConnectorMinimalResponseMetadataType{
	"core",
	"ping",
	"service",
}

All allowed values of DaVinciConnectorMinimalResponseMetadataType enum

View Source
var AllowedDaVinciFlowPolicyCreateRequestStatusEnumValues = []DaVinciFlowPolicyCreateRequestStatus{
	"disabled",
	"enabled",
}

All allowed values of DaVinciFlowPolicyCreateRequestStatus enum

View Source
var AllowedDaVinciFlowPolicyCreateRequestTriggerTypeEnumValues = []DaVinciFlowPolicyCreateRequestTriggerType{
	"AUTHENTICATION",
}

All allowed values of DaVinciFlowPolicyCreateRequestTriggerType enum

View Source
var AllowedDaVinciFlowPolicyReplaceRequestStatusEnumValues = []DaVinciFlowPolicyReplaceRequestStatus{
	"disabled",
	"enabled",
}

All allowed values of DaVinciFlowPolicyReplaceRequestStatus enum

View Source
var AllowedDaVinciFlowPolicyReplaceRequestTriggerTypeEnumValues = []DaVinciFlowPolicyReplaceRequestTriggerType{
	"AUTHENTICATION",
}

All allowed values of DaVinciFlowPolicyReplaceRequestTriggerType enum

View Source
var AllowedDaVinciFlowPolicyResponseStatusEnumValues = []DaVinciFlowPolicyResponseStatus{
	"disabled",
	"enabled",
}

All allowed values of DaVinciFlowPolicyResponseStatus enum

View Source
var AllowedDaVinciVariableCreateRequestContextEnumValues = []DaVinciVariableCreateRequestContext{
	"company",
	"flow",
	"flowInstance",
	"user",
}

All allowed values of DaVinciVariableCreateRequestContext enum

View Source
var AllowedDaVinciVariableCreateRequestDataTypeEnumValues = []DaVinciVariableCreateRequestDataType{
	"boolean",
	"number",
	"object",
	"secret",
	"string",
}

All allowed values of DaVinciVariableCreateRequestDataType enum

View Source
var AllowedDaVinciVariableReplaceRequestContextEnumValues = []DaVinciVariableReplaceRequestContext{
	"company",
	"flow",
	"flowInstance",
	"user",
}

All allowed values of DaVinciVariableReplaceRequestContext enum

View Source
var AllowedDaVinciVariableReplaceRequestDataTypeEnumValues = []DaVinciVariableReplaceRequestDataType{
	"boolean",
	"number",
	"object",
	"secret",
	"string",
}

All allowed values of DaVinciVariableReplaceRequestDataType enum

View Source
var AllowedDaVinciVariableResponseDataTypeEnumValues = []DaVinciVariableResponseDataType{
	"array",
	"boolean",
	"button",
	"list",
	"listInt",
	"mapping",
	"number",
	"object",
	"propertyGroup",
	"screenConfig",
	"secret",
	"skConnectorList",
	"skEvent",
	"string",
	"timestamp",
}

All allowed values of DaVinciVariableResponseDataType enum

View Source
var AllowedEnvironmentBillOfMaterialsProductTypeEnumValues = []EnvironmentBillOfMaterialsProductType{
	"IDENTITY_CLOUD",
	"PING_ACCESS",
	"PING_AUTHORIZE",
	"PING_CENTRAL",
	"PING_DATA_GOVERNANCE",
	"PING_DATA_SYNC",
	"PING_DIRECTORY",
	"PING_FEDERATE",
	"PING_ID",
	"PING_ID_SDK",
	"PING_INTELLIGENCE",
	"PING_ONE_AUTHORIZE",
	"PING_ONE_BASE",
	"PING_ONE_CREDENTIALS",
	"PING_ONE_DAVINCI",
	"PING_ONE_FOR_ENTERPRISE",
	"PING_ONE_FOR_SAAS",
	"PING_ONE_FRAUD",
	"PING_ONE_ID",
	"PING_ONE_LEGACY",
	"PING_ONE_MFA",
	"PING_ONE_ORCHESTRATE",
	"PING_ONE_PROVISIONING",
	"PING_ONE_RISK",
	"PING_ONE_VERIFY",
}

All allowed values of EnvironmentBillOfMaterialsProductType enum

View Source
var AllowedEnvironmentBillOfMaterialsSolutionTypeEnumValues = []EnvironmentBillOfMaterialsSolutionType{
	"CIAM_TRIAL",
	"CUSTOMER",
	"WF_TRIAL",
	"WORKFORCE",
}

All allowed values of EnvironmentBillOfMaterialsSolutionType enum

View Source
var AllowedEnvironmentRegionCodeEnumValues = []EnvironmentRegionCode{
	"AP",
	"AU",
	"CA",
	"EU",
	"NA",
	"SG",
}

All allowed values of EnvironmentRegionCode enum

View Source
var AllowedEnvironmentStatusValueEnumValues = []EnvironmentStatusValue{
	"ACTIVE",
	"DELETE_PENDING",
}

All allowed values of EnvironmentStatusValue enum

View Source
var AllowedEnvironmentTypeValueEnumValues = []EnvironmentTypeValue{
	"PRODUCTION",
	"SANDBOX",
}

All allowed values of EnvironmentTypeValue enum

View Source
var AllowedForbiddenErrorCodeEnumValues = []ForbiddenErrorCode{
	"ACCESS_FAILED",
}

All allowed values of ForbiddenErrorCode enum

View Source
var AllowedForbiddenErrorDetailCodeEnumValues = []ForbiddenErrorDetailCode{
	"INSUFFICIENT_PERMISSIONS",
	"LICENSE_EXCEEDED",
}

All allowed values of ForbiddenErrorDetailCode enum

View Source
var AllowedInternalServerErrorCodeEnumValues = []InternalServerErrorCode{
	"UNEXPECTED_ERROR",
}

All allowed values of InternalServerErrorCode enum

View Source
var AllowedNotFoundErrorCodeEnumValues = []NotFoundErrorCode{
	"NOT_FOUND",
}

All allowed values of NotFoundErrorCode enum

View Source
var AllowedTooManyRequestsErrorCodeEnumValues = []TooManyRequestsErrorCode{
	"REQUEST_LIMITED",
}

All allowed values of TooManyRequestsErrorCode enum

View Source
var AllowedTooManyRequestsErrorDetailCodeEnumValues = []TooManyRequestsErrorDetailCode{
	"LIMIT_EXCEEDED",
	"QUOTA_EXCEEDED",
}

All allowed values of TooManyRequestsErrorDetailCode enum

View Source
var AllowedUnauthorizedErrorCodeEnumValues = []UnauthorizedErrorCode{
	"ACCESS_FAILED",
}

All allowed values of UnauthorizedErrorCode enum

View Source
var AllowedUnauthorizedErrorDetailCodeEnumValues = []UnauthorizedErrorDetailCode{
	"INSUFFICIENT_PERMISSIONS",
	"INVALID_TOKEN",
}

All allowed values of UnauthorizedErrorDetailCode enum

View Source
var AllowedUnsupportedMediaTypeErrorCodeEnumValues = []UnsupportedMediaTypeErrorCode{
	"INVALID_REQUEST",
}

All allowed values of UnsupportedMediaTypeErrorCode 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 NewServiceConfiguration

func NewServiceConfiguration() *pingone.Configuration

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 {
	DaVinciApplicationsApi *DaVinciApplicationsApiService

	DaVinciConnectorsApi *DaVinciConnectorsApiService

	DaVinciVariablesApi *DaVinciVariablesApiService

	DirectoryTotalIdentitiesApi *DirectoryTotalIdentitiesApiService

	EnvironmentsApi *EnvironmentsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the PingOne Platform User and Configuration Management API - SDK Generator API v2025.08.07-development In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) (*APIClient, error)

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 APIError

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

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

func (APIError) Body

func (e APIError) Body() []byte

Body returns the raw bytes of the response

func (APIError) Error

func (e APIError) Error() string

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

func (APIError) Model

func (e APIError) Model() interface{}

Model returns the unpacked model of the error

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 ApiCreateConnectorInstanceByIdRequest

type ApiCreateConnectorInstanceByIdRequest struct {
	ApiService *DaVinciConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiCreateConnectorInstanceByIdRequest) Execute

func (ApiCreateConnectorInstanceByIdRequest) RequestBody

func (r ApiCreateConnectorInstanceByIdRequest) RequestBody(requestBody map[string]interface{}) ApiCreateConnectorInstanceByIdRequest

func (ApiCreateConnectorInstanceByIdRequest) XPingExternalSessionID

func (r ApiCreateConnectorInstanceByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiCreateConnectorInstanceByIdRequest

func (ApiCreateConnectorInstanceByIdRequest) XPingExternalTransactionID

func (r ApiCreateConnectorInstanceByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiCreateConnectorInstanceByIdRequest

type ApiCreateConnectorInstanceRequest

type ApiCreateConnectorInstanceRequest struct {
	ApiService *DaVinciConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiCreateConnectorInstanceRequest) DaVinciConnectorInstanceCreateRequest

func (r ApiCreateConnectorInstanceRequest) DaVinciConnectorInstanceCreateRequest(daVinciConnectorInstanceCreateRequest DaVinciConnectorInstanceCreateRequest) ApiCreateConnectorInstanceRequest

func (ApiCreateConnectorInstanceRequest) Execute

func (ApiCreateConnectorInstanceRequest) XPingExternalSessionID

func (r ApiCreateConnectorInstanceRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiCreateConnectorInstanceRequest

func (ApiCreateConnectorInstanceRequest) XPingExternalTransactionID

func (r ApiCreateConnectorInstanceRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiCreateConnectorInstanceRequest

type ApiCreateDavinciApplicationRequest

type ApiCreateDavinciApplicationRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiCreateDavinciApplicationRequest) DaVinciApplicationCreateRequest

func (r ApiCreateDavinciApplicationRequest) DaVinciApplicationCreateRequest(daVinciApplicationCreateRequest DaVinciApplicationCreateRequest) ApiCreateDavinciApplicationRequest

func (ApiCreateDavinciApplicationRequest) Execute

func (ApiCreateDavinciApplicationRequest) XPingExternalSessionID

func (r ApiCreateDavinciApplicationRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiCreateDavinciApplicationRequest

func (ApiCreateDavinciApplicationRequest) XPingExternalTransactionID

func (r ApiCreateDavinciApplicationRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiCreateDavinciApplicationRequest

type ApiCreateEnvironmentRequest

type ApiCreateEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiCreateEnvironmentRequest) EnvironmentCreateRequest

func (r ApiCreateEnvironmentRequest) EnvironmentCreateRequest(environmentCreateRequest EnvironmentCreateRequest) ApiCreateEnvironmentRequest

func (ApiCreateEnvironmentRequest) Execute

func (ApiCreateEnvironmentRequest) XPingExternalSessionID

func (r ApiCreateEnvironmentRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiCreateEnvironmentRequest

func (ApiCreateEnvironmentRequest) XPingExternalTransactionID

func (r ApiCreateEnvironmentRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiCreateEnvironmentRequest

type ApiCreateFlowPolicyByDavinciApplicationIdRequest

type ApiCreateFlowPolicyByDavinciApplicationIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiCreateFlowPolicyByDavinciApplicationIdRequest) DaVinciFlowPolicyCreateRequest

func (ApiCreateFlowPolicyByDavinciApplicationIdRequest) Execute

func (ApiCreateFlowPolicyByDavinciApplicationIdRequest) XPingExternalSessionID

func (ApiCreateFlowPolicyByDavinciApplicationIdRequest) XPingExternalTransactionID

func (r ApiCreateFlowPolicyByDavinciApplicationIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiCreateFlowPolicyByDavinciApplicationIdRequest

type ApiCreateVariableRequest

type ApiCreateVariableRequest struct {
	ApiService *DaVinciVariablesApiService
	// contains filtered or unexported fields
}

func (ApiCreateVariableRequest) DaVinciVariableCreateRequest

func (r ApiCreateVariableRequest) DaVinciVariableCreateRequest(daVinciVariableCreateRequest DaVinciVariableCreateRequest) ApiCreateVariableRequest

func (ApiCreateVariableRequest) Execute

func (ApiCreateVariableRequest) XPingExternalSessionID

func (r ApiCreateVariableRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiCreateVariableRequest

func (ApiCreateVariableRequest) XPingExternalTransactionID

func (r ApiCreateVariableRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiCreateVariableRequest

type ApiDeleteConnectorInstanceByIdRequest

type ApiDeleteConnectorInstanceByIdRequest struct {
	ApiService *DaVinciConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteConnectorInstanceByIdRequest) Execute

func (ApiDeleteConnectorInstanceByIdRequest) XPingExternalSessionID

func (r ApiDeleteConnectorInstanceByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiDeleteConnectorInstanceByIdRequest

func (ApiDeleteConnectorInstanceByIdRequest) XPingExternalTransactionID

func (r ApiDeleteConnectorInstanceByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiDeleteConnectorInstanceByIdRequest

type ApiDeleteDavinciApplicationByIdRequest

type ApiDeleteDavinciApplicationByIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDavinciApplicationByIdRequest) Execute

func (ApiDeleteDavinciApplicationByIdRequest) XPingExternalSessionID

func (r ApiDeleteDavinciApplicationByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiDeleteDavinciApplicationByIdRequest

func (ApiDeleteDavinciApplicationByIdRequest) XPingExternalTransactionID

func (r ApiDeleteDavinciApplicationByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiDeleteDavinciApplicationByIdRequest

type ApiDeleteEnvironmentByIdRequest

type ApiDeleteEnvironmentByIdRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteEnvironmentByIdRequest) Execute

func (ApiDeleteEnvironmentByIdRequest) XPingExternalSessionID

func (r ApiDeleteEnvironmentByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiDeleteEnvironmentByIdRequest

func (ApiDeleteEnvironmentByIdRequest) XPingExternalTransactionID

func (r ApiDeleteEnvironmentByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiDeleteEnvironmentByIdRequest

type ApiDeleteFlowPolicyByIdUsingDavinciApplicationIdRequest

type ApiDeleteFlowPolicyByIdUsingDavinciApplicationIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteFlowPolicyByIdUsingDavinciApplicationIdRequest) Execute

func (ApiDeleteFlowPolicyByIdUsingDavinciApplicationIdRequest) XPingExternalSessionID

func (ApiDeleteFlowPolicyByIdUsingDavinciApplicationIdRequest) XPingExternalTransactionID

type ApiDeleteVariableByIdRequest

type ApiDeleteVariableByIdRequest struct {
	ApiService *DaVinciVariablesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVariableByIdRequest) Execute

func (ApiDeleteVariableByIdRequest) XPingExternalSessionID

func (r ApiDeleteVariableByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiDeleteVariableByIdRequest

func (ApiDeleteVariableByIdRequest) XPingExternalTransactionID

func (r ApiDeleteVariableByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiDeleteVariableByIdRequest

type ApiGetBillOfMaterialsByEnvironmentIdRequest

type ApiGetBillOfMaterialsByEnvironmentIdRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetBillOfMaterialsByEnvironmentIdRequest) Execute

func (ApiGetBillOfMaterialsByEnvironmentIdRequest) XPingExternalSessionID

func (ApiGetBillOfMaterialsByEnvironmentIdRequest) XPingExternalTransactionID

func (r ApiGetBillOfMaterialsByEnvironmentIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetBillOfMaterialsByEnvironmentIdRequest

type ApiGetConnectorByIdRequest

type ApiGetConnectorByIdRequest struct {
	ApiService *DaVinciConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectorByIdRequest) Execute

func (ApiGetConnectorByIdRequest) XPingExternalSessionID

func (r ApiGetConnectorByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetConnectorByIdRequest

func (ApiGetConnectorByIdRequest) XPingExternalTransactionID

func (r ApiGetConnectorByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetConnectorByIdRequest

type ApiGetConnectorInstanceByIdRequest

type ApiGetConnectorInstanceByIdRequest struct {
	ApiService *DaVinciConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectorInstanceByIdRequest) Execute

func (ApiGetConnectorInstanceByIdRequest) XPingExternalSessionID

func (r ApiGetConnectorInstanceByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetConnectorInstanceByIdRequest

func (ApiGetConnectorInstanceByIdRequest) XPingExternalTransactionID

func (r ApiGetConnectorInstanceByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetConnectorInstanceByIdRequest

type ApiGetConnectorInstancesRequest

type ApiGetConnectorInstancesRequest struct {
	ApiService *DaVinciConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectorInstancesRequest) Execute

func (ApiGetConnectorInstancesRequest) XPingExternalSessionID

func (r ApiGetConnectorInstancesRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetConnectorInstancesRequest

func (ApiGetConnectorInstancesRequest) XPingExternalTransactionID

func (r ApiGetConnectorInstancesRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetConnectorInstancesRequest

type ApiGetConnectorsRequest

type ApiGetConnectorsRequest struct {
	ApiService *DaVinciConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectorsRequest) Execute

func (ApiGetConnectorsRequest) XPingExternalSessionID

func (r ApiGetConnectorsRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetConnectorsRequest

func (ApiGetConnectorsRequest) XPingExternalTransactionID

func (r ApiGetConnectorsRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetConnectorsRequest

type ApiGetDavinciApplicationByIdRequest

type ApiGetDavinciApplicationByIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiGetDavinciApplicationByIdRequest) Execute

func (ApiGetDavinciApplicationByIdRequest) XPingExternalSessionID

func (r ApiGetDavinciApplicationByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetDavinciApplicationByIdRequest

func (ApiGetDavinciApplicationByIdRequest) XPingExternalTransactionID

func (r ApiGetDavinciApplicationByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetDavinciApplicationByIdRequest

type ApiGetDavinciApplicationsRequest

type ApiGetDavinciApplicationsRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiGetDavinciApplicationsRequest) Execute

func (ApiGetDavinciApplicationsRequest) XPingExternalSessionID

func (r ApiGetDavinciApplicationsRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetDavinciApplicationsRequest

func (ApiGetDavinciApplicationsRequest) XPingExternalTransactionID

func (r ApiGetDavinciApplicationsRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetDavinciApplicationsRequest

type ApiGetDetailsByConnectorIdRequest

type ApiGetDetailsByConnectorIdRequest struct {
	ApiService *DaVinciConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetDetailsByConnectorIdRequest) Execute

func (ApiGetDetailsByConnectorIdRequest) XPingExternalSessionID

func (r ApiGetDetailsByConnectorIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetDetailsByConnectorIdRequest

func (ApiGetDetailsByConnectorIdRequest) XPingExternalTransactionID

func (r ApiGetDetailsByConnectorIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetDetailsByConnectorIdRequest

type ApiGetEnvironmentByIdRequest

type ApiGetEnvironmentByIdRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetEnvironmentByIdRequest) Execute

func (ApiGetEnvironmentByIdRequest) Expand

func (ApiGetEnvironmentByIdRequest) XPingExternalSessionID

func (r ApiGetEnvironmentByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetEnvironmentByIdRequest

func (ApiGetEnvironmentByIdRequest) XPingExternalTransactionID

func (r ApiGetEnvironmentByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetEnvironmentByIdRequest

type ApiGetEnvironmentsRequest

type ApiGetEnvironmentsRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetEnvironmentsRequest) Cursor

func (ApiGetEnvironmentsRequest) Execute

func (ApiGetEnvironmentsRequest) ExecuteInitialPage

func (ApiGetEnvironmentsRequest) Expand

func (ApiGetEnvironmentsRequest) Filter

func (ApiGetEnvironmentsRequest) Limit

func (ApiGetEnvironmentsRequest) Order

func (ApiGetEnvironmentsRequest) XPingExternalSessionID

func (r ApiGetEnvironmentsRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetEnvironmentsRequest

func (ApiGetEnvironmentsRequest) XPingExternalTransactionID

func (r ApiGetEnvironmentsRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetEnvironmentsRequest

type ApiGetEventsByDavinciApplicationIdAndFlowPolicyIdRequest

type ApiGetEventsByDavinciApplicationIdAndFlowPolicyIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiGetEventsByDavinciApplicationIdAndFlowPolicyIdRequest) Execute

func (ApiGetEventsByDavinciApplicationIdAndFlowPolicyIdRequest) XPingExternalSessionID

func (ApiGetEventsByDavinciApplicationIdAndFlowPolicyIdRequest) XPingExternalTransactionID

type ApiGetFlowPoliciesByDavinciApplicationIdRequest

type ApiGetFlowPoliciesByDavinciApplicationIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiGetFlowPoliciesByDavinciApplicationIdRequest) Execute

func (ApiGetFlowPoliciesByDavinciApplicationIdRequest) XPingExternalSessionID

func (ApiGetFlowPoliciesByDavinciApplicationIdRequest) XPingExternalTransactionID

func (r ApiGetFlowPoliciesByDavinciApplicationIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetFlowPoliciesByDavinciApplicationIdRequest

type ApiGetFlowPolicyByIdUsingDavinciApplicationIdRequest

type ApiGetFlowPolicyByIdUsingDavinciApplicationIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiGetFlowPolicyByIdUsingDavinciApplicationIdRequest) Execute

func (ApiGetFlowPolicyByIdUsingDavinciApplicationIdRequest) XPingExternalSessionID

func (ApiGetFlowPolicyByIdUsingDavinciApplicationIdRequest) XPingExternalTransactionID

type ApiGetTotalIdentitiesRequest

type ApiGetTotalIdentitiesRequest struct {
	ApiService *DirectoryTotalIdentitiesApiService
	// contains filtered or unexported fields
}

func (ApiGetTotalIdentitiesRequest) Execute

func (ApiGetTotalIdentitiesRequest) Filter

func (ApiGetTotalIdentitiesRequest) XPingExternalSessionID

func (r ApiGetTotalIdentitiesRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetTotalIdentitiesRequest

func (ApiGetTotalIdentitiesRequest) XPingExternalTransactionID

func (r ApiGetTotalIdentitiesRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetTotalIdentitiesRequest

type ApiGetVariableByIdRequest

type ApiGetVariableByIdRequest struct {
	ApiService *DaVinciVariablesApiService
	// contains filtered or unexported fields
}

func (ApiGetVariableByIdRequest) Execute

func (ApiGetVariableByIdRequest) XPingExternalSessionID

func (r ApiGetVariableByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetVariableByIdRequest

func (ApiGetVariableByIdRequest) XPingExternalTransactionID

func (r ApiGetVariableByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetVariableByIdRequest

type ApiGetVariablesRequest

type ApiGetVariablesRequest struct {
	ApiService *DaVinciVariablesApiService
	// contains filtered or unexported fields
}

func (ApiGetVariablesRequest) Cursor

func (ApiGetVariablesRequest) Execute

func (ApiGetVariablesRequest) ExecuteInitialPage

func (ApiGetVariablesRequest) Filter

func (ApiGetVariablesRequest) Limit

func (ApiGetVariablesRequest) XPingExternalSessionID

func (r ApiGetVariablesRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiGetVariablesRequest

func (ApiGetVariablesRequest) XPingExternalTransactionID

func (r ApiGetVariablesRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiGetVariablesRequest

type ApiReplaceBillOfMaterialsByEnvironmentIdRequest

type ApiReplaceBillOfMaterialsByEnvironmentIdRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiReplaceBillOfMaterialsByEnvironmentIdRequest) EnvironmentBillOfMaterialsReplaceRequest

func (r ApiReplaceBillOfMaterialsByEnvironmentIdRequest) EnvironmentBillOfMaterialsReplaceRequest(environmentBillOfMaterialsReplaceRequest EnvironmentBillOfMaterialsReplaceRequest) ApiReplaceBillOfMaterialsByEnvironmentIdRequest

func (ApiReplaceBillOfMaterialsByEnvironmentIdRequest) Execute

func (ApiReplaceBillOfMaterialsByEnvironmentIdRequest) XPingExternalSessionID

func (ApiReplaceBillOfMaterialsByEnvironmentIdRequest) XPingExternalTransactionID

func (r ApiReplaceBillOfMaterialsByEnvironmentIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReplaceBillOfMaterialsByEnvironmentIdRequest

type ApiReplaceConnectorInstanceByIdRequest

type ApiReplaceConnectorInstanceByIdRequest struct {
	ApiService *DaVinciConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiReplaceConnectorInstanceByIdRequest) DaVinciConnectorInstanceReplaceRequest

func (r ApiReplaceConnectorInstanceByIdRequest) DaVinciConnectorInstanceReplaceRequest(daVinciConnectorInstanceReplaceRequest DaVinciConnectorInstanceReplaceRequest) ApiReplaceConnectorInstanceByIdRequest

func (ApiReplaceConnectorInstanceByIdRequest) Execute

func (ApiReplaceConnectorInstanceByIdRequest) XPingExternalSessionID

func (r ApiReplaceConnectorInstanceByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReplaceConnectorInstanceByIdRequest

func (ApiReplaceConnectorInstanceByIdRequest) XPingExternalTransactionID

func (r ApiReplaceConnectorInstanceByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReplaceConnectorInstanceByIdRequest

type ApiReplaceDavinciApplicationByIdRequest

type ApiReplaceDavinciApplicationByIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiReplaceDavinciApplicationByIdRequest) DaVinciApplicationReplaceRequest

func (r ApiReplaceDavinciApplicationByIdRequest) DaVinciApplicationReplaceRequest(daVinciApplicationReplaceRequest DaVinciApplicationReplaceRequest) ApiReplaceDavinciApplicationByIdRequest

func (ApiReplaceDavinciApplicationByIdRequest) Execute

func (ApiReplaceDavinciApplicationByIdRequest) XPingExternalSessionID

func (r ApiReplaceDavinciApplicationByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReplaceDavinciApplicationByIdRequest

func (ApiReplaceDavinciApplicationByIdRequest) XPingExternalTransactionID

func (r ApiReplaceDavinciApplicationByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReplaceDavinciApplicationByIdRequest

type ApiReplaceEnvironmentByIdRequest

type ApiReplaceEnvironmentByIdRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiReplaceEnvironmentByIdRequest) EnvironmentReplaceRequest

func (r ApiReplaceEnvironmentByIdRequest) EnvironmentReplaceRequest(environmentReplaceRequest EnvironmentReplaceRequest) ApiReplaceEnvironmentByIdRequest

func (ApiReplaceEnvironmentByIdRequest) Execute

func (ApiReplaceEnvironmentByIdRequest) XPingExternalSessionID

func (r ApiReplaceEnvironmentByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReplaceEnvironmentByIdRequest

func (ApiReplaceEnvironmentByIdRequest) XPingExternalTransactionID

func (r ApiReplaceEnvironmentByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReplaceEnvironmentByIdRequest

type ApiReplaceFlowPolicyByIdUsingDavinciApplicationIdRequest

type ApiReplaceFlowPolicyByIdUsingDavinciApplicationIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiReplaceFlowPolicyByIdUsingDavinciApplicationIdRequest) DaVinciFlowPolicyReplaceRequest

func (ApiReplaceFlowPolicyByIdUsingDavinciApplicationIdRequest) Execute

func (ApiReplaceFlowPolicyByIdUsingDavinciApplicationIdRequest) XPingExternalSessionID

func (ApiReplaceFlowPolicyByIdUsingDavinciApplicationIdRequest) XPingExternalTransactionID

type ApiReplaceVariableByIdRequest

type ApiReplaceVariableByIdRequest struct {
	ApiService *DaVinciVariablesApiService
	// contains filtered or unexported fields
}

func (ApiReplaceVariableByIdRequest) DaVinciVariableReplaceRequest

func (r ApiReplaceVariableByIdRequest) DaVinciVariableReplaceRequest(daVinciVariableReplaceRequest DaVinciVariableReplaceRequest) ApiReplaceVariableByIdRequest

func (ApiReplaceVariableByIdRequest) Execute

func (ApiReplaceVariableByIdRequest) XPingExternalSessionID

func (r ApiReplaceVariableByIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReplaceVariableByIdRequest

func (ApiReplaceVariableByIdRequest) XPingExternalTransactionID

func (r ApiReplaceVariableByIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReplaceVariableByIdRequest

type ApiRotateKeyByDavinciApplicationIdRequest

type ApiRotateKeyByDavinciApplicationIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiRotateKeyByDavinciApplicationIdRequest) Execute

func (ApiRotateKeyByDavinciApplicationIdRequest) RequestBody

func (ApiRotateKeyByDavinciApplicationIdRequest) XPingExternalSessionID

func (r ApiRotateKeyByDavinciApplicationIdRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiRotateKeyByDavinciApplicationIdRequest

func (ApiRotateKeyByDavinciApplicationIdRequest) XPingExternalTransactionID

func (r ApiRotateKeyByDavinciApplicationIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiRotateKeyByDavinciApplicationIdRequest

type ApiRotateSecretByDavinciApplicationIdRequest

type ApiRotateSecretByDavinciApplicationIdRequest struct {
	ApiService *DaVinciApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiRotateSecretByDavinciApplicationIdRequest) Execute

func (ApiRotateSecretByDavinciApplicationIdRequest) RequestBody

func (ApiRotateSecretByDavinciApplicationIdRequest) XPingExternalSessionID

func (ApiRotateSecretByDavinciApplicationIdRequest) XPingExternalTransactionID

func (r ApiRotateSecretByDavinciApplicationIdRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiRotateSecretByDavinciApplicationIdRequest

type BadRequestError

type BadRequestError struct {
	Id                   uuid.UUID               `json:"id"`
	Code                 BadRequestErrorCode     `json:"code"`
	Message              string                  `json:"message"`
	Details              []BadRequestErrorDetail `json:"details,omitempty"`
	AdditionalProperties map[string]interface{}
}

BadRequestError struct for BadRequestError

func NewBadRequestError

func NewBadRequestError(id uuid.UUID, code BadRequestErrorCode, message string) *BadRequestError

NewBadRequestError instantiates a new BadRequestError 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 NewBadRequestErrorWithDefaults

func NewBadRequestErrorWithDefaults() *BadRequestError

NewBadRequestErrorWithDefaults instantiates a new BadRequestError 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 (BadRequestError) Error

func (o BadRequestError) Error() string

func (*BadRequestError) GetCode

func (o *BadRequestError) GetCode() BadRequestErrorCode

GetCode returns the Code field value

func (*BadRequestError) GetCodeOk

func (o *BadRequestError) GetCodeOk() (*BadRequestErrorCode, bool)

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

func (*BadRequestError) GetDetails

func (o *BadRequestError) GetDetails() []BadRequestErrorDetail

GetDetails returns the Details field value if set, zero value otherwise.

func (*BadRequestError) GetDetailsOk

func (o *BadRequestError) GetDetailsOk() ([]BadRequestErrorDetail, bool)

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

func (*BadRequestError) GetId

func (o *BadRequestError) GetId() uuid.UUID

GetId returns the Id field value

func (*BadRequestError) GetIdOk

func (o *BadRequestError) GetIdOk() (*uuid.UUID, bool)

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

func (*BadRequestError) GetMessage

func (o *BadRequestError) GetMessage() string

GetMessage returns the Message field value

func (*BadRequestError) GetMessageOk

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

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

func (*BadRequestError) HasDetails

func (o *BadRequestError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (BadRequestError) LogValue

func (o BadRequestError) LogValue() slog.Value

func (BadRequestError) MarshalJSON

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

func (*BadRequestError) SetCode

func (o *BadRequestError) SetCode(v BadRequestErrorCode)

SetCode sets field value

func (*BadRequestError) SetDetails

func (o *BadRequestError) SetDetails(v []BadRequestErrorDetail)

SetDetails gets a reference to the given []BadRequestErrorDetail and assigns it to the Details field.

func (*BadRequestError) SetId

func (o *BadRequestError) SetId(v uuid.UUID)

SetId sets field value

func (*BadRequestError) SetMessage

func (o *BadRequestError) SetMessage(v string)

SetMessage sets field value

func (BadRequestError) ToMap

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

func (*BadRequestError) UnmarshalJSON

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

type BadRequestErrorCode

type BadRequestErrorCode string

BadRequestErrorCode the model 'BadRequestErrorCode'

const (
	BADREQUESTERRORCODE_INVALID_DATA    BadRequestErrorCode = "INVALID_DATA"
	BADREQUESTERRORCODE_INVALID_REQUEST BadRequestErrorCode = "INVALID_REQUEST"
	BADREQUESTERRORCODE_REQUEST_FAILED  BadRequestErrorCode = "REQUEST_FAILED"
)

List of Bad_Request_Error_Code

func NewBadRequestErrorCodeFromValue

func NewBadRequestErrorCodeFromValue(v string) (*BadRequestErrorCode, error)

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

func (BadRequestErrorCode) IsValid

func (v BadRequestErrorCode) IsValid() bool

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

func (BadRequestErrorCode) Ptr

Ptr returns reference to Bad_Request_Error_Code value

func (*BadRequestErrorCode) UnmarshalJSON

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

type BadRequestErrorDetail

type BadRequestErrorDetail struct {
	Code                 BadRequestErrorDetailCode        `json:"code"`
	Message              string                           `json:"message"`
	InnerError           *BadRequestErrorDetailInnerError `json:"innerError,omitempty"`
	Target               *string                          `json:"target,omitempty"`
	AdditionalProperties map[string]interface{}
}

BadRequestErrorDetail struct for BadRequestErrorDetail

func NewBadRequestErrorDetail

func NewBadRequestErrorDetail(code BadRequestErrorDetailCode, message string) *BadRequestErrorDetail

NewBadRequestErrorDetail instantiates a new BadRequestErrorDetail 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 NewBadRequestErrorDetailWithDefaults

func NewBadRequestErrorDetailWithDefaults() *BadRequestErrorDetail

NewBadRequestErrorDetailWithDefaults instantiates a new BadRequestErrorDetail 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 (*BadRequestErrorDetail) GetCode

GetCode returns the Code field value

func (*BadRequestErrorDetail) GetCodeOk

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

func (*BadRequestErrorDetail) GetInnerError

GetInnerError returns the InnerError field value if set, zero value otherwise.

func (*BadRequestErrorDetail) GetInnerErrorOk

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

func (*BadRequestErrorDetail) GetMessage

func (o *BadRequestErrorDetail) GetMessage() string

GetMessage returns the Message field value

func (*BadRequestErrorDetail) GetMessageOk

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

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

func (*BadRequestErrorDetail) GetTarget

func (o *BadRequestErrorDetail) GetTarget() string

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

func (*BadRequestErrorDetail) GetTargetOk

func (o *BadRequestErrorDetail) GetTargetOk() (*string, 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 (*BadRequestErrorDetail) HasInnerError

func (o *BadRequestErrorDetail) HasInnerError() bool

HasInnerError returns a boolean if a field has been set.

func (*BadRequestErrorDetail) HasTarget

func (o *BadRequestErrorDetail) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (BadRequestErrorDetail) LogValue

func (o BadRequestErrorDetail) LogValue() slog.Value

func (BadRequestErrorDetail) MarshalJSON

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

func (*BadRequestErrorDetail) SetCode

SetCode sets field value

func (*BadRequestErrorDetail) SetInnerError

SetInnerError gets a reference to the given BadRequestErrorDetailInnerError and assigns it to the InnerError field.

func (*BadRequestErrorDetail) SetMessage

func (o *BadRequestErrorDetail) SetMessage(v string)

SetMessage sets field value

func (*BadRequestErrorDetail) SetTarget

func (o *BadRequestErrorDetail) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (BadRequestErrorDetail) ToMap

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

func (*BadRequestErrorDetail) UnmarshalJSON

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

type BadRequestErrorDetailCode

type BadRequestErrorDetailCode string

BadRequestErrorDetailCode the model 'BadRequestErrorDetailCode'

const (
	BADREQUESTERRORDETAILCODE_ACCOUNT_NOT_USABLE        BadRequestErrorDetailCode = "ACCOUNT_NOT_USABLE"
	BADREQUESTERRORDETAILCODE_CONSTRAINT_VIOLATION      BadRequestErrorDetailCode = "CONSTRAINT_VIOLATION"
	BADREQUESTERRORDETAILCODE_EMPTY_VALUE               BadRequestErrorDetailCode = "EMPTY_VALUE"
	BADREQUESTERRORDETAILCODE_INVALID_FILTER            BadRequestErrorDetailCode = "INVALID_FILTER"
	BADREQUESTERRORDETAILCODE_INVALID_OTP               BadRequestErrorDetailCode = "INVALID_OTP"
	BADREQUESTERRORDETAILCODE_INVALID_PARAMETER         BadRequestErrorDetailCode = "INVALID_PARAMETER"
	BADREQUESTERRORDETAILCODE_INVALID_VALUE             BadRequestErrorDetailCode = "INVALID_VALUE"
	BADREQUESTERRORDETAILCODE_MFA_AUTH_METHODS_CONFLICT BadRequestErrorDetailCode = "MFA_AUTH_METHODS_CONFLICT"
	BADREQUESTERRORDETAILCODE_NO_PASSWORD               BadRequestErrorDetailCode = "NO_PASSWORD"
	BADREQUESTERRORDETAILCODE_OUT_OF_RANGE              BadRequestErrorDetailCode = "OUT_OF_RANGE"
	BADREQUESTERRORDETAILCODE_REQUIRED_VALUE            BadRequestErrorDetailCode = "REQUIRED_VALUE"
	BADREQUESTERRORDETAILCODE_SIZE_LIMIT_EXCEEDED       BadRequestErrorDetailCode = "SIZE_LIMIT_EXCEEDED"
	BADREQUESTERRORDETAILCODE_UNIQUENESS_VIOLATION      BadRequestErrorDetailCode = "UNIQUENESS_VIOLATION"
)

List of Bad_Request_Error_Detail_Code

func NewBadRequestErrorDetailCodeFromValue

func NewBadRequestErrorDetailCodeFromValue(v string) (*BadRequestErrorDetailCode, error)

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

func (BadRequestErrorDetailCode) IsValid

func (v BadRequestErrorDetailCode) IsValid() bool

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

func (BadRequestErrorDetailCode) Ptr

Ptr returns reference to Bad_Request_Error_Detail_Code value

func (*BadRequestErrorDetailCode) UnmarshalJSON

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

type BadRequestErrorDetailInnerError

type BadRequestErrorDetailInnerError struct {
	AllowedPattern       *string    `json:"allowedPattern,omitempty"`
	AllowedValues        []string   `json:"allowedValues,omitempty"`
	Claim                *string    `json:"claim,omitempty"`
	ExistingId           *uuid.UUID `json:"existingId,omitempty"`
	MaximumValue         *float32   `json:"maximumValue,omitempty"`
	QuotaLimit           *float32   `json:"quotaLimit,omitempty"`
	QuotaResetTime       *time.Time `json:"quotaResetTime,omitempty"`
	RangeMaximumValue    *float32   `json:"rangeMaximumValue,omitempty"`
	RangeMinimumValue    *float32   `json:"rangeMinimumValue,omitempty"`
	AdditionalProperties map[string]interface{}
}

BadRequestErrorDetailInnerError struct for BadRequestErrorDetailInnerError

func NewBadRequestErrorDetailInnerError

func NewBadRequestErrorDetailInnerError() *BadRequestErrorDetailInnerError

NewBadRequestErrorDetailInnerError instantiates a new BadRequestErrorDetailInnerError 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 NewBadRequestErrorDetailInnerErrorWithDefaults

func NewBadRequestErrorDetailInnerErrorWithDefaults() *BadRequestErrorDetailInnerError

NewBadRequestErrorDetailInnerErrorWithDefaults instantiates a new BadRequestErrorDetailInnerError 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 (*BadRequestErrorDetailInnerError) GetAllowedPattern

func (o *BadRequestErrorDetailInnerError) GetAllowedPattern() string

GetAllowedPattern returns the AllowedPattern field value if set, zero value otherwise.

func (*BadRequestErrorDetailInnerError) GetAllowedPatternOk

func (o *BadRequestErrorDetailInnerError) GetAllowedPatternOk() (*string, bool)

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

func (*BadRequestErrorDetailInnerError) GetAllowedValues

func (o *BadRequestErrorDetailInnerError) GetAllowedValues() []string

GetAllowedValues returns the AllowedValues field value if set, zero value otherwise.

func (*BadRequestErrorDetailInnerError) GetAllowedValuesOk

func (o *BadRequestErrorDetailInnerError) GetAllowedValuesOk() ([]string, bool)

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

func (*BadRequestErrorDetailInnerError) GetClaim

GetClaim returns the Claim field value if set, zero value otherwise.

func (*BadRequestErrorDetailInnerError) GetClaimOk

func (o *BadRequestErrorDetailInnerError) GetClaimOk() (*string, bool)

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

func (*BadRequestErrorDetailInnerError) GetExistingId

func (o *BadRequestErrorDetailInnerError) GetExistingId() uuid.UUID

GetExistingId returns the ExistingId field value if set, zero value otherwise.

func (*BadRequestErrorDetailInnerError) GetExistingIdOk

func (o *BadRequestErrorDetailInnerError) GetExistingIdOk() (*uuid.UUID, bool)

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

func (*BadRequestErrorDetailInnerError) GetMaximumValue

func (o *BadRequestErrorDetailInnerError) GetMaximumValue() float32

GetMaximumValue returns the MaximumValue field value if set, zero value otherwise.

func (*BadRequestErrorDetailInnerError) GetMaximumValueOk

func (o *BadRequestErrorDetailInnerError) GetMaximumValueOk() (*float32, bool)

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

func (*BadRequestErrorDetailInnerError) GetQuotaLimit

func (o *BadRequestErrorDetailInnerError) GetQuotaLimit() float32

GetQuotaLimit returns the QuotaLimit field value if set, zero value otherwise.

func (*BadRequestErrorDetailInnerError) GetQuotaLimitOk

func (o *BadRequestErrorDetailInnerError) GetQuotaLimitOk() (*float32, bool)

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

func (*BadRequestErrorDetailInnerError) GetQuotaResetTime

func (o *BadRequestErrorDetailInnerError) GetQuotaResetTime() time.Time

GetQuotaResetTime returns the QuotaResetTime field value if set, zero value otherwise.

func (*BadRequestErrorDetailInnerError) GetQuotaResetTimeOk

func (o *BadRequestErrorDetailInnerError) GetQuotaResetTimeOk() (*time.Time, bool)

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

func (*BadRequestErrorDetailInnerError) GetRangeMaximumValue

func (o *BadRequestErrorDetailInnerError) GetRangeMaximumValue() float32

GetRangeMaximumValue returns the RangeMaximumValue field value if set, zero value otherwise.

func (*BadRequestErrorDetailInnerError) GetRangeMaximumValueOk

func (o *BadRequestErrorDetailInnerError) GetRangeMaximumValueOk() (*float32, bool)

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

func (*BadRequestErrorDetailInnerError) GetRangeMinimumValue

func (o *BadRequestErrorDetailInnerError) GetRangeMinimumValue() float32

GetRangeMinimumValue returns the RangeMinimumValue field value if set, zero value otherwise.

func (*BadRequestErrorDetailInnerError) GetRangeMinimumValueOk

func (o *BadRequestErrorDetailInnerError) GetRangeMinimumValueOk() (*float32, bool)

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

func (*BadRequestErrorDetailInnerError) HasAllowedPattern

func (o *BadRequestErrorDetailInnerError) HasAllowedPattern() bool

HasAllowedPattern returns a boolean if a field has been set.

func (*BadRequestErrorDetailInnerError) HasAllowedValues

func (o *BadRequestErrorDetailInnerError) HasAllowedValues() bool

HasAllowedValues returns a boolean if a field has been set.

func (*BadRequestErrorDetailInnerError) HasClaim

func (o *BadRequestErrorDetailInnerError) HasClaim() bool

HasClaim returns a boolean if a field has been set.

func (*BadRequestErrorDetailInnerError) HasExistingId

func (o *BadRequestErrorDetailInnerError) HasExistingId() bool

HasExistingId returns a boolean if a field has been set.

func (*BadRequestErrorDetailInnerError) HasMaximumValue

func (o *BadRequestErrorDetailInnerError) HasMaximumValue() bool

HasMaximumValue returns a boolean if a field has been set.

func (*BadRequestErrorDetailInnerError) HasQuotaLimit

func (o *BadRequestErrorDetailInnerError) HasQuotaLimit() bool

HasQuotaLimit returns a boolean if a field has been set.

func (*BadRequestErrorDetailInnerError) HasQuotaResetTime

func (o *BadRequestErrorDetailInnerError) HasQuotaResetTime() bool

HasQuotaResetTime returns a boolean if a field has been set.

func (*BadRequestErrorDetailInnerError) HasRangeMaximumValue

func (o *BadRequestErrorDetailInnerError) HasRangeMaximumValue() bool

HasRangeMaximumValue returns a boolean if a field has been set.

func (*BadRequestErrorDetailInnerError) HasRangeMinimumValue

func (o *BadRequestErrorDetailInnerError) HasRangeMinimumValue() bool

HasRangeMinimumValue returns a boolean if a field has been set.

func (BadRequestErrorDetailInnerError) LogValue

func (BadRequestErrorDetailInnerError) MarshalJSON

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

func (*BadRequestErrorDetailInnerError) SetAllowedPattern

func (o *BadRequestErrorDetailInnerError) SetAllowedPattern(v string)

SetAllowedPattern gets a reference to the given string and assigns it to the AllowedPattern field.

func (*BadRequestErrorDetailInnerError) SetAllowedValues

func (o *BadRequestErrorDetailInnerError) SetAllowedValues(v []string)

SetAllowedValues gets a reference to the given []string and assigns it to the AllowedValues field.

func (*BadRequestErrorDetailInnerError) SetClaim

func (o *BadRequestErrorDetailInnerError) SetClaim(v string)

SetClaim gets a reference to the given string and assigns it to the Claim field.

func (*BadRequestErrorDetailInnerError) SetExistingId

func (o *BadRequestErrorDetailInnerError) SetExistingId(v uuid.UUID)

SetExistingId gets a reference to the given uuid.UUID and assigns it to the ExistingId field.

func (*BadRequestErrorDetailInnerError) SetMaximumValue

func (o *BadRequestErrorDetailInnerError) SetMaximumValue(v float32)

SetMaximumValue gets a reference to the given float32 and assigns it to the MaximumValue field.

func (*BadRequestErrorDetailInnerError) SetQuotaLimit

func (o *BadRequestErrorDetailInnerError) SetQuotaLimit(v float32)

SetQuotaLimit gets a reference to the given float32 and assigns it to the QuotaLimit field.

func (*BadRequestErrorDetailInnerError) SetQuotaResetTime

func (o *BadRequestErrorDetailInnerError) SetQuotaResetTime(v time.Time)

SetQuotaResetTime gets a reference to the given time.Time and assigns it to the QuotaResetTime field.

func (*BadRequestErrorDetailInnerError) SetRangeMaximumValue

func (o *BadRequestErrorDetailInnerError) SetRangeMaximumValue(v float32)

SetRangeMaximumValue gets a reference to the given float32 and assigns it to the RangeMaximumValue field.

func (*BadRequestErrorDetailInnerError) SetRangeMinimumValue

func (o *BadRequestErrorDetailInnerError) SetRangeMinimumValue(v float32)

SetRangeMinimumValue gets a reference to the given float32 and assigns it to the RangeMinimumValue field.

func (BadRequestErrorDetailInnerError) ToMap

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

func (*BadRequestErrorDetailInnerError) UnmarshalJSON

func (o *BadRequestErrorDetailInnerError) UnmarshalJSON(data []byte) (err 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"`
	DefaultServerIndex int               `json:"defaultServerIndex,omitempty"`
	ProxyURL           *string           `json:"proxyURL,omitempty"`
	Servers            ServerConfigurations
	OperationServers   map[string]ServerConfigurations
	HTTPClient         *http.Client
	Service            *pingone.Configuration `json:"service,omitempty"`
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration(serviceCfg *pingone.Configuration) *Configuration

NewConfiguration returns a new Configuration object with builder pattern as param

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) AppendUserAgent

func (c *Configuration) AppendUserAgent(userAgent string)

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

func (*Configuration) SetDefaultServerIndex

func (c *Configuration) SetDefaultServerIndex(defaultServerIndex int)

func (*Configuration) SetDefaultServerVariableDefaultValue

func (c *Configuration) SetDefaultServerVariableDefaultValue(variable string, value string) error

func (*Configuration) SetServerVariableDefaultValue

func (c *Configuration) SetServerVariableDefaultValue(serverIndex int, variable string, value string) error

type DaVinciApplicationCollectionResponse

type DaVinciApplicationCollectionResponse struct {
	Links                DaVinciApplicationCollectionResponseLinks    `json:"_links"`
	Embedded             DaVinciApplicationCollectionResponseEmbedded `json:"_embedded"`
	AdditionalProperties map[string]interface{}
}

DaVinciApplicationCollectionResponse struct for DaVinciApplicationCollectionResponse

func NewDaVinciApplicationCollectionResponse

NewDaVinciApplicationCollectionResponse instantiates a new DaVinciApplicationCollectionResponse 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 NewDaVinciApplicationCollectionResponseWithDefaults

func NewDaVinciApplicationCollectionResponseWithDefaults() *DaVinciApplicationCollectionResponse

NewDaVinciApplicationCollectionResponseWithDefaults instantiates a new DaVinciApplicationCollectionResponse 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 (*DaVinciApplicationCollectionResponse) GetEmbedded

GetEmbedded returns the Embedded field value

func (*DaVinciApplicationCollectionResponse) GetEmbeddedOk

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

GetLinks returns the Links field value

func (*DaVinciApplicationCollectionResponse) GetLinksOk

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

func (DaVinciApplicationCollectionResponse) LogValue

func (DaVinciApplicationCollectionResponse) MarshalJSON

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

func (*DaVinciApplicationCollectionResponse) SetEmbedded

SetEmbedded sets field value

SetLinks sets field value

func (DaVinciApplicationCollectionResponse) ToMap

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

func (*DaVinciApplicationCollectionResponse) UnmarshalJSON

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

type DaVinciApplicationCollectionResponseEmbedded

type DaVinciApplicationCollectionResponseEmbedded struct {
	DavinciApplications  []DaVinciApplicationResponse `json:"davinciApplications"`
	AdditionalProperties map[string]interface{}
}

DaVinciApplicationCollectionResponseEmbedded struct for DaVinciApplicationCollectionResponseEmbedded

func NewDaVinciApplicationCollectionResponseEmbedded

func NewDaVinciApplicationCollectionResponseEmbedded(davinciApplications []DaVinciApplicationResponse) *DaVinciApplicationCollectionResponseEmbedded

NewDaVinciApplicationCollectionResponseEmbedded instantiates a new DaVinciApplicationCollectionResponseEmbedded 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 NewDaVinciApplicationCollectionResponseEmbeddedWithDefaults

func NewDaVinciApplicationCollectionResponseEmbeddedWithDefaults() *DaVinciApplicationCollectionResponseEmbedded

NewDaVinciApplicationCollectionResponseEmbeddedWithDefaults instantiates a new DaVinciApplicationCollectionResponseEmbedded 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 (*DaVinciApplicationCollectionResponseEmbedded) GetDavinciApplications

GetDavinciApplications returns the DavinciApplications field value

func (*DaVinciApplicationCollectionResponseEmbedded) GetDavinciApplicationsOk

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

func (DaVinciApplicationCollectionResponseEmbedded) LogValue

func (DaVinciApplicationCollectionResponseEmbedded) MarshalJSON

func (*DaVinciApplicationCollectionResponseEmbedded) SetDavinciApplications

SetDavinciApplications sets field value

func (DaVinciApplicationCollectionResponseEmbedded) ToMap

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

func (*DaVinciApplicationCollectionResponseEmbedded) UnmarshalJSON

func (o *DaVinciApplicationCollectionResponseEmbedded) UnmarshalJSON(data []byte) (err error)
type DaVinciApplicationCollectionResponseLinks struct {
	Environment          JSONHALLink `json:"environment"`
	Self                 JSONHALLink `json:"self"`
	AdditionalProperties map[string]interface{}
}

DaVinciApplicationCollectionResponseLinks struct for DaVinciApplicationCollectionResponseLinks

func NewDaVinciApplicationCollectionResponseLinks(environment JSONHALLink, self JSONHALLink) *DaVinciApplicationCollectionResponseLinks

NewDaVinciApplicationCollectionResponseLinks instantiates a new DaVinciApplicationCollectionResponseLinks 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 NewDaVinciApplicationCollectionResponseLinksWithDefaults

func NewDaVinciApplicationCollectionResponseLinksWithDefaults() *DaVinciApplicationCollectionResponseLinks

NewDaVinciApplicationCollectionResponseLinksWithDefaults instantiates a new DaVinciApplicationCollectionResponseLinks 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 (*DaVinciApplicationCollectionResponseLinks) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciApplicationCollectionResponseLinks) GetEnvironmentOk

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

func (*DaVinciApplicationCollectionResponseLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciApplicationCollectionResponseLinks) GetSelfOk

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

func (DaVinciApplicationCollectionResponseLinks) LogValue

func (DaVinciApplicationCollectionResponseLinks) MarshalJSON

func (*DaVinciApplicationCollectionResponseLinks) SetEnvironment

SetEnvironment sets field value

func (*DaVinciApplicationCollectionResponseLinks) SetSelf

SetSelf sets field value

func (DaVinciApplicationCollectionResponseLinks) ToMap

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

func (*DaVinciApplicationCollectionResponseLinks) UnmarshalJSON

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

type DaVinciApplicationCreateRequest

type DaVinciApplicationCreateRequest struct {
	Name                 string `json:"name" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	AdditionalProperties map[string]interface{}
}

DaVinciApplicationCreateRequest struct for DaVinciApplicationCreateRequest

func NewDaVinciApplicationCreateRequest

func NewDaVinciApplicationCreateRequest(name string) *DaVinciApplicationCreateRequest

NewDaVinciApplicationCreateRequest instantiates a new DaVinciApplicationCreateRequest 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 NewDaVinciApplicationCreateRequestWithDefaults

func NewDaVinciApplicationCreateRequestWithDefaults() *DaVinciApplicationCreateRequest

NewDaVinciApplicationCreateRequestWithDefaults instantiates a new DaVinciApplicationCreateRequest 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 (*DaVinciApplicationCreateRequest) GetName

GetName returns the Name field value

func (*DaVinciApplicationCreateRequest) GetNameOk

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

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

func (DaVinciApplicationCreateRequest) LogValue

func (DaVinciApplicationCreateRequest) MarshalJSON

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

func (*DaVinciApplicationCreateRequest) SetName

SetName sets field value

func (DaVinciApplicationCreateRequest) ToMap

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

func (*DaVinciApplicationCreateRequest) UnmarshalJSON

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

type DaVinciApplicationReplaceRequest

type DaVinciApplicationReplaceRequest struct {
	Name                 string                                 `json:"name" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	ApiKeyEnabled        *bool                                  `json:"apiKeyEnabled,omitempty"`
	Oauth                *DaVinciApplicationReplaceRequestOAuth `json:"oauth,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciApplicationReplaceRequest struct for DaVinciApplicationReplaceRequest

func NewDaVinciApplicationReplaceRequest

func NewDaVinciApplicationReplaceRequest(name string) *DaVinciApplicationReplaceRequest

NewDaVinciApplicationReplaceRequest instantiates a new DaVinciApplicationReplaceRequest 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 NewDaVinciApplicationReplaceRequestWithDefaults

func NewDaVinciApplicationReplaceRequestWithDefaults() *DaVinciApplicationReplaceRequest

NewDaVinciApplicationReplaceRequestWithDefaults instantiates a new DaVinciApplicationReplaceRequest 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 (*DaVinciApplicationReplaceRequest) GetApiKeyEnabled

func (o *DaVinciApplicationReplaceRequest) GetApiKeyEnabled() bool

GetApiKeyEnabled returns the ApiKeyEnabled field value if set, zero value otherwise.

func (*DaVinciApplicationReplaceRequest) GetApiKeyEnabledOk

func (o *DaVinciApplicationReplaceRequest) GetApiKeyEnabledOk() (*bool, bool)

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

func (*DaVinciApplicationReplaceRequest) GetName

GetName returns the Name field value

func (*DaVinciApplicationReplaceRequest) GetNameOk

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

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

func (*DaVinciApplicationReplaceRequest) GetOauth

GetOauth returns the Oauth field value if set, zero value otherwise.

func (*DaVinciApplicationReplaceRequest) GetOauthOk

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

func (*DaVinciApplicationReplaceRequest) HasApiKeyEnabled

func (o *DaVinciApplicationReplaceRequest) HasApiKeyEnabled() bool

HasApiKeyEnabled returns a boolean if a field has been set.

func (*DaVinciApplicationReplaceRequest) HasOauth

func (o *DaVinciApplicationReplaceRequest) HasOauth() bool

HasOauth returns a boolean if a field has been set.

func (DaVinciApplicationReplaceRequest) LogValue

func (DaVinciApplicationReplaceRequest) MarshalJSON

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

func (*DaVinciApplicationReplaceRequest) SetApiKeyEnabled

func (o *DaVinciApplicationReplaceRequest) SetApiKeyEnabled(v bool)

SetApiKeyEnabled gets a reference to the given bool and assigns it to the ApiKeyEnabled field.

func (*DaVinciApplicationReplaceRequest) SetName

SetName sets field value

func (*DaVinciApplicationReplaceRequest) SetOauth

SetOauth gets a reference to the given DaVinciApplicationReplaceRequestOAuth and assigns it to the Oauth field.

func (DaVinciApplicationReplaceRequest) ToMap

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

func (*DaVinciApplicationReplaceRequest) UnmarshalJSON

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

type DaVinciApplicationReplaceRequestOAuth

type DaVinciApplicationReplaceRequestOAuth struct {
	EnforceSignedRequestOpenid *bool                                            `json:"enforceSignedRequestOpenid,omitempty"`
	GrantTypes                 []DaVinciApplicationReplaceRequestOAuthGrantType `json:"grantTypes,omitempty"`
	LogoutUris                 []string                                         `json:"logoutUris,omitempty"`
	RedirectUris               []string                                         `json:"redirectUris,omitempty"`
	Scopes                     []DaVinciApplicationReplaceRequestOAuthScope     `json:"scopes,omitempty"`
	SpJwksOpenid               *string                                          `json:"spJwksOpenid,omitempty"`
	SpjwksUrl                  *string                                          `json:"spjwksUrl,omitempty"`
	AdditionalProperties       map[string]interface{}
}

DaVinciApplicationReplaceRequestOAuth struct for DaVinciApplicationReplaceRequestOAuth

func NewDaVinciApplicationReplaceRequestOAuth

func NewDaVinciApplicationReplaceRequestOAuth() *DaVinciApplicationReplaceRequestOAuth

NewDaVinciApplicationReplaceRequestOAuth instantiates a new DaVinciApplicationReplaceRequestOAuth 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 NewDaVinciApplicationReplaceRequestOAuthWithDefaults

func NewDaVinciApplicationReplaceRequestOAuthWithDefaults() *DaVinciApplicationReplaceRequestOAuth

NewDaVinciApplicationReplaceRequestOAuthWithDefaults instantiates a new DaVinciApplicationReplaceRequestOAuth 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 (*DaVinciApplicationReplaceRequestOAuth) GetEnforceSignedRequestOpenid

func (o *DaVinciApplicationReplaceRequestOAuth) GetEnforceSignedRequestOpenid() bool

GetEnforceSignedRequestOpenid returns the EnforceSignedRequestOpenid field value if set, zero value otherwise.

func (*DaVinciApplicationReplaceRequestOAuth) GetEnforceSignedRequestOpenidOk

func (o *DaVinciApplicationReplaceRequestOAuth) GetEnforceSignedRequestOpenidOk() (*bool, bool)

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

func (*DaVinciApplicationReplaceRequestOAuth) GetGrantTypes

GetGrantTypes returns the GrantTypes field value if set, zero value otherwise.

func (*DaVinciApplicationReplaceRequestOAuth) GetGrantTypesOk

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

func (*DaVinciApplicationReplaceRequestOAuth) GetLogoutUris

func (o *DaVinciApplicationReplaceRequestOAuth) GetLogoutUris() []string

GetLogoutUris returns the LogoutUris field value if set, zero value otherwise.

func (*DaVinciApplicationReplaceRequestOAuth) GetLogoutUrisOk

func (o *DaVinciApplicationReplaceRequestOAuth) GetLogoutUrisOk() ([]string, bool)

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

func (*DaVinciApplicationReplaceRequestOAuth) GetRedirectUris

func (o *DaVinciApplicationReplaceRequestOAuth) GetRedirectUris() []string

GetRedirectUris returns the RedirectUris field value if set, zero value otherwise.

func (*DaVinciApplicationReplaceRequestOAuth) GetRedirectUrisOk

func (o *DaVinciApplicationReplaceRequestOAuth) GetRedirectUrisOk() ([]string, bool)

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

func (*DaVinciApplicationReplaceRequestOAuth) GetScopes

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*DaVinciApplicationReplaceRequestOAuth) GetScopesOk

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

func (*DaVinciApplicationReplaceRequestOAuth) GetSpJwksOpenid

func (o *DaVinciApplicationReplaceRequestOAuth) GetSpJwksOpenid() string

GetSpJwksOpenid returns the SpJwksOpenid field value if set, zero value otherwise.

func (*DaVinciApplicationReplaceRequestOAuth) GetSpJwksOpenidOk

func (o *DaVinciApplicationReplaceRequestOAuth) GetSpJwksOpenidOk() (*string, bool)

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

func (*DaVinciApplicationReplaceRequestOAuth) GetSpjwksUrl

GetSpjwksUrl returns the SpjwksUrl field value if set, zero value otherwise.

func (*DaVinciApplicationReplaceRequestOAuth) GetSpjwksUrlOk

func (o *DaVinciApplicationReplaceRequestOAuth) GetSpjwksUrlOk() (*string, bool)

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

func (*DaVinciApplicationReplaceRequestOAuth) HasEnforceSignedRequestOpenid

func (o *DaVinciApplicationReplaceRequestOAuth) HasEnforceSignedRequestOpenid() bool

HasEnforceSignedRequestOpenid returns a boolean if a field has been set.

func (*DaVinciApplicationReplaceRequestOAuth) HasGrantTypes

func (o *DaVinciApplicationReplaceRequestOAuth) HasGrantTypes() bool

HasGrantTypes returns a boolean if a field has been set.

func (*DaVinciApplicationReplaceRequestOAuth) HasLogoutUris

func (o *DaVinciApplicationReplaceRequestOAuth) HasLogoutUris() bool

HasLogoutUris returns a boolean if a field has been set.

func (*DaVinciApplicationReplaceRequestOAuth) HasRedirectUris

func (o *DaVinciApplicationReplaceRequestOAuth) HasRedirectUris() bool

HasRedirectUris returns a boolean if a field has been set.

func (*DaVinciApplicationReplaceRequestOAuth) HasScopes

HasScopes returns a boolean if a field has been set.

func (*DaVinciApplicationReplaceRequestOAuth) HasSpJwksOpenid

func (o *DaVinciApplicationReplaceRequestOAuth) HasSpJwksOpenid() bool

HasSpJwksOpenid returns a boolean if a field has been set.

func (*DaVinciApplicationReplaceRequestOAuth) HasSpjwksUrl

func (o *DaVinciApplicationReplaceRequestOAuth) HasSpjwksUrl() bool

HasSpjwksUrl returns a boolean if a field has been set.

func (DaVinciApplicationReplaceRequestOAuth) LogValue

func (DaVinciApplicationReplaceRequestOAuth) MarshalJSON

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

func (*DaVinciApplicationReplaceRequestOAuth) SetEnforceSignedRequestOpenid

func (o *DaVinciApplicationReplaceRequestOAuth) SetEnforceSignedRequestOpenid(v bool)

SetEnforceSignedRequestOpenid gets a reference to the given bool and assigns it to the EnforceSignedRequestOpenid field.

func (*DaVinciApplicationReplaceRequestOAuth) SetGrantTypes

SetGrantTypes gets a reference to the given []DaVinciApplicationReplaceRequestOAuthGrantType and assigns it to the GrantTypes field.

func (*DaVinciApplicationReplaceRequestOAuth) SetLogoutUris

func (o *DaVinciApplicationReplaceRequestOAuth) SetLogoutUris(v []string)

SetLogoutUris gets a reference to the given []string and assigns it to the LogoutUris field.

func (*DaVinciApplicationReplaceRequestOAuth) SetRedirectUris

func (o *DaVinciApplicationReplaceRequestOAuth) SetRedirectUris(v []string)

SetRedirectUris gets a reference to the given []string and assigns it to the RedirectUris field.

func (*DaVinciApplicationReplaceRequestOAuth) SetScopes

SetScopes gets a reference to the given []DaVinciApplicationReplaceRequestOAuthScope and assigns it to the Scopes field.

func (*DaVinciApplicationReplaceRequestOAuth) SetSpJwksOpenid

func (o *DaVinciApplicationReplaceRequestOAuth) SetSpJwksOpenid(v string)

SetSpJwksOpenid gets a reference to the given string and assigns it to the SpJwksOpenid field.

func (*DaVinciApplicationReplaceRequestOAuth) SetSpjwksUrl

func (o *DaVinciApplicationReplaceRequestOAuth) SetSpjwksUrl(v string)

SetSpjwksUrl gets a reference to the given string and assigns it to the SpjwksUrl field.

func (DaVinciApplicationReplaceRequestOAuth) ToMap

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

func (*DaVinciApplicationReplaceRequestOAuth) UnmarshalJSON

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

type DaVinciApplicationReplaceRequestOAuthGrantType

type DaVinciApplicationReplaceRequestOAuthGrantType string

DaVinciApplicationReplaceRequestOAuthGrantType the model 'DaVinciApplicationReplaceRequestOAuthGrantType'

const (
	DAVINCIAPPLICATIONREPLACEREQUESTOAUTHGRANTTYPE_AUTHORIZATION_CODE DaVinciApplicationReplaceRequestOAuthGrantType = "authorizationCode"
	DAVINCIAPPLICATIONREPLACEREQUESTOAUTHGRANTTYPE_CLIENT_CREDENTIALS DaVinciApplicationReplaceRequestOAuthGrantType = "clientCredentials"
	DAVINCIAPPLICATIONREPLACEREQUESTOAUTHGRANTTYPE_IMPLICIT           DaVinciApplicationReplaceRequestOAuthGrantType = "implicit"
)

List of DaVinci_Application_Replace_Request_OAuth_Grant_Type

func NewDaVinciApplicationReplaceRequestOAuthGrantTypeFromValue

func NewDaVinciApplicationReplaceRequestOAuthGrantTypeFromValue(v string) (*DaVinciApplicationReplaceRequestOAuthGrantType, error)

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

func (DaVinciApplicationReplaceRequestOAuthGrantType) IsValid

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

func (DaVinciApplicationReplaceRequestOAuthGrantType) Ptr

Ptr returns reference to DaVinci_Application_Replace_Request_OAuth_Grant_Type value

func (*DaVinciApplicationReplaceRequestOAuthGrantType) UnmarshalJSON

type DaVinciApplicationReplaceRequestOAuthScope

type DaVinciApplicationReplaceRequestOAuthScope string

DaVinciApplicationReplaceRequestOAuthScope the model 'DaVinciApplicationReplaceRequestOAuthScope'

const (
	DAVINCIAPPLICATIONREPLACEREQUESTOAUTHSCOPE_FLOW_ANALYTICS DaVinciApplicationReplaceRequestOAuthScope = "flow_analytics"
	DAVINCIAPPLICATIONREPLACEREQUESTOAUTHSCOPE_OFFLINE_ACCESS DaVinciApplicationReplaceRequestOAuthScope = "offline_access"
	DAVINCIAPPLICATIONREPLACEREQUESTOAUTHSCOPE_OPENID         DaVinciApplicationReplaceRequestOAuthScope = "openid"
	DAVINCIAPPLICATIONREPLACEREQUESTOAUTHSCOPE_PROFILE        DaVinciApplicationReplaceRequestOAuthScope = "profile"
)

List of DaVinci_Application_Replace_Request_OAuth_Scope

func NewDaVinciApplicationReplaceRequestOAuthScopeFromValue

func NewDaVinciApplicationReplaceRequestOAuthScopeFromValue(v string) (*DaVinciApplicationReplaceRequestOAuthScope, error)

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

func (DaVinciApplicationReplaceRequestOAuthScope) IsValid

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

func (DaVinciApplicationReplaceRequestOAuthScope) Ptr

Ptr returns reference to DaVinci_Application_Replace_Request_OAuth_Scope value

func (*DaVinciApplicationReplaceRequestOAuthScope) UnmarshalJSON

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

type DaVinciApplicationResponse

type DaVinciApplicationResponse struct {
	Links                DaVinciApplicationResponseLinks  `json:"_links"`
	ApiKey               DaVinciApplicationResponseApiKey `json:"apiKey"`
	Environment          ResourceRelationshipReadOnly     `json:"environment"`
	Id                   string                           `json:"id"`
	Name                 string                           `json:"name"`
	Oauth                DaVinciApplicationResponseOAuth  `json:"oauth"`
	CreatedAt            *time.Time                       `json:"createdAt,omitempty"`
	UpdatedAt            *time.Time                       `json:"updatedAt,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciApplicationResponse struct for DaVinciApplicationResponse

func NewDaVinciApplicationResponse

NewDaVinciApplicationResponse instantiates a new DaVinciApplicationResponse 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 NewDaVinciApplicationResponseWithDefaults

func NewDaVinciApplicationResponseWithDefaults() *DaVinciApplicationResponse

NewDaVinciApplicationResponseWithDefaults instantiates a new DaVinciApplicationResponse 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 (*DaVinciApplicationResponse) GetApiKey

GetApiKey returns the ApiKey field value

func (*DaVinciApplicationResponse) GetApiKeyOk

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

func (*DaVinciApplicationResponse) GetCreatedAt

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

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

func (*DaVinciApplicationResponse) GetCreatedAtOk

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

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

func (*DaVinciApplicationResponse) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciApplicationResponse) GetEnvironmentOk

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

func (*DaVinciApplicationResponse) GetId

GetId returns the Id field value

func (*DaVinciApplicationResponse) GetIdOk

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

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

GetLinks returns the Links field value

func (*DaVinciApplicationResponse) GetLinksOk

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

func (*DaVinciApplicationResponse) GetName

func (o *DaVinciApplicationResponse) GetName() string

GetName returns the Name field value

func (*DaVinciApplicationResponse) GetNameOk

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

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

func (*DaVinciApplicationResponse) GetOauth

GetOauth returns the Oauth field value

func (*DaVinciApplicationResponse) GetOauthOk

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

func (*DaVinciApplicationResponse) GetUpdatedAt

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

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

func (*DaVinciApplicationResponse) GetUpdatedAtOk

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

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

func (*DaVinciApplicationResponse) HasCreatedAt

func (o *DaVinciApplicationResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*DaVinciApplicationResponse) HasUpdatedAt

func (o *DaVinciApplicationResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (DaVinciApplicationResponse) LogValue

func (o DaVinciApplicationResponse) LogValue() slog.Value

func (DaVinciApplicationResponse) MarshalJSON

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

func (*DaVinciApplicationResponse) SetApiKey

SetApiKey sets field value

func (*DaVinciApplicationResponse) SetCreatedAt

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

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

func (*DaVinciApplicationResponse) SetEnvironment

SetEnvironment sets field value

func (*DaVinciApplicationResponse) SetId

func (o *DaVinciApplicationResponse) SetId(v string)

SetId sets field value

SetLinks sets field value

func (*DaVinciApplicationResponse) SetName

func (o *DaVinciApplicationResponse) SetName(v string)

SetName sets field value

func (*DaVinciApplicationResponse) SetOauth

SetOauth sets field value

func (*DaVinciApplicationResponse) SetUpdatedAt

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

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

func (DaVinciApplicationResponse) ToMap

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

func (*DaVinciApplicationResponse) UnmarshalJSON

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

type DaVinciApplicationResponseApiKey

type DaVinciApplicationResponseApiKey struct {
	Enabled              bool   `json:"enabled"`
	Value                string `json:"value"`
	AdditionalProperties map[string]interface{}
}

DaVinciApplicationResponseApiKey struct for DaVinciApplicationResponseApiKey

func NewDaVinciApplicationResponseApiKey

func NewDaVinciApplicationResponseApiKey(enabled bool, value string) *DaVinciApplicationResponseApiKey

NewDaVinciApplicationResponseApiKey instantiates a new DaVinciApplicationResponseApiKey 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 NewDaVinciApplicationResponseApiKeyWithDefaults

func NewDaVinciApplicationResponseApiKeyWithDefaults() *DaVinciApplicationResponseApiKey

NewDaVinciApplicationResponseApiKeyWithDefaults instantiates a new DaVinciApplicationResponseApiKey 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 (*DaVinciApplicationResponseApiKey) GetEnabled

func (o *DaVinciApplicationResponseApiKey) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*DaVinciApplicationResponseApiKey) GetEnabledOk

func (o *DaVinciApplicationResponseApiKey) GetEnabledOk() (*bool, bool)

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

func (*DaVinciApplicationResponseApiKey) GetValue

GetValue returns the Value field value

func (*DaVinciApplicationResponseApiKey) GetValueOk

func (o *DaVinciApplicationResponseApiKey) GetValueOk() (*string, bool)

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

func (DaVinciApplicationResponseApiKey) LogValue

func (DaVinciApplicationResponseApiKey) MarshalJSON

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

func (*DaVinciApplicationResponseApiKey) SetEnabled

func (o *DaVinciApplicationResponseApiKey) SetEnabled(v bool)

SetEnabled sets field value

func (*DaVinciApplicationResponseApiKey) SetValue

SetValue sets field value

func (DaVinciApplicationResponseApiKey) ToMap

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

func (*DaVinciApplicationResponseApiKey) UnmarshalJSON

func (o *DaVinciApplicationResponseApiKey) UnmarshalJSON(data []byte) (err error)
type DaVinciApplicationResponseLinks struct {
	Self                           JSONHALLink `json:"self"`
	Environment                    JSONHALLink `json:"environment"`
	FlowPolicies                   JSONHALLink `json:"flowPolicies"`
	DavinciApplicationRotateKey    JSONHALLink `json:"davinciApplication.rotateKey"`
	DavinciApplicationRotateSecret JSONHALLink `json:"davinciApplication.rotateSecret"`
	AdditionalProperties           map[string]interface{}
}

DaVinciApplicationResponseLinks struct for DaVinciApplicationResponseLinks

func NewDaVinciApplicationResponseLinks(self JSONHALLink, environment JSONHALLink, flowPolicies JSONHALLink, davinciApplicationRotateKey JSONHALLink, davinciApplicationRotateSecret JSONHALLink) *DaVinciApplicationResponseLinks

NewDaVinciApplicationResponseLinks instantiates a new DaVinciApplicationResponseLinks 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 NewDaVinciApplicationResponseLinksWithDefaults

func NewDaVinciApplicationResponseLinksWithDefaults() *DaVinciApplicationResponseLinks

NewDaVinciApplicationResponseLinksWithDefaults instantiates a new DaVinciApplicationResponseLinks 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 (*DaVinciApplicationResponseLinks) GetDavinciApplicationRotateKey

func (o *DaVinciApplicationResponseLinks) GetDavinciApplicationRotateKey() JSONHALLink

GetDavinciApplicationRotateKey returns the DavinciApplicationRotateKey field value

func (*DaVinciApplicationResponseLinks) GetDavinciApplicationRotateKeyOk

func (o *DaVinciApplicationResponseLinks) GetDavinciApplicationRotateKeyOk() (*JSONHALLink, bool)

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

func (*DaVinciApplicationResponseLinks) GetDavinciApplicationRotateSecret

func (o *DaVinciApplicationResponseLinks) GetDavinciApplicationRotateSecret() JSONHALLink

GetDavinciApplicationRotateSecret returns the DavinciApplicationRotateSecret field value

func (*DaVinciApplicationResponseLinks) GetDavinciApplicationRotateSecretOk

func (o *DaVinciApplicationResponseLinks) GetDavinciApplicationRotateSecretOk() (*JSONHALLink, bool)

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

func (*DaVinciApplicationResponseLinks) GetEnvironment

func (o *DaVinciApplicationResponseLinks) GetEnvironment() JSONHALLink

GetEnvironment returns the Environment field value

func (*DaVinciApplicationResponseLinks) GetEnvironmentOk

func (o *DaVinciApplicationResponseLinks) GetEnvironmentOk() (*JSONHALLink, bool)

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

func (*DaVinciApplicationResponseLinks) GetFlowPolicies

func (o *DaVinciApplicationResponseLinks) GetFlowPolicies() JSONHALLink

GetFlowPolicies returns the FlowPolicies field value

func (*DaVinciApplicationResponseLinks) GetFlowPoliciesOk

func (o *DaVinciApplicationResponseLinks) GetFlowPoliciesOk() (*JSONHALLink, bool)

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

func (*DaVinciApplicationResponseLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciApplicationResponseLinks) GetSelfOk

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

func (DaVinciApplicationResponseLinks) LogValue

func (DaVinciApplicationResponseLinks) MarshalJSON

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

func (*DaVinciApplicationResponseLinks) SetDavinciApplicationRotateKey

func (o *DaVinciApplicationResponseLinks) SetDavinciApplicationRotateKey(v JSONHALLink)

SetDavinciApplicationRotateKey sets field value

func (*DaVinciApplicationResponseLinks) SetDavinciApplicationRotateSecret

func (o *DaVinciApplicationResponseLinks) SetDavinciApplicationRotateSecret(v JSONHALLink)

SetDavinciApplicationRotateSecret sets field value

func (*DaVinciApplicationResponseLinks) SetEnvironment

func (o *DaVinciApplicationResponseLinks) SetEnvironment(v JSONHALLink)

SetEnvironment sets field value

func (*DaVinciApplicationResponseLinks) SetFlowPolicies

func (o *DaVinciApplicationResponseLinks) SetFlowPolicies(v JSONHALLink)

SetFlowPolicies sets field value

func (*DaVinciApplicationResponseLinks) SetSelf

SetSelf sets field value

func (DaVinciApplicationResponseLinks) ToMap

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

func (*DaVinciApplicationResponseLinks) UnmarshalJSON

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

type DaVinciApplicationResponseOAuth

type DaVinciApplicationResponseOAuth struct {
	ClientSecret               string                                     `json:"clientSecret"`
	EnforceSignedRequestOpenid *bool                                      `json:"enforceSignedRequestOpenid,omitempty"`
	GrantTypes                 []DaVinciApplicationResponseOAuthGrantType `json:"grantTypes,omitempty"`
	LogoutUris                 []string                                   `json:"logoutUris,omitempty"`
	RedirectUris               []string                                   `json:"redirectUris,omitempty"`
	Scopes                     []DaVinciApplicationResponseOAuthScope     `json:"scopes,omitempty"`
	SpJwksOpenid               *string                                    `json:"spJwksOpenid,omitempty"`
	SpjwksUrl                  *string                                    `json:"spjwksUrl,omitempty"`
	AdditionalProperties       map[string]interface{}
}

DaVinciApplicationResponseOAuth struct for DaVinciApplicationResponseOAuth

func NewDaVinciApplicationResponseOAuth

func NewDaVinciApplicationResponseOAuth(clientSecret string) *DaVinciApplicationResponseOAuth

NewDaVinciApplicationResponseOAuth instantiates a new DaVinciApplicationResponseOAuth 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 NewDaVinciApplicationResponseOAuthWithDefaults

func NewDaVinciApplicationResponseOAuthWithDefaults() *DaVinciApplicationResponseOAuth

NewDaVinciApplicationResponseOAuthWithDefaults instantiates a new DaVinciApplicationResponseOAuth 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 (*DaVinciApplicationResponseOAuth) GetClientSecret

func (o *DaVinciApplicationResponseOAuth) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*DaVinciApplicationResponseOAuth) GetClientSecretOk

func (o *DaVinciApplicationResponseOAuth) GetClientSecretOk() (*string, bool)

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

func (*DaVinciApplicationResponseOAuth) GetEnforceSignedRequestOpenid

func (o *DaVinciApplicationResponseOAuth) GetEnforceSignedRequestOpenid() bool

GetEnforceSignedRequestOpenid returns the EnforceSignedRequestOpenid field value if set, zero value otherwise.

func (*DaVinciApplicationResponseOAuth) GetEnforceSignedRequestOpenidOk

func (o *DaVinciApplicationResponseOAuth) GetEnforceSignedRequestOpenidOk() (*bool, bool)

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

func (*DaVinciApplicationResponseOAuth) GetGrantTypes

GetGrantTypes returns the GrantTypes field value if set, zero value otherwise.

func (*DaVinciApplicationResponseOAuth) GetGrantTypesOk

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

func (*DaVinciApplicationResponseOAuth) GetLogoutUris

func (o *DaVinciApplicationResponseOAuth) GetLogoutUris() []string

GetLogoutUris returns the LogoutUris field value if set, zero value otherwise.

func (*DaVinciApplicationResponseOAuth) GetLogoutUrisOk

func (o *DaVinciApplicationResponseOAuth) GetLogoutUrisOk() ([]string, bool)

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

func (*DaVinciApplicationResponseOAuth) GetRedirectUris

func (o *DaVinciApplicationResponseOAuth) GetRedirectUris() []string

GetRedirectUris returns the RedirectUris field value if set, zero value otherwise.

func (*DaVinciApplicationResponseOAuth) GetRedirectUrisOk

func (o *DaVinciApplicationResponseOAuth) GetRedirectUrisOk() ([]string, bool)

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

func (*DaVinciApplicationResponseOAuth) GetScopes

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*DaVinciApplicationResponseOAuth) GetScopesOk

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

func (*DaVinciApplicationResponseOAuth) GetSpJwksOpenid

func (o *DaVinciApplicationResponseOAuth) GetSpJwksOpenid() string

GetSpJwksOpenid returns the SpJwksOpenid field value if set, zero value otherwise.

func (*DaVinciApplicationResponseOAuth) GetSpJwksOpenidOk

func (o *DaVinciApplicationResponseOAuth) GetSpJwksOpenidOk() (*string, bool)

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

func (*DaVinciApplicationResponseOAuth) GetSpjwksUrl

func (o *DaVinciApplicationResponseOAuth) GetSpjwksUrl() string

GetSpjwksUrl returns the SpjwksUrl field value if set, zero value otherwise.

func (*DaVinciApplicationResponseOAuth) GetSpjwksUrlOk

func (o *DaVinciApplicationResponseOAuth) GetSpjwksUrlOk() (*string, bool)

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

func (*DaVinciApplicationResponseOAuth) HasEnforceSignedRequestOpenid

func (o *DaVinciApplicationResponseOAuth) HasEnforceSignedRequestOpenid() bool

HasEnforceSignedRequestOpenid returns a boolean if a field has been set.

func (*DaVinciApplicationResponseOAuth) HasGrantTypes

func (o *DaVinciApplicationResponseOAuth) HasGrantTypes() bool

HasGrantTypes returns a boolean if a field has been set.

func (*DaVinciApplicationResponseOAuth) HasLogoutUris

func (o *DaVinciApplicationResponseOAuth) HasLogoutUris() bool

HasLogoutUris returns a boolean if a field has been set.

func (*DaVinciApplicationResponseOAuth) HasRedirectUris

func (o *DaVinciApplicationResponseOAuth) HasRedirectUris() bool

HasRedirectUris returns a boolean if a field has been set.

func (*DaVinciApplicationResponseOAuth) HasScopes

func (o *DaVinciApplicationResponseOAuth) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (*DaVinciApplicationResponseOAuth) HasSpJwksOpenid

func (o *DaVinciApplicationResponseOAuth) HasSpJwksOpenid() bool

HasSpJwksOpenid returns a boolean if a field has been set.

func (*DaVinciApplicationResponseOAuth) HasSpjwksUrl

func (o *DaVinciApplicationResponseOAuth) HasSpjwksUrl() bool

HasSpjwksUrl returns a boolean if a field has been set.

func (DaVinciApplicationResponseOAuth) LogValue

func (DaVinciApplicationResponseOAuth) MarshalJSON

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

func (*DaVinciApplicationResponseOAuth) SetClientSecret

func (o *DaVinciApplicationResponseOAuth) SetClientSecret(v string)

SetClientSecret sets field value

func (*DaVinciApplicationResponseOAuth) SetEnforceSignedRequestOpenid

func (o *DaVinciApplicationResponseOAuth) SetEnforceSignedRequestOpenid(v bool)

SetEnforceSignedRequestOpenid gets a reference to the given bool and assigns it to the EnforceSignedRequestOpenid field.

func (*DaVinciApplicationResponseOAuth) SetGrantTypes

SetGrantTypes gets a reference to the given []DaVinciApplicationResponseOAuthGrantType and assigns it to the GrantTypes field.

func (*DaVinciApplicationResponseOAuth) SetLogoutUris

func (o *DaVinciApplicationResponseOAuth) SetLogoutUris(v []string)

SetLogoutUris gets a reference to the given []string and assigns it to the LogoutUris field.

func (*DaVinciApplicationResponseOAuth) SetRedirectUris

func (o *DaVinciApplicationResponseOAuth) SetRedirectUris(v []string)

SetRedirectUris gets a reference to the given []string and assigns it to the RedirectUris field.

func (*DaVinciApplicationResponseOAuth) SetScopes

SetScopes gets a reference to the given []DaVinciApplicationResponseOAuthScope and assigns it to the Scopes field.

func (*DaVinciApplicationResponseOAuth) SetSpJwksOpenid

func (o *DaVinciApplicationResponseOAuth) SetSpJwksOpenid(v string)

SetSpJwksOpenid gets a reference to the given string and assigns it to the SpJwksOpenid field.

func (*DaVinciApplicationResponseOAuth) SetSpjwksUrl

func (o *DaVinciApplicationResponseOAuth) SetSpjwksUrl(v string)

SetSpjwksUrl gets a reference to the given string and assigns it to the SpjwksUrl field.

func (DaVinciApplicationResponseOAuth) ToMap

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

func (*DaVinciApplicationResponseOAuth) UnmarshalJSON

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

type DaVinciApplicationResponseOAuthGrantType

type DaVinciApplicationResponseOAuthGrantType string

DaVinciApplicationResponseOAuthGrantType the model 'DaVinciApplicationResponseOAuthGrantType'

const (
	DAVINCIAPPLICATIONRESPONSEOAUTHGRANTTYPE_AUTHORIZATION_CODE DaVinciApplicationResponseOAuthGrantType = "authorizationCode"
	DAVINCIAPPLICATIONRESPONSEOAUTHGRANTTYPE_CLIENT_CREDENTIALS DaVinciApplicationResponseOAuthGrantType = "clientCredentials"
	DAVINCIAPPLICATIONRESPONSEOAUTHGRANTTYPE_IMPLICIT           DaVinciApplicationResponseOAuthGrantType = "implicit"
)

List of DaVinci_Application_Response_OAuth_Grant_Type

func NewDaVinciApplicationResponseOAuthGrantTypeFromValue

func NewDaVinciApplicationResponseOAuthGrantTypeFromValue(v string) (*DaVinciApplicationResponseOAuthGrantType, error)

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

func (DaVinciApplicationResponseOAuthGrantType) IsValid

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

func (DaVinciApplicationResponseOAuthGrantType) Ptr

Ptr returns reference to DaVinci_Application_Response_OAuth_Grant_Type value

func (*DaVinciApplicationResponseOAuthGrantType) UnmarshalJSON

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

type DaVinciApplicationResponseOAuthScope

type DaVinciApplicationResponseOAuthScope string

DaVinciApplicationResponseOAuthScope the model 'DaVinciApplicationResponseOAuthScope'

const (
	DAVINCIAPPLICATIONRESPONSEOAUTHSCOPE_FLOW_ANALYTICS DaVinciApplicationResponseOAuthScope = "flow_analytics"
	DAVINCIAPPLICATIONRESPONSEOAUTHSCOPE_OFFLINE_ACCESS DaVinciApplicationResponseOAuthScope = "offline_access"
	DAVINCIAPPLICATIONRESPONSEOAUTHSCOPE_OPENID         DaVinciApplicationResponseOAuthScope = "openid"
	DAVINCIAPPLICATIONRESPONSEOAUTHSCOPE_PROFILE        DaVinciApplicationResponseOAuthScope = "profile"
)

List of DaVinci_Application_Response_OAuth_Scope

func NewDaVinciApplicationResponseOAuthScopeFromValue

func NewDaVinciApplicationResponseOAuthScopeFromValue(v string) (*DaVinciApplicationResponseOAuthScope, error)

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

func (DaVinciApplicationResponseOAuthScope) IsValid

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

func (DaVinciApplicationResponseOAuthScope) Ptr

Ptr returns reference to DaVinci_Application_Response_OAuth_Scope value

func (*DaVinciApplicationResponseOAuthScope) UnmarshalJSON

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

type DaVinciApplicationsApiService

type DaVinciApplicationsApiService service

DaVinciApplicationsApiService DaVinciApplicationsApi service

func (*DaVinciApplicationsApiService) CreateDavinciApplication

func (a *DaVinciApplicationsApiService) CreateDavinciApplication(ctx context.Context, environmentID uuid.UUID) ApiCreateDavinciApplicationRequest

CreateDavinciApplication Method for CreateDavinciApplication

@permission davinci:create:applications
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiCreateDavinciApplicationRequest

func (*DaVinciApplicationsApiService) CreateDavinciApplicationExecute

Execute executes the request

@return DaVinciApplicationResponse

func (*DaVinciApplicationsApiService) CreateFlowPolicyByDavinciApplicationId

func (a *DaVinciApplicationsApiService) CreateFlowPolicyByDavinciApplicationId(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string) ApiCreateFlowPolicyByDavinciApplicationIdRequest

CreateFlowPolicyByDavinciApplicationId Method for CreateFlowPolicyByDavinciApplicationId

@permission davinci:create:flowPolicies
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@return ApiCreateFlowPolicyByDavinciApplicationIdRequest

func (*DaVinciApplicationsApiService) CreateFlowPolicyByDavinciApplicationIdExecute

Execute executes the request

@return DaVinciFlowPolicyResponse

func (*DaVinciApplicationsApiService) DeleteDavinciApplicationById

func (a *DaVinciApplicationsApiService) DeleteDavinciApplicationById(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string) ApiDeleteDavinciApplicationByIdRequest

DeleteDavinciApplicationById Method for DeleteDavinciApplicationById

@permission davinci:delete:applications
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@return ApiDeleteDavinciApplicationByIdRequest

func (*DaVinciApplicationsApiService) DeleteDavinciApplicationByIdExecute

func (a *DaVinciApplicationsApiService) DeleteDavinciApplicationByIdExecute(r ApiDeleteDavinciApplicationByIdRequest) (*http.Response, error)

Execute executes the request

func (*DaVinciApplicationsApiService) DeleteFlowPolicyByIdUsingDavinciApplicationId

func (a *DaVinciApplicationsApiService) DeleteFlowPolicyByIdUsingDavinciApplicationId(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string, flowPolicyID string) ApiDeleteFlowPolicyByIdUsingDavinciApplicationIdRequest

DeleteFlowPolicyByIdUsingDavinciApplicationId Method for DeleteFlowPolicyByIdUsingDavinciApplicationId

@permission davinci:delete:flowPolicies
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@param flowPolicyID
@return ApiDeleteFlowPolicyByIdUsingDavinciApplicationIdRequest

func (*DaVinciApplicationsApiService) DeleteFlowPolicyByIdUsingDavinciApplicationIdExecute

func (a *DaVinciApplicationsApiService) DeleteFlowPolicyByIdUsingDavinciApplicationIdExecute(r ApiDeleteFlowPolicyByIdUsingDavinciApplicationIdRequest) (*http.Response, error)

Execute executes the request

func (*DaVinciApplicationsApiService) GetDavinciApplicationById

func (a *DaVinciApplicationsApiService) GetDavinciApplicationById(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string) ApiGetDavinciApplicationByIdRequest

GetDavinciApplicationById Method for GetDavinciApplicationById

@permission davinci:read:applications
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@return ApiGetDavinciApplicationByIdRequest

func (*DaVinciApplicationsApiService) GetDavinciApplicationByIdExecute

Execute executes the request

@return DaVinciApplicationResponse

func (*DaVinciApplicationsApiService) GetDavinciApplications

func (a *DaVinciApplicationsApiService) GetDavinciApplications(ctx context.Context, environmentID uuid.UUID) ApiGetDavinciApplicationsRequest

GetDavinciApplications Method for GetDavinciApplications

@permission davinci:read:applications
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiGetDavinciApplicationsRequest

func (*DaVinciApplicationsApiService) GetDavinciApplicationsExecute

Execute executes the request

@return DaVinciApplicationCollectionResponse

func (*DaVinciApplicationsApiService) GetEventsByDavinciApplicationIdAndFlowPolicyId

func (a *DaVinciApplicationsApiService) GetEventsByDavinciApplicationIdAndFlowPolicyId(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string, flowPolicyID string) ApiGetEventsByDavinciApplicationIdAndFlowPolicyIdRequest

GetEventsByDavinciApplicationIdAndFlowPolicyId Method for GetEventsByDavinciApplicationIdAndFlowPolicyId

@permission davinci:read:flowPolicies
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@param flowPolicyID
@return ApiGetEventsByDavinciApplicationIdAndFlowPolicyIdRequest

func (*DaVinciApplicationsApiService) GetEventsByDavinciApplicationIdAndFlowPolicyIdExecute

Execute executes the request

@return DaVinciFlowPolicyEventsCollection

func (*DaVinciApplicationsApiService) GetFlowPoliciesByDavinciApplicationId

func (a *DaVinciApplicationsApiService) GetFlowPoliciesByDavinciApplicationId(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string) ApiGetFlowPoliciesByDavinciApplicationIdRequest

GetFlowPoliciesByDavinciApplicationId Method for GetFlowPoliciesByDavinciApplicationId

@permission davinci:read:flowPolicies
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@return ApiGetFlowPoliciesByDavinciApplicationIdRequest

func (*DaVinciApplicationsApiService) GetFlowPoliciesByDavinciApplicationIdExecute

Execute executes the request

@return DaVinciFlowPolicyCollection

func (*DaVinciApplicationsApiService) GetFlowPolicyByIdUsingDavinciApplicationId

func (a *DaVinciApplicationsApiService) GetFlowPolicyByIdUsingDavinciApplicationId(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string, flowPolicyID string) ApiGetFlowPolicyByIdUsingDavinciApplicationIdRequest

GetFlowPolicyByIdUsingDavinciApplicationId Method for GetFlowPolicyByIdUsingDavinciApplicationId

@permission davinci:read:flowPolicies
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@param flowPolicyID
@return ApiGetFlowPolicyByIdUsingDavinciApplicationIdRequest

func (*DaVinciApplicationsApiService) GetFlowPolicyByIdUsingDavinciApplicationIdExecute

Execute executes the request

@return DaVinciFlowPolicyResponse

func (*DaVinciApplicationsApiService) ReplaceDavinciApplicationById

func (a *DaVinciApplicationsApiService) ReplaceDavinciApplicationById(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string) ApiReplaceDavinciApplicationByIdRequest

ReplaceDavinciApplicationById Method for ReplaceDavinciApplicationById

@permission davinci:update:applications
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@return ApiReplaceDavinciApplicationByIdRequest

func (*DaVinciApplicationsApiService) ReplaceDavinciApplicationByIdExecute

Execute executes the request

@return DaVinciApplicationResponse

func (*DaVinciApplicationsApiService) ReplaceFlowPolicyByIdUsingDavinciApplicationId

func (a *DaVinciApplicationsApiService) ReplaceFlowPolicyByIdUsingDavinciApplicationId(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string, flowPolicyID string) ApiReplaceFlowPolicyByIdUsingDavinciApplicationIdRequest

ReplaceFlowPolicyByIdUsingDavinciApplicationId Method for ReplaceFlowPolicyByIdUsingDavinciApplicationId

@permission davinci:update:flowPolicies
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@param flowPolicyID
@return ApiReplaceFlowPolicyByIdUsingDavinciApplicationIdRequest

func (*DaVinciApplicationsApiService) ReplaceFlowPolicyByIdUsingDavinciApplicationIdExecute

Execute executes the request

@return DaVinciFlowPolicyResponse

func (*DaVinciApplicationsApiService) RotateKeyByDavinciApplicationId

func (a *DaVinciApplicationsApiService) RotateKeyByDavinciApplicationId(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string) ApiRotateKeyByDavinciApplicationIdRequest

RotateKeyByDavinciApplicationId Method for RotateKeyByDavinciApplicationId

@permission davinci:update:applications
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@return ApiRotateKeyByDavinciApplicationIdRequest

func (*DaVinciApplicationsApiService) RotateKeyByDavinciApplicationIdExecute

Execute executes the request

@return DaVinciApplicationResponse

func (*DaVinciApplicationsApiService) RotateSecretByDavinciApplicationId

func (a *DaVinciApplicationsApiService) RotateSecretByDavinciApplicationId(ctx context.Context, environmentID uuid.UUID, davinciApplicationID string) ApiRotateSecretByDavinciApplicationIdRequest

RotateSecretByDavinciApplicationId Method for RotateSecretByDavinciApplicationId

@permission davinci:update:applications
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param davinciApplicationID
@return ApiRotateSecretByDavinciApplicationIdRequest

func (*DaVinciApplicationsApiService) RotateSecretByDavinciApplicationIdExecute

Execute executes the request

@return DaVinciApplicationResponse

type DaVinciConnectorCollectionMinimalResponse

type DaVinciConnectorCollectionMinimalResponse struct {
	Embedded             DaVinciConnectorCollectionMinimalResponseEmbedded `json:"_embedded"`
	Links                DaVinciConnectorCollectionMinimalResponseLinks    `json:"_links"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorCollectionMinimalResponse struct for DaVinciConnectorCollectionMinimalResponse

func NewDaVinciConnectorCollectionMinimalResponse

NewDaVinciConnectorCollectionMinimalResponse instantiates a new DaVinciConnectorCollectionMinimalResponse 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 NewDaVinciConnectorCollectionMinimalResponseWithDefaults

func NewDaVinciConnectorCollectionMinimalResponseWithDefaults() *DaVinciConnectorCollectionMinimalResponse

NewDaVinciConnectorCollectionMinimalResponseWithDefaults instantiates a new DaVinciConnectorCollectionMinimalResponse 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 (*DaVinciConnectorCollectionMinimalResponse) GetEmbedded

GetEmbedded returns the Embedded field value

func (*DaVinciConnectorCollectionMinimalResponse) GetEmbeddedOk

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

GetLinks returns the Links field value

func (*DaVinciConnectorCollectionMinimalResponse) GetLinksOk

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

func (DaVinciConnectorCollectionMinimalResponse) LogValue

func (DaVinciConnectorCollectionMinimalResponse) MarshalJSON

func (*DaVinciConnectorCollectionMinimalResponse) SetEmbedded

SetEmbedded sets field value

SetLinks sets field value

func (DaVinciConnectorCollectionMinimalResponse) ToMap

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

func (*DaVinciConnectorCollectionMinimalResponse) UnmarshalJSON

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

type DaVinciConnectorCollectionMinimalResponseEmbedded

type DaVinciConnectorCollectionMinimalResponseEmbedded struct {
	Connectors           []DaVinciConnectorMinimalResponse `json:"connectors"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorCollectionMinimalResponseEmbedded struct for DaVinciConnectorCollectionMinimalResponseEmbedded

func NewDaVinciConnectorCollectionMinimalResponseEmbedded

func NewDaVinciConnectorCollectionMinimalResponseEmbedded(connectors []DaVinciConnectorMinimalResponse) *DaVinciConnectorCollectionMinimalResponseEmbedded

NewDaVinciConnectorCollectionMinimalResponseEmbedded instantiates a new DaVinciConnectorCollectionMinimalResponseEmbedded 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 NewDaVinciConnectorCollectionMinimalResponseEmbeddedWithDefaults

func NewDaVinciConnectorCollectionMinimalResponseEmbeddedWithDefaults() *DaVinciConnectorCollectionMinimalResponseEmbedded

NewDaVinciConnectorCollectionMinimalResponseEmbeddedWithDefaults instantiates a new DaVinciConnectorCollectionMinimalResponseEmbedded 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 (*DaVinciConnectorCollectionMinimalResponseEmbedded) GetConnectors

GetConnectors returns the Connectors field value

func (*DaVinciConnectorCollectionMinimalResponseEmbedded) GetConnectorsOk

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

func (DaVinciConnectorCollectionMinimalResponseEmbedded) LogValue

func (DaVinciConnectorCollectionMinimalResponseEmbedded) MarshalJSON

func (*DaVinciConnectorCollectionMinimalResponseEmbedded) SetConnectors

SetConnectors sets field value

func (DaVinciConnectorCollectionMinimalResponseEmbedded) ToMap

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

func (*DaVinciConnectorCollectionMinimalResponseEmbedded) UnmarshalJSON

func (o *DaVinciConnectorCollectionMinimalResponseEmbedded) UnmarshalJSON(data []byte) (err error)
type DaVinciConnectorCollectionMinimalResponseLinks struct {
	Environment          JSONHALLink `json:"environment"`
	Self                 JSONHALLink `json:"self"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorCollectionMinimalResponseLinks struct for DaVinciConnectorCollectionMinimalResponseLinks

func NewDaVinciConnectorCollectionMinimalResponseLinks(environment JSONHALLink, self JSONHALLink) *DaVinciConnectorCollectionMinimalResponseLinks

NewDaVinciConnectorCollectionMinimalResponseLinks instantiates a new DaVinciConnectorCollectionMinimalResponseLinks 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 NewDaVinciConnectorCollectionMinimalResponseLinksWithDefaults

func NewDaVinciConnectorCollectionMinimalResponseLinksWithDefaults() *DaVinciConnectorCollectionMinimalResponseLinks

NewDaVinciConnectorCollectionMinimalResponseLinksWithDefaults instantiates a new DaVinciConnectorCollectionMinimalResponseLinks 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 (*DaVinciConnectorCollectionMinimalResponseLinks) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciConnectorCollectionMinimalResponseLinks) GetEnvironmentOk

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

func (*DaVinciConnectorCollectionMinimalResponseLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciConnectorCollectionMinimalResponseLinks) GetSelfOk

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

func (DaVinciConnectorCollectionMinimalResponseLinks) LogValue

func (DaVinciConnectorCollectionMinimalResponseLinks) MarshalJSON

func (*DaVinciConnectorCollectionMinimalResponseLinks) SetEnvironment

SetEnvironment sets field value

func (*DaVinciConnectorCollectionMinimalResponseLinks) SetSelf

SetSelf sets field value

func (DaVinciConnectorCollectionMinimalResponseLinks) ToMap

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

func (*DaVinciConnectorCollectionMinimalResponseLinks) UnmarshalJSON

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

type DaVinciConnectorDetailsResponse

type DaVinciConnectorDetailsResponse struct {
	Environment          ResourceRelationshipReadOnly                      `json:"environment"`
	Links                *DaVinciConnectorDetailsResponseLinks             `json:"_links,omitempty"`
	AccountConfigView    *DaVinciConnectorDetailsResponseAccountConfigView `json:"accountConfigView,omitempty"`
	Capabilities         map[string]map[string]interface{}                 `json:"capabilities,omitempty"`
	CredentialsView      *DaVinciConnectorDetailsResponseCredentialsView   `json:"credentialsView,omitempty"`
	FlowSections         []DaVinciConnectorDetailsResponseFlowSection      `json:"flowSections,omitempty"`
	Properties           map[string]interface{}                            `json:"properties,omitempty"`
	Sections             []DaVinciConnectorDetailsResponseSection          `json:"sections,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorDetailsResponse struct for DaVinciConnectorDetailsResponse

func NewDaVinciConnectorDetailsResponse

func NewDaVinciConnectorDetailsResponse(environment ResourceRelationshipReadOnly) *DaVinciConnectorDetailsResponse

NewDaVinciConnectorDetailsResponse instantiates a new DaVinciConnectorDetailsResponse 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 NewDaVinciConnectorDetailsResponseWithDefaults

func NewDaVinciConnectorDetailsResponseWithDefaults() *DaVinciConnectorDetailsResponse

NewDaVinciConnectorDetailsResponseWithDefaults instantiates a new DaVinciConnectorDetailsResponse 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 (*DaVinciConnectorDetailsResponse) GetAccountConfigView

GetAccountConfigView returns the AccountConfigView field value if set, zero value otherwise.

func (*DaVinciConnectorDetailsResponse) GetAccountConfigViewOk

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

func (*DaVinciConnectorDetailsResponse) GetCapabilities

func (o *DaVinciConnectorDetailsResponse) GetCapabilities() map[string]map[string]interface{}

GetCapabilities returns the Capabilities field value if set, zero value otherwise.

func (*DaVinciConnectorDetailsResponse) GetCapabilitiesOk

func (o *DaVinciConnectorDetailsResponse) GetCapabilitiesOk() (map[string]map[string]interface{}, bool)

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

func (*DaVinciConnectorDetailsResponse) GetCredentialsView

GetCredentialsView returns the CredentialsView field value if set, zero value otherwise.

func (*DaVinciConnectorDetailsResponse) GetCredentialsViewOk

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

func (*DaVinciConnectorDetailsResponse) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciConnectorDetailsResponse) GetEnvironmentOk

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

func (*DaVinciConnectorDetailsResponse) GetFlowSections

GetFlowSections returns the FlowSections field value if set, zero value otherwise.

func (*DaVinciConnectorDetailsResponse) GetFlowSectionsOk

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

GetLinks returns the Links field value if set, zero value otherwise.

func (*DaVinciConnectorDetailsResponse) GetLinksOk

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

func (*DaVinciConnectorDetailsResponse) GetProperties

func (o *DaVinciConnectorDetailsResponse) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*DaVinciConnectorDetailsResponse) GetPropertiesOk

func (o *DaVinciConnectorDetailsResponse) GetPropertiesOk() (map[string]interface{}, bool)

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

func (*DaVinciConnectorDetailsResponse) GetSections

GetSections returns the Sections field value if set, zero value otherwise.

func (*DaVinciConnectorDetailsResponse) GetSectionsOk

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

func (*DaVinciConnectorDetailsResponse) HasAccountConfigView

func (o *DaVinciConnectorDetailsResponse) HasAccountConfigView() bool

HasAccountConfigView returns a boolean if a field has been set.

func (*DaVinciConnectorDetailsResponse) HasCapabilities

func (o *DaVinciConnectorDetailsResponse) HasCapabilities() bool

HasCapabilities returns a boolean if a field has been set.

func (*DaVinciConnectorDetailsResponse) HasCredentialsView

func (o *DaVinciConnectorDetailsResponse) HasCredentialsView() bool

HasCredentialsView returns a boolean if a field has been set.

func (*DaVinciConnectorDetailsResponse) HasFlowSections

func (o *DaVinciConnectorDetailsResponse) HasFlowSections() bool

HasFlowSections returns a boolean if a field has been set.

func (o *DaVinciConnectorDetailsResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*DaVinciConnectorDetailsResponse) HasProperties

func (o *DaVinciConnectorDetailsResponse) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*DaVinciConnectorDetailsResponse) HasSections

func (o *DaVinciConnectorDetailsResponse) HasSections() bool

HasSections returns a boolean if a field has been set.

func (DaVinciConnectorDetailsResponse) LogValue

func (DaVinciConnectorDetailsResponse) MarshalJSON

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

func (*DaVinciConnectorDetailsResponse) SetAccountConfigView

SetAccountConfigView gets a reference to the given DaVinciConnectorDetailsResponseAccountConfigView and assigns it to the AccountConfigView field.

func (*DaVinciConnectorDetailsResponse) SetCapabilities

func (o *DaVinciConnectorDetailsResponse) SetCapabilities(v map[string]map[string]interface{})

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

func (*DaVinciConnectorDetailsResponse) SetCredentialsView

SetCredentialsView gets a reference to the given DaVinciConnectorDetailsResponseCredentialsView and assigns it to the CredentialsView field.

func (*DaVinciConnectorDetailsResponse) SetEnvironment

SetEnvironment sets field value

func (*DaVinciConnectorDetailsResponse) SetFlowSections

SetFlowSections gets a reference to the given []DaVinciConnectorDetailsResponseFlowSection and assigns it to the FlowSections field.

SetLinks gets a reference to the given DaVinciConnectorDetailsResponseLinks and assigns it to the Links field.

func (*DaVinciConnectorDetailsResponse) SetProperties

func (o *DaVinciConnectorDetailsResponse) SetProperties(v map[string]interface{})

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

func (*DaVinciConnectorDetailsResponse) SetSections

SetSections gets a reference to the given []DaVinciConnectorDetailsResponseSection and assigns it to the Sections field.

func (DaVinciConnectorDetailsResponse) ToMap

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

func (*DaVinciConnectorDetailsResponse) UnmarshalJSON

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

type DaVinciConnectorDetailsResponseAccountConfigView

type DaVinciConnectorDetailsResponseAccountConfigView struct {
	Items                []map[string]interface{} `json:"items"`
	ComponentViewSize    *string                  `json:"componentViewSize,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorDetailsResponseAccountConfigView struct for DaVinciConnectorDetailsResponseAccountConfigView

func NewDaVinciConnectorDetailsResponseAccountConfigView

func NewDaVinciConnectorDetailsResponseAccountConfigView(items []map[string]interface{}) *DaVinciConnectorDetailsResponseAccountConfigView

NewDaVinciConnectorDetailsResponseAccountConfigView instantiates a new DaVinciConnectorDetailsResponseAccountConfigView 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 NewDaVinciConnectorDetailsResponseAccountConfigViewWithDefaults

func NewDaVinciConnectorDetailsResponseAccountConfigViewWithDefaults() *DaVinciConnectorDetailsResponseAccountConfigView

NewDaVinciConnectorDetailsResponseAccountConfigViewWithDefaults instantiates a new DaVinciConnectorDetailsResponseAccountConfigView 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 (*DaVinciConnectorDetailsResponseAccountConfigView) GetComponentViewSize

func (o *DaVinciConnectorDetailsResponseAccountConfigView) GetComponentViewSize() string

GetComponentViewSize returns the ComponentViewSize field value if set, zero value otherwise.

func (*DaVinciConnectorDetailsResponseAccountConfigView) GetComponentViewSizeOk

func (o *DaVinciConnectorDetailsResponseAccountConfigView) GetComponentViewSizeOk() (*string, bool)

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

func (*DaVinciConnectorDetailsResponseAccountConfigView) GetItems

func (o *DaVinciConnectorDetailsResponseAccountConfigView) GetItems() []map[string]interface{}

GetItems returns the Items field value

func (*DaVinciConnectorDetailsResponseAccountConfigView) GetItemsOk

func (o *DaVinciConnectorDetailsResponseAccountConfigView) GetItemsOk() ([]map[string]interface{}, bool)

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

func (*DaVinciConnectorDetailsResponseAccountConfigView) HasComponentViewSize

func (o *DaVinciConnectorDetailsResponseAccountConfigView) HasComponentViewSize() bool

HasComponentViewSize returns a boolean if a field has been set.

func (DaVinciConnectorDetailsResponseAccountConfigView) LogValue

func (DaVinciConnectorDetailsResponseAccountConfigView) MarshalJSON

func (*DaVinciConnectorDetailsResponseAccountConfigView) SetComponentViewSize

func (o *DaVinciConnectorDetailsResponseAccountConfigView) SetComponentViewSize(v string)

SetComponentViewSize gets a reference to the given string and assigns it to the ComponentViewSize field.

func (*DaVinciConnectorDetailsResponseAccountConfigView) SetItems

func (o *DaVinciConnectorDetailsResponseAccountConfigView) SetItems(v []map[string]interface{})

SetItems sets field value

func (DaVinciConnectorDetailsResponseAccountConfigView) ToMap

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

func (*DaVinciConnectorDetailsResponseAccountConfigView) UnmarshalJSON

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

type DaVinciConnectorDetailsResponseCredentialsView

type DaVinciConnectorDetailsResponseCredentialsView struct {
	Items                []map[string]interface{} `json:"items"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorDetailsResponseCredentialsView struct for DaVinciConnectorDetailsResponseCredentialsView

func NewDaVinciConnectorDetailsResponseCredentialsView

func NewDaVinciConnectorDetailsResponseCredentialsView(items []map[string]interface{}) *DaVinciConnectorDetailsResponseCredentialsView

NewDaVinciConnectorDetailsResponseCredentialsView instantiates a new DaVinciConnectorDetailsResponseCredentialsView 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 NewDaVinciConnectorDetailsResponseCredentialsViewWithDefaults

func NewDaVinciConnectorDetailsResponseCredentialsViewWithDefaults() *DaVinciConnectorDetailsResponseCredentialsView

NewDaVinciConnectorDetailsResponseCredentialsViewWithDefaults instantiates a new DaVinciConnectorDetailsResponseCredentialsView 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 (*DaVinciConnectorDetailsResponseCredentialsView) GetItems

func (o *DaVinciConnectorDetailsResponseCredentialsView) GetItems() []map[string]interface{}

GetItems returns the Items field value

func (*DaVinciConnectorDetailsResponseCredentialsView) GetItemsOk

func (o *DaVinciConnectorDetailsResponseCredentialsView) GetItemsOk() ([]map[string]interface{}, bool)

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

func (DaVinciConnectorDetailsResponseCredentialsView) LogValue

func (DaVinciConnectorDetailsResponseCredentialsView) MarshalJSON

func (*DaVinciConnectorDetailsResponseCredentialsView) SetItems

func (o *DaVinciConnectorDetailsResponseCredentialsView) SetItems(v []map[string]interface{})

SetItems sets field value

func (DaVinciConnectorDetailsResponseCredentialsView) ToMap

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

func (*DaVinciConnectorDetailsResponseCredentialsView) UnmarshalJSON

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

type DaVinciConnectorDetailsResponseFlowSection

type DaVinciConnectorDetailsResponseFlowSection struct {
	Name                 string `json:"name"`
	Value                string `json:"value"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorDetailsResponseFlowSection struct for DaVinciConnectorDetailsResponseFlowSection

func NewDaVinciConnectorDetailsResponseFlowSection

func NewDaVinciConnectorDetailsResponseFlowSection(name string, value string) *DaVinciConnectorDetailsResponseFlowSection

NewDaVinciConnectorDetailsResponseFlowSection instantiates a new DaVinciConnectorDetailsResponseFlowSection 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 NewDaVinciConnectorDetailsResponseFlowSectionWithDefaults

func NewDaVinciConnectorDetailsResponseFlowSectionWithDefaults() *DaVinciConnectorDetailsResponseFlowSection

NewDaVinciConnectorDetailsResponseFlowSectionWithDefaults instantiates a new DaVinciConnectorDetailsResponseFlowSection 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 (*DaVinciConnectorDetailsResponseFlowSection) GetName

GetName returns the Name field value

func (*DaVinciConnectorDetailsResponseFlowSection) GetNameOk

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

func (*DaVinciConnectorDetailsResponseFlowSection) GetValue

GetValue returns the Value field value

func (*DaVinciConnectorDetailsResponseFlowSection) GetValueOk

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

func (DaVinciConnectorDetailsResponseFlowSection) LogValue

func (DaVinciConnectorDetailsResponseFlowSection) MarshalJSON

func (*DaVinciConnectorDetailsResponseFlowSection) SetName

SetName sets field value

func (*DaVinciConnectorDetailsResponseFlowSection) SetValue

SetValue sets field value

func (DaVinciConnectorDetailsResponseFlowSection) ToMap

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

func (*DaVinciConnectorDetailsResponseFlowSection) UnmarshalJSON

func (o *DaVinciConnectorDetailsResponseFlowSection) UnmarshalJSON(data []byte) (err error)
type DaVinciConnectorDetailsResponseLinks struct {
	Environment          JSONHALLink `json:"environment"`
	Self                 JSONHALLink `json:"self"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorDetailsResponseLinks struct for DaVinciConnectorDetailsResponseLinks

func NewDaVinciConnectorDetailsResponseLinks(environment JSONHALLink, self JSONHALLink) *DaVinciConnectorDetailsResponseLinks

NewDaVinciConnectorDetailsResponseLinks instantiates a new DaVinciConnectorDetailsResponseLinks 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 NewDaVinciConnectorDetailsResponseLinksWithDefaults

func NewDaVinciConnectorDetailsResponseLinksWithDefaults() *DaVinciConnectorDetailsResponseLinks

NewDaVinciConnectorDetailsResponseLinksWithDefaults instantiates a new DaVinciConnectorDetailsResponseLinks 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 (*DaVinciConnectorDetailsResponseLinks) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciConnectorDetailsResponseLinks) GetEnvironmentOk

func (o *DaVinciConnectorDetailsResponseLinks) GetEnvironmentOk() (*JSONHALLink, bool)

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

func (*DaVinciConnectorDetailsResponseLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciConnectorDetailsResponseLinks) GetSelfOk

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

func (DaVinciConnectorDetailsResponseLinks) LogValue

func (DaVinciConnectorDetailsResponseLinks) MarshalJSON

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

func (*DaVinciConnectorDetailsResponseLinks) SetEnvironment

SetEnvironment sets field value

func (*DaVinciConnectorDetailsResponseLinks) SetSelf

SetSelf sets field value

func (DaVinciConnectorDetailsResponseLinks) ToMap

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

func (*DaVinciConnectorDetailsResponseLinks) UnmarshalJSON

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

type DaVinciConnectorDetailsResponseSection

type DaVinciConnectorDetailsResponseSection struct {
	Name                 string `json:"name"`
	Value                string `json:"value"`
	Default              *bool  `json:"default,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorDetailsResponseSection struct for DaVinciConnectorDetailsResponseSection

func NewDaVinciConnectorDetailsResponseSection

func NewDaVinciConnectorDetailsResponseSection(name string, value string) *DaVinciConnectorDetailsResponseSection

NewDaVinciConnectorDetailsResponseSection instantiates a new DaVinciConnectorDetailsResponseSection 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 NewDaVinciConnectorDetailsResponseSectionWithDefaults

func NewDaVinciConnectorDetailsResponseSectionWithDefaults() *DaVinciConnectorDetailsResponseSection

NewDaVinciConnectorDetailsResponseSectionWithDefaults instantiates a new DaVinciConnectorDetailsResponseSection 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 (*DaVinciConnectorDetailsResponseSection) GetDefault

GetDefault returns the Default field value if set, zero value otherwise.

func (*DaVinciConnectorDetailsResponseSection) GetDefaultOk

func (o *DaVinciConnectorDetailsResponseSection) GetDefaultOk() (*bool, bool)

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

func (*DaVinciConnectorDetailsResponseSection) GetName

GetName returns the Name field value

func (*DaVinciConnectorDetailsResponseSection) GetNameOk

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

func (*DaVinciConnectorDetailsResponseSection) GetValue

GetValue returns the Value field value

func (*DaVinciConnectorDetailsResponseSection) GetValueOk

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

func (*DaVinciConnectorDetailsResponseSection) HasDefault

HasDefault returns a boolean if a field has been set.

func (DaVinciConnectorDetailsResponseSection) LogValue

func (DaVinciConnectorDetailsResponseSection) MarshalJSON

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

func (*DaVinciConnectorDetailsResponseSection) SetDefault

SetDefault gets a reference to the given bool and assigns it to the Default field.

func (*DaVinciConnectorDetailsResponseSection) SetName

SetName sets field value

func (*DaVinciConnectorDetailsResponseSection) SetValue

SetValue sets field value

func (DaVinciConnectorDetailsResponseSection) ToMap

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

func (*DaVinciConnectorDetailsResponseSection) UnmarshalJSON

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

type DaVinciConnectorInstanceCollectionResponse

type DaVinciConnectorInstanceCollectionResponse struct {
	Embedded             DaVinciConnectorInstanceCollectionResponseEmbedded `json:"_embedded"`
	Links                DaVinciConnectorInstanceCollectionResponseLinks    `json:"_links"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorInstanceCollectionResponse struct for DaVinciConnectorInstanceCollectionResponse

func NewDaVinciConnectorInstanceCollectionResponse

NewDaVinciConnectorInstanceCollectionResponse instantiates a new DaVinciConnectorInstanceCollectionResponse 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 NewDaVinciConnectorInstanceCollectionResponseWithDefaults

func NewDaVinciConnectorInstanceCollectionResponseWithDefaults() *DaVinciConnectorInstanceCollectionResponse

NewDaVinciConnectorInstanceCollectionResponseWithDefaults instantiates a new DaVinciConnectorInstanceCollectionResponse 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 (*DaVinciConnectorInstanceCollectionResponse) GetEmbedded

GetEmbedded returns the Embedded field value

func (*DaVinciConnectorInstanceCollectionResponse) GetEmbeddedOk

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

GetLinks returns the Links field value

func (*DaVinciConnectorInstanceCollectionResponse) GetLinksOk

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

func (DaVinciConnectorInstanceCollectionResponse) LogValue

func (DaVinciConnectorInstanceCollectionResponse) MarshalJSON

func (*DaVinciConnectorInstanceCollectionResponse) SetEmbedded

SetEmbedded sets field value

SetLinks sets field value

func (DaVinciConnectorInstanceCollectionResponse) ToMap

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

func (*DaVinciConnectorInstanceCollectionResponse) UnmarshalJSON

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

type DaVinciConnectorInstanceCollectionResponseEmbedded

type DaVinciConnectorInstanceCollectionResponseEmbedded struct {
	ConnectorInstances   []DaVinciConnectorInstanceResponse `json:"connectorInstances"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorInstanceCollectionResponseEmbedded struct for DaVinciConnectorInstanceCollectionResponseEmbedded

func NewDaVinciConnectorInstanceCollectionResponseEmbedded

func NewDaVinciConnectorInstanceCollectionResponseEmbedded(connectorInstances []DaVinciConnectorInstanceResponse) *DaVinciConnectorInstanceCollectionResponseEmbedded

NewDaVinciConnectorInstanceCollectionResponseEmbedded instantiates a new DaVinciConnectorInstanceCollectionResponseEmbedded 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 NewDaVinciConnectorInstanceCollectionResponseEmbeddedWithDefaults

func NewDaVinciConnectorInstanceCollectionResponseEmbeddedWithDefaults() *DaVinciConnectorInstanceCollectionResponseEmbedded

NewDaVinciConnectorInstanceCollectionResponseEmbeddedWithDefaults instantiates a new DaVinciConnectorInstanceCollectionResponseEmbedded 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 (*DaVinciConnectorInstanceCollectionResponseEmbedded) GetConnectorInstances

GetConnectorInstances returns the ConnectorInstances field value

func (*DaVinciConnectorInstanceCollectionResponseEmbedded) GetConnectorInstancesOk

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

func (DaVinciConnectorInstanceCollectionResponseEmbedded) LogValue

func (DaVinciConnectorInstanceCollectionResponseEmbedded) MarshalJSON

func (*DaVinciConnectorInstanceCollectionResponseEmbedded) SetConnectorInstances

SetConnectorInstances sets field value

func (DaVinciConnectorInstanceCollectionResponseEmbedded) ToMap

func (*DaVinciConnectorInstanceCollectionResponseEmbedded) UnmarshalJSON

func (o *DaVinciConnectorInstanceCollectionResponseEmbedded) UnmarshalJSON(data []byte) (err error)
type DaVinciConnectorInstanceCollectionResponseLinks struct {
	Environment          JSONHALLink `json:"environment"`
	Self                 JSONHALLink `json:"self"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorInstanceCollectionResponseLinks struct for DaVinciConnectorInstanceCollectionResponseLinks

func NewDaVinciConnectorInstanceCollectionResponseLinks(environment JSONHALLink, self JSONHALLink) *DaVinciConnectorInstanceCollectionResponseLinks

NewDaVinciConnectorInstanceCollectionResponseLinks instantiates a new DaVinciConnectorInstanceCollectionResponseLinks 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 NewDaVinciConnectorInstanceCollectionResponseLinksWithDefaults

func NewDaVinciConnectorInstanceCollectionResponseLinksWithDefaults() *DaVinciConnectorInstanceCollectionResponseLinks

NewDaVinciConnectorInstanceCollectionResponseLinksWithDefaults instantiates a new DaVinciConnectorInstanceCollectionResponseLinks 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 (*DaVinciConnectorInstanceCollectionResponseLinks) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciConnectorInstanceCollectionResponseLinks) GetEnvironmentOk

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

func (*DaVinciConnectorInstanceCollectionResponseLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciConnectorInstanceCollectionResponseLinks) GetSelfOk

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

func (DaVinciConnectorInstanceCollectionResponseLinks) LogValue

func (DaVinciConnectorInstanceCollectionResponseLinks) MarshalJSON

func (*DaVinciConnectorInstanceCollectionResponseLinks) SetEnvironment

SetEnvironment sets field value

func (*DaVinciConnectorInstanceCollectionResponseLinks) SetSelf

SetSelf sets field value

func (DaVinciConnectorInstanceCollectionResponseLinks) ToMap

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

func (*DaVinciConnectorInstanceCollectionResponseLinks) UnmarshalJSON

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

type DaVinciConnectorInstanceCreateRequest

type DaVinciConnectorInstanceCreateRequest struct {
	Name                 string                      `json:"name" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	Connector            ResourceRelationshipDaVinci `json:"connector"`
	Properties           map[string]interface{}      `json:"properties,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorInstanceCreateRequest struct for DaVinciConnectorInstanceCreateRequest

func NewDaVinciConnectorInstanceCreateRequest

func NewDaVinciConnectorInstanceCreateRequest(name string, connector ResourceRelationshipDaVinci) *DaVinciConnectorInstanceCreateRequest

NewDaVinciConnectorInstanceCreateRequest instantiates a new DaVinciConnectorInstanceCreateRequest 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 NewDaVinciConnectorInstanceCreateRequestWithDefaults

func NewDaVinciConnectorInstanceCreateRequestWithDefaults() *DaVinciConnectorInstanceCreateRequest

NewDaVinciConnectorInstanceCreateRequestWithDefaults instantiates a new DaVinciConnectorInstanceCreateRequest 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 (*DaVinciConnectorInstanceCreateRequest) GetConnector

GetConnector returns the Connector field value

func (*DaVinciConnectorInstanceCreateRequest) GetConnectorOk

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

func (*DaVinciConnectorInstanceCreateRequest) GetName

GetName returns the Name field value

func (*DaVinciConnectorInstanceCreateRequest) GetNameOk

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

func (*DaVinciConnectorInstanceCreateRequest) GetProperties

func (o *DaVinciConnectorInstanceCreateRequest) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*DaVinciConnectorInstanceCreateRequest) GetPropertiesOk

func (o *DaVinciConnectorInstanceCreateRequest) GetPropertiesOk() (map[string]interface{}, bool)

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

func (*DaVinciConnectorInstanceCreateRequest) HasProperties

func (o *DaVinciConnectorInstanceCreateRequest) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (DaVinciConnectorInstanceCreateRequest) LogValue

func (DaVinciConnectorInstanceCreateRequest) MarshalJSON

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

func (*DaVinciConnectorInstanceCreateRequest) SetConnector

SetConnector sets field value

func (*DaVinciConnectorInstanceCreateRequest) SetName

SetName sets field value

func (*DaVinciConnectorInstanceCreateRequest) SetProperties

func (o *DaVinciConnectorInstanceCreateRequest) SetProperties(v map[string]interface{})

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

func (DaVinciConnectorInstanceCreateRequest) ToMap

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

func (*DaVinciConnectorInstanceCreateRequest) UnmarshalJSON

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

type DaVinciConnectorInstanceReplaceRequest

type DaVinciConnectorInstanceReplaceRequest struct {
	Name                 string                      `json:"name" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	Connector            ResourceRelationshipDaVinci `json:"connector"`
	Properties           map[string]interface{}      `json:"properties,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorInstanceReplaceRequest struct for DaVinciConnectorInstanceReplaceRequest

func NewDaVinciConnectorInstanceReplaceRequest

func NewDaVinciConnectorInstanceReplaceRequest(name string, connector ResourceRelationshipDaVinci) *DaVinciConnectorInstanceReplaceRequest

NewDaVinciConnectorInstanceReplaceRequest instantiates a new DaVinciConnectorInstanceReplaceRequest 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 NewDaVinciConnectorInstanceReplaceRequestWithDefaults

func NewDaVinciConnectorInstanceReplaceRequestWithDefaults() *DaVinciConnectorInstanceReplaceRequest

NewDaVinciConnectorInstanceReplaceRequestWithDefaults instantiates a new DaVinciConnectorInstanceReplaceRequest 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 (*DaVinciConnectorInstanceReplaceRequest) GetConnector

GetConnector returns the Connector field value

func (*DaVinciConnectorInstanceReplaceRequest) GetConnectorOk

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

func (*DaVinciConnectorInstanceReplaceRequest) GetName

GetName returns the Name field value

func (*DaVinciConnectorInstanceReplaceRequest) GetNameOk

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

func (*DaVinciConnectorInstanceReplaceRequest) GetProperties

func (o *DaVinciConnectorInstanceReplaceRequest) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*DaVinciConnectorInstanceReplaceRequest) GetPropertiesOk

func (o *DaVinciConnectorInstanceReplaceRequest) GetPropertiesOk() (map[string]interface{}, bool)

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

func (*DaVinciConnectorInstanceReplaceRequest) HasProperties

func (o *DaVinciConnectorInstanceReplaceRequest) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (DaVinciConnectorInstanceReplaceRequest) LogValue

func (DaVinciConnectorInstanceReplaceRequest) MarshalJSON

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

func (*DaVinciConnectorInstanceReplaceRequest) SetConnector

SetConnector sets field value

func (*DaVinciConnectorInstanceReplaceRequest) SetName

SetName sets field value

func (*DaVinciConnectorInstanceReplaceRequest) SetProperties

func (o *DaVinciConnectorInstanceReplaceRequest) SetProperties(v map[string]interface{})

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

func (DaVinciConnectorInstanceReplaceRequest) ToMap

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

func (*DaVinciConnectorInstanceReplaceRequest) UnmarshalJSON

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

type DaVinciConnectorInstanceResponse

type DaVinciConnectorInstanceResponse struct {
	Links                DaVinciConnectorInstanceResponseLinks `json:"_links"`
	Connector            ResourceRelationshipDaVinciReadOnly   `json:"connector"`
	Environment          ResourceRelationshipReadOnly          `json:"environment"`
	Id                   string                                `json:"id"`
	Name                 string                                `json:"name"`
	CreatedAt            *time.Time                            `json:"createdAt,omitempty"`
	Properties           map[string]interface{}                `json:"properties,omitempty"`
	UpdatedAt            *time.Time                            `json:"updatedAt,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorInstanceResponse struct for DaVinciConnectorInstanceResponse

func NewDaVinciConnectorInstanceResponse

NewDaVinciConnectorInstanceResponse instantiates a new DaVinciConnectorInstanceResponse 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 NewDaVinciConnectorInstanceResponseWithDefaults

func NewDaVinciConnectorInstanceResponseWithDefaults() *DaVinciConnectorInstanceResponse

NewDaVinciConnectorInstanceResponseWithDefaults instantiates a new DaVinciConnectorInstanceResponse 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 (*DaVinciConnectorInstanceResponse) GetConnector

GetConnector returns the Connector field value

func (*DaVinciConnectorInstanceResponse) GetConnectorOk

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

func (*DaVinciConnectorInstanceResponse) GetCreatedAt

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

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

func (*DaVinciConnectorInstanceResponse) GetCreatedAtOk

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

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

func (*DaVinciConnectorInstanceResponse) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciConnectorInstanceResponse) GetEnvironmentOk

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

func (*DaVinciConnectorInstanceResponse) GetId

GetId returns the Id field value

func (*DaVinciConnectorInstanceResponse) GetIdOk

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

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

GetLinks returns the Links field value

func (*DaVinciConnectorInstanceResponse) GetLinksOk

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

func (*DaVinciConnectorInstanceResponse) GetName

GetName returns the Name field value

func (*DaVinciConnectorInstanceResponse) GetNameOk

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

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

func (*DaVinciConnectorInstanceResponse) GetProperties

func (o *DaVinciConnectorInstanceResponse) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*DaVinciConnectorInstanceResponse) GetPropertiesOk

func (o *DaVinciConnectorInstanceResponse) GetPropertiesOk() (map[string]interface{}, bool)

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

func (*DaVinciConnectorInstanceResponse) GetUpdatedAt

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

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

func (*DaVinciConnectorInstanceResponse) GetUpdatedAtOk

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

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

func (*DaVinciConnectorInstanceResponse) HasCreatedAt

func (o *DaVinciConnectorInstanceResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*DaVinciConnectorInstanceResponse) HasProperties

func (o *DaVinciConnectorInstanceResponse) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*DaVinciConnectorInstanceResponse) HasUpdatedAt

func (o *DaVinciConnectorInstanceResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (DaVinciConnectorInstanceResponse) LogValue

func (DaVinciConnectorInstanceResponse) MarshalJSON

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

func (*DaVinciConnectorInstanceResponse) SetConnector

SetConnector sets field value

func (*DaVinciConnectorInstanceResponse) SetCreatedAt

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

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

func (*DaVinciConnectorInstanceResponse) SetEnvironment

SetEnvironment sets field value

func (*DaVinciConnectorInstanceResponse) SetId

SetId sets field value

SetLinks sets field value

func (*DaVinciConnectorInstanceResponse) SetName

SetName sets field value

func (*DaVinciConnectorInstanceResponse) SetProperties

func (o *DaVinciConnectorInstanceResponse) SetProperties(v map[string]interface{})

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

func (*DaVinciConnectorInstanceResponse) SetUpdatedAt

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

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

func (DaVinciConnectorInstanceResponse) ToMap

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

func (*DaVinciConnectorInstanceResponse) UnmarshalJSON

func (o *DaVinciConnectorInstanceResponse) UnmarshalJSON(data []byte) (err error)
type DaVinciConnectorInstanceResponseLinks struct {
	Environment                  JSONHALLink  `json:"environment"`
	Self                         JSONHALLink  `json:"self"`
	ConnectorInstanceClone       JSONHALLink  `json:"connectorInstance.clone"`
	Applications                 *JSONHALLink `json:"applications,omitempty"`
	DeviceAuthenticationPolicies *JSONHALLink `json:"deviceAuthenticationPolicies,omitempty"`
	Gateways                     *JSONHALLink `json:"gateways,omitempty"`
	NotificationsPolicies        *JSONHALLink `json:"notificationsPolicies,omitempty"`
	AdditionalProperties         map[string]interface{}
}

DaVinciConnectorInstanceResponseLinks struct for DaVinciConnectorInstanceResponseLinks

func NewDaVinciConnectorInstanceResponseLinks(environment JSONHALLink, self JSONHALLink, connectorInstanceClone JSONHALLink) *DaVinciConnectorInstanceResponseLinks

NewDaVinciConnectorInstanceResponseLinks instantiates a new DaVinciConnectorInstanceResponseLinks 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 NewDaVinciConnectorInstanceResponseLinksWithDefaults

func NewDaVinciConnectorInstanceResponseLinksWithDefaults() *DaVinciConnectorInstanceResponseLinks

NewDaVinciConnectorInstanceResponseLinksWithDefaults instantiates a new DaVinciConnectorInstanceResponseLinks 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 (*DaVinciConnectorInstanceResponseLinks) GetApplications

GetApplications returns the Applications field value if set, zero value otherwise.

func (*DaVinciConnectorInstanceResponseLinks) GetApplicationsOk

func (o *DaVinciConnectorInstanceResponseLinks) GetApplicationsOk() (*JSONHALLink, bool)

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

func (*DaVinciConnectorInstanceResponseLinks) GetConnectorInstanceClone

func (o *DaVinciConnectorInstanceResponseLinks) GetConnectorInstanceClone() JSONHALLink

GetConnectorInstanceClone returns the ConnectorInstanceClone field value

func (*DaVinciConnectorInstanceResponseLinks) GetConnectorInstanceCloneOk

func (o *DaVinciConnectorInstanceResponseLinks) GetConnectorInstanceCloneOk() (*JSONHALLink, bool)

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

func (*DaVinciConnectorInstanceResponseLinks) GetDeviceAuthenticationPolicies

func (o *DaVinciConnectorInstanceResponseLinks) GetDeviceAuthenticationPolicies() JSONHALLink

GetDeviceAuthenticationPolicies returns the DeviceAuthenticationPolicies field value if set, zero value otherwise.

func (*DaVinciConnectorInstanceResponseLinks) GetDeviceAuthenticationPoliciesOk

func (o *DaVinciConnectorInstanceResponseLinks) GetDeviceAuthenticationPoliciesOk() (*JSONHALLink, bool)

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

func (*DaVinciConnectorInstanceResponseLinks) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciConnectorInstanceResponseLinks) GetEnvironmentOk

func (o *DaVinciConnectorInstanceResponseLinks) GetEnvironmentOk() (*JSONHALLink, bool)

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

func (*DaVinciConnectorInstanceResponseLinks) GetGateways

GetGateways returns the Gateways field value if set, zero value otherwise.

func (*DaVinciConnectorInstanceResponseLinks) GetGatewaysOk

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

func (*DaVinciConnectorInstanceResponseLinks) GetNotificationsPolicies

func (o *DaVinciConnectorInstanceResponseLinks) GetNotificationsPolicies() JSONHALLink

GetNotificationsPolicies returns the NotificationsPolicies field value if set, zero value otherwise.

func (*DaVinciConnectorInstanceResponseLinks) GetNotificationsPoliciesOk

func (o *DaVinciConnectorInstanceResponseLinks) GetNotificationsPoliciesOk() (*JSONHALLink, bool)

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

func (*DaVinciConnectorInstanceResponseLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciConnectorInstanceResponseLinks) GetSelfOk

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

func (*DaVinciConnectorInstanceResponseLinks) HasApplications

func (o *DaVinciConnectorInstanceResponseLinks) HasApplications() bool

HasApplications returns a boolean if a field has been set.

func (*DaVinciConnectorInstanceResponseLinks) HasDeviceAuthenticationPolicies

func (o *DaVinciConnectorInstanceResponseLinks) HasDeviceAuthenticationPolicies() bool

HasDeviceAuthenticationPolicies returns a boolean if a field has been set.

func (*DaVinciConnectorInstanceResponseLinks) HasGateways

HasGateways returns a boolean if a field has been set.

func (*DaVinciConnectorInstanceResponseLinks) HasNotificationsPolicies

func (o *DaVinciConnectorInstanceResponseLinks) HasNotificationsPolicies() bool

HasNotificationsPolicies returns a boolean if a field has been set.

func (DaVinciConnectorInstanceResponseLinks) LogValue

func (DaVinciConnectorInstanceResponseLinks) MarshalJSON

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

func (*DaVinciConnectorInstanceResponseLinks) SetApplications

func (o *DaVinciConnectorInstanceResponseLinks) SetApplications(v JSONHALLink)

SetApplications gets a reference to the given JSONHALLink and assigns it to the Applications field.

func (*DaVinciConnectorInstanceResponseLinks) SetConnectorInstanceClone

func (o *DaVinciConnectorInstanceResponseLinks) SetConnectorInstanceClone(v JSONHALLink)

SetConnectorInstanceClone sets field value

func (*DaVinciConnectorInstanceResponseLinks) SetDeviceAuthenticationPolicies

func (o *DaVinciConnectorInstanceResponseLinks) SetDeviceAuthenticationPolicies(v JSONHALLink)

SetDeviceAuthenticationPolicies gets a reference to the given JSONHALLink and assigns it to the DeviceAuthenticationPolicies field.

func (*DaVinciConnectorInstanceResponseLinks) SetEnvironment

SetEnvironment sets field value

func (*DaVinciConnectorInstanceResponseLinks) SetGateways

SetGateways gets a reference to the given JSONHALLink and assigns it to the Gateways field.

func (*DaVinciConnectorInstanceResponseLinks) SetNotificationsPolicies

func (o *DaVinciConnectorInstanceResponseLinks) SetNotificationsPolicies(v JSONHALLink)

SetNotificationsPolicies gets a reference to the given JSONHALLink and assigns it to the NotificationsPolicies field.

func (*DaVinciConnectorInstanceResponseLinks) SetSelf

SetSelf sets field value

func (DaVinciConnectorInstanceResponseLinks) ToMap

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

func (*DaVinciConnectorInstanceResponseLinks) UnmarshalJSON

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

type DaVinciConnectorMinimalResponse

type DaVinciConnectorMinimalResponse struct {
	Links                DaVinciConnectorMinimalResponseLinks    `json:"_links"`
	CreatedAt            time.Time                               `json:"createdAt"`
	Description          string                                  `json:"description"`
	Environment          ResourceRelationshipReadOnly            `json:"environment"`
	Id                   string                                  `json:"id"`
	Metadata             DaVinciConnectorMinimalResponseMetadata `json:"metadata"`
	Name                 string                                  `json:"name"`
	UpdatedAt            time.Time                               `json:"updatedAt"`
	Version              string                                  `json:"version"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorMinimalResponse struct for DaVinciConnectorMinimalResponse

func NewDaVinciConnectorMinimalResponse

func NewDaVinciConnectorMinimalResponse(links DaVinciConnectorMinimalResponseLinks, createdAt time.Time, description string, environment ResourceRelationshipReadOnly, id string, metadata DaVinciConnectorMinimalResponseMetadata, name string, updatedAt time.Time, version string) *DaVinciConnectorMinimalResponse

NewDaVinciConnectorMinimalResponse instantiates a new DaVinciConnectorMinimalResponse 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 NewDaVinciConnectorMinimalResponseWithDefaults

func NewDaVinciConnectorMinimalResponseWithDefaults() *DaVinciConnectorMinimalResponse

NewDaVinciConnectorMinimalResponseWithDefaults instantiates a new DaVinciConnectorMinimalResponse 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 (*DaVinciConnectorMinimalResponse) GetCreatedAt

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

GetCreatedAt returns the CreatedAt field value

func (*DaVinciConnectorMinimalResponse) GetCreatedAtOk

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

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

func (*DaVinciConnectorMinimalResponse) GetDescription

func (o *DaVinciConnectorMinimalResponse) GetDescription() string

GetDescription returns the Description field value

func (*DaVinciConnectorMinimalResponse) GetDescriptionOk

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

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

func (*DaVinciConnectorMinimalResponse) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciConnectorMinimalResponse) GetEnvironmentOk

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

func (*DaVinciConnectorMinimalResponse) GetId

GetId returns the Id field value

func (*DaVinciConnectorMinimalResponse) GetIdOk

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

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

GetLinks returns the Links field value

func (*DaVinciConnectorMinimalResponse) GetLinksOk

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

func (*DaVinciConnectorMinimalResponse) GetMetadata

GetMetadata returns the Metadata field value

func (*DaVinciConnectorMinimalResponse) GetMetadataOk

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

func (*DaVinciConnectorMinimalResponse) GetName

GetName returns the Name field value

func (*DaVinciConnectorMinimalResponse) GetNameOk

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

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

func (*DaVinciConnectorMinimalResponse) GetUpdatedAt

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

GetUpdatedAt returns the UpdatedAt field value

func (*DaVinciConnectorMinimalResponse) GetUpdatedAtOk

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

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

func (*DaVinciConnectorMinimalResponse) GetVersion

func (o *DaVinciConnectorMinimalResponse) GetVersion() string

GetVersion returns the Version field value

func (*DaVinciConnectorMinimalResponse) GetVersionOk

func (o *DaVinciConnectorMinimalResponse) GetVersionOk() (*string, bool)

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

func (DaVinciConnectorMinimalResponse) LogValue

func (DaVinciConnectorMinimalResponse) MarshalJSON

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

func (*DaVinciConnectorMinimalResponse) SetCreatedAt

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

SetCreatedAt sets field value

func (*DaVinciConnectorMinimalResponse) SetDescription

func (o *DaVinciConnectorMinimalResponse) SetDescription(v string)

SetDescription sets field value

func (*DaVinciConnectorMinimalResponse) SetEnvironment

SetEnvironment sets field value

func (*DaVinciConnectorMinimalResponse) SetId

SetId sets field value

SetLinks sets field value

func (*DaVinciConnectorMinimalResponse) SetMetadata

SetMetadata sets field value

func (*DaVinciConnectorMinimalResponse) SetName

SetName sets field value

func (*DaVinciConnectorMinimalResponse) SetUpdatedAt

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

SetUpdatedAt sets field value

func (*DaVinciConnectorMinimalResponse) SetVersion

func (o *DaVinciConnectorMinimalResponse) SetVersion(v string)

SetVersion sets field value

func (DaVinciConnectorMinimalResponse) ToMap

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

func (*DaVinciConnectorMinimalResponse) UnmarshalJSON

func (o *DaVinciConnectorMinimalResponse) UnmarshalJSON(data []byte) (err error)
type DaVinciConnectorMinimalResponseLinks struct {
	Environment          JSONHALLink `json:"environment"`
	Self                 JSONHALLink `json:"self"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorMinimalResponseLinks struct for DaVinciConnectorMinimalResponseLinks

func NewDaVinciConnectorMinimalResponseLinks(environment JSONHALLink, self JSONHALLink) *DaVinciConnectorMinimalResponseLinks

NewDaVinciConnectorMinimalResponseLinks instantiates a new DaVinciConnectorMinimalResponseLinks 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 NewDaVinciConnectorMinimalResponseLinksWithDefaults

func NewDaVinciConnectorMinimalResponseLinksWithDefaults() *DaVinciConnectorMinimalResponseLinks

NewDaVinciConnectorMinimalResponseLinksWithDefaults instantiates a new DaVinciConnectorMinimalResponseLinks 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 (*DaVinciConnectorMinimalResponseLinks) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciConnectorMinimalResponseLinks) GetEnvironmentOk

func (o *DaVinciConnectorMinimalResponseLinks) GetEnvironmentOk() (*JSONHALLink, bool)

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

func (*DaVinciConnectorMinimalResponseLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciConnectorMinimalResponseLinks) GetSelfOk

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

func (DaVinciConnectorMinimalResponseLinks) LogValue

func (DaVinciConnectorMinimalResponseLinks) MarshalJSON

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

func (*DaVinciConnectorMinimalResponseLinks) SetEnvironment

SetEnvironment sets field value

func (*DaVinciConnectorMinimalResponseLinks) SetSelf

SetSelf sets field value

func (DaVinciConnectorMinimalResponseLinks) ToMap

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

func (*DaVinciConnectorMinimalResponseLinks) UnmarshalJSON

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

type DaVinciConnectorMinimalResponseMetadata

type DaVinciConnectorMinimalResponseMetadata struct {
	Colors               *DaVinciConnectorMinimalResponseMetadataColors `json:"colors,omitempty"`
	Logos                *DaVinciConnectorMinimalResponseMetadataLogos  `json:"logos,omitempty"`
	Type                 *DaVinciConnectorMinimalResponseMetadataType   `json:"type,omitempty"`
	Vendor               *string                                        `json:"vendor,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorMinimalResponseMetadata struct for DaVinciConnectorMinimalResponseMetadata

func NewDaVinciConnectorMinimalResponseMetadata

func NewDaVinciConnectorMinimalResponseMetadata() *DaVinciConnectorMinimalResponseMetadata

NewDaVinciConnectorMinimalResponseMetadata instantiates a new DaVinciConnectorMinimalResponseMetadata 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 NewDaVinciConnectorMinimalResponseMetadataWithDefaults

func NewDaVinciConnectorMinimalResponseMetadataWithDefaults() *DaVinciConnectorMinimalResponseMetadata

NewDaVinciConnectorMinimalResponseMetadataWithDefaults instantiates a new DaVinciConnectorMinimalResponseMetadata 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 (*DaVinciConnectorMinimalResponseMetadata) GetColors

GetColors returns the Colors field value if set, zero value otherwise.

func (*DaVinciConnectorMinimalResponseMetadata) GetColorsOk

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

func (*DaVinciConnectorMinimalResponseMetadata) GetLogos

GetLogos returns the Logos field value if set, zero value otherwise.

func (*DaVinciConnectorMinimalResponseMetadata) GetLogosOk

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

func (*DaVinciConnectorMinimalResponseMetadata) GetType

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

func (*DaVinciConnectorMinimalResponseMetadata) GetTypeOk

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 (*DaVinciConnectorMinimalResponseMetadata) GetVendor

GetVendor returns the Vendor field value if set, zero value otherwise.

func (*DaVinciConnectorMinimalResponseMetadata) GetVendorOk

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

func (*DaVinciConnectorMinimalResponseMetadata) HasColors

HasColors returns a boolean if a field has been set.

func (*DaVinciConnectorMinimalResponseMetadata) HasLogos

HasLogos returns a boolean if a field has been set.

func (*DaVinciConnectorMinimalResponseMetadata) HasType

HasType returns a boolean if a field has been set.

func (*DaVinciConnectorMinimalResponseMetadata) HasVendor

HasVendor returns a boolean if a field has been set.

func (DaVinciConnectorMinimalResponseMetadata) LogValue

func (DaVinciConnectorMinimalResponseMetadata) MarshalJSON

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

func (*DaVinciConnectorMinimalResponseMetadata) SetColors

SetColors gets a reference to the given DaVinciConnectorMinimalResponseMetadataColors and assigns it to the Colors field.

func (*DaVinciConnectorMinimalResponseMetadata) SetLogos

SetLogos gets a reference to the given DaVinciConnectorMinimalResponseMetadataLogos and assigns it to the Logos field.

func (*DaVinciConnectorMinimalResponseMetadata) SetType

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

func (*DaVinciConnectorMinimalResponseMetadata) SetVendor

SetVendor gets a reference to the given string and assigns it to the Vendor field.

func (DaVinciConnectorMinimalResponseMetadata) ToMap

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

func (*DaVinciConnectorMinimalResponseMetadata) UnmarshalJSON

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

type DaVinciConnectorMinimalResponseMetadataColors

type DaVinciConnectorMinimalResponseMetadataColors struct {
	Canvas               *string `json:"canvas,omitempty"`
	CanvasText           *string `json:"canvasText,omitempty"`
	Dark                 *string `json:"dark,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorMinimalResponseMetadataColors struct for DaVinciConnectorMinimalResponseMetadataColors

func NewDaVinciConnectorMinimalResponseMetadataColors

func NewDaVinciConnectorMinimalResponseMetadataColors() *DaVinciConnectorMinimalResponseMetadataColors

NewDaVinciConnectorMinimalResponseMetadataColors instantiates a new DaVinciConnectorMinimalResponseMetadataColors 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 NewDaVinciConnectorMinimalResponseMetadataColorsWithDefaults

func NewDaVinciConnectorMinimalResponseMetadataColorsWithDefaults() *DaVinciConnectorMinimalResponseMetadataColors

NewDaVinciConnectorMinimalResponseMetadataColorsWithDefaults instantiates a new DaVinciConnectorMinimalResponseMetadataColors 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 (*DaVinciConnectorMinimalResponseMetadataColors) GetCanvas

GetCanvas returns the Canvas field value if set, zero value otherwise.

func (*DaVinciConnectorMinimalResponseMetadataColors) GetCanvasOk

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

func (*DaVinciConnectorMinimalResponseMetadataColors) GetCanvasText

GetCanvasText returns the CanvasText field value if set, zero value otherwise.

func (*DaVinciConnectorMinimalResponseMetadataColors) GetCanvasTextOk

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

func (*DaVinciConnectorMinimalResponseMetadataColors) GetDark

GetDark returns the Dark field value if set, zero value otherwise.

func (*DaVinciConnectorMinimalResponseMetadataColors) GetDarkOk

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

func (*DaVinciConnectorMinimalResponseMetadataColors) HasCanvas

HasCanvas returns a boolean if a field has been set.

func (*DaVinciConnectorMinimalResponseMetadataColors) HasCanvasText

HasCanvasText returns a boolean if a field has been set.

func (*DaVinciConnectorMinimalResponseMetadataColors) HasDark

HasDark returns a boolean if a field has been set.

func (DaVinciConnectorMinimalResponseMetadataColors) LogValue

func (DaVinciConnectorMinimalResponseMetadataColors) MarshalJSON

func (*DaVinciConnectorMinimalResponseMetadataColors) SetCanvas

SetCanvas gets a reference to the given string and assigns it to the Canvas field.

func (*DaVinciConnectorMinimalResponseMetadataColors) SetCanvasText

SetCanvasText gets a reference to the given string and assigns it to the CanvasText field.

func (*DaVinciConnectorMinimalResponseMetadataColors) SetDark

SetDark gets a reference to the given string and assigns it to the Dark field.

func (DaVinciConnectorMinimalResponseMetadataColors) ToMap

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

func (*DaVinciConnectorMinimalResponseMetadataColors) UnmarshalJSON

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

type DaVinciConnectorMinimalResponseMetadataLogos

type DaVinciConnectorMinimalResponseMetadataLogos struct {
	Canvas               *DaVinciConnectorMinimalResponseMetadataLogosCanvas `json:"canvas,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorMinimalResponseMetadataLogos struct for DaVinciConnectorMinimalResponseMetadataLogos

func NewDaVinciConnectorMinimalResponseMetadataLogos

func NewDaVinciConnectorMinimalResponseMetadataLogos() *DaVinciConnectorMinimalResponseMetadataLogos

NewDaVinciConnectorMinimalResponseMetadataLogos instantiates a new DaVinciConnectorMinimalResponseMetadataLogos 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 NewDaVinciConnectorMinimalResponseMetadataLogosWithDefaults

func NewDaVinciConnectorMinimalResponseMetadataLogosWithDefaults() *DaVinciConnectorMinimalResponseMetadataLogos

NewDaVinciConnectorMinimalResponseMetadataLogosWithDefaults instantiates a new DaVinciConnectorMinimalResponseMetadataLogos 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 (*DaVinciConnectorMinimalResponseMetadataLogos) GetCanvas

GetCanvas returns the Canvas field value if set, zero value otherwise.

func (*DaVinciConnectorMinimalResponseMetadataLogos) GetCanvasOk

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

func (*DaVinciConnectorMinimalResponseMetadataLogos) HasCanvas

HasCanvas returns a boolean if a field has been set.

func (DaVinciConnectorMinimalResponseMetadataLogos) LogValue

func (DaVinciConnectorMinimalResponseMetadataLogos) MarshalJSON

func (*DaVinciConnectorMinimalResponseMetadataLogos) SetCanvas

SetCanvas gets a reference to the given DaVinciConnectorMinimalResponseMetadataLogosCanvas and assigns it to the Canvas field.

func (DaVinciConnectorMinimalResponseMetadataLogos) ToMap

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

func (*DaVinciConnectorMinimalResponseMetadataLogos) UnmarshalJSON

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

type DaVinciConnectorMinimalResponseMetadataLogosCanvas

type DaVinciConnectorMinimalResponseMetadataLogosCanvas struct {
	ImageFileName        *string `json:"imageFileName,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciConnectorMinimalResponseMetadataLogosCanvas struct for DaVinciConnectorMinimalResponseMetadataLogosCanvas

func NewDaVinciConnectorMinimalResponseMetadataLogosCanvas

func NewDaVinciConnectorMinimalResponseMetadataLogosCanvas() *DaVinciConnectorMinimalResponseMetadataLogosCanvas

NewDaVinciConnectorMinimalResponseMetadataLogosCanvas instantiates a new DaVinciConnectorMinimalResponseMetadataLogosCanvas 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 NewDaVinciConnectorMinimalResponseMetadataLogosCanvasWithDefaults

func NewDaVinciConnectorMinimalResponseMetadataLogosCanvasWithDefaults() *DaVinciConnectorMinimalResponseMetadataLogosCanvas

NewDaVinciConnectorMinimalResponseMetadataLogosCanvasWithDefaults instantiates a new DaVinciConnectorMinimalResponseMetadataLogosCanvas 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 (*DaVinciConnectorMinimalResponseMetadataLogosCanvas) GetImageFileName

GetImageFileName returns the ImageFileName field value if set, zero value otherwise.

func (*DaVinciConnectorMinimalResponseMetadataLogosCanvas) GetImageFileNameOk

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

func (*DaVinciConnectorMinimalResponseMetadataLogosCanvas) HasImageFileName

HasImageFileName returns a boolean if a field has been set.

func (DaVinciConnectorMinimalResponseMetadataLogosCanvas) LogValue

func (DaVinciConnectorMinimalResponseMetadataLogosCanvas) MarshalJSON

func (*DaVinciConnectorMinimalResponseMetadataLogosCanvas) SetImageFileName

SetImageFileName gets a reference to the given string and assigns it to the ImageFileName field.

func (DaVinciConnectorMinimalResponseMetadataLogosCanvas) ToMap

func (*DaVinciConnectorMinimalResponseMetadataLogosCanvas) UnmarshalJSON

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

type DaVinciConnectorMinimalResponseMetadataType

type DaVinciConnectorMinimalResponseMetadataType string

DaVinciConnectorMinimalResponseMetadataType the model 'DaVinciConnectorMinimalResponseMetadataType'

const (
	DAVINCICONNECTORMINIMALRESPONSEMETADATATYPE_CORE    DaVinciConnectorMinimalResponseMetadataType = "core"
	DAVINCICONNECTORMINIMALRESPONSEMETADATATYPE_PING    DaVinciConnectorMinimalResponseMetadataType = "ping"
	DAVINCICONNECTORMINIMALRESPONSEMETADATATYPE_SERVICE DaVinciConnectorMinimalResponseMetadataType = "service"
)

List of DaVinci_Connector_Minimal_Response_Metadata_Type

func NewDaVinciConnectorMinimalResponseMetadataTypeFromValue

func NewDaVinciConnectorMinimalResponseMetadataTypeFromValue(v string) (*DaVinciConnectorMinimalResponseMetadataType, error)

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

func (DaVinciConnectorMinimalResponseMetadataType) IsValid

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

func (DaVinciConnectorMinimalResponseMetadataType) Ptr

Ptr returns reference to DaVinci_Connector_Minimal_Response_Metadata_Type value

func (*DaVinciConnectorMinimalResponseMetadataType) UnmarshalJSON

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

type DaVinciConnectorsApiService

type DaVinciConnectorsApiService service

DaVinciConnectorsApiService DaVinciConnectorsApi service

func (*DaVinciConnectorsApiService) CreateConnectorInstance

func (a *DaVinciConnectorsApiService) CreateConnectorInstance(ctx context.Context, environmentID uuid.UUID) ApiCreateConnectorInstanceRequest

CreateConnectorInstance Method for CreateConnectorInstance

@permission davinci:create:connections
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiCreateConnectorInstanceRequest

func (*DaVinciConnectorsApiService) CreateConnectorInstanceById

func (a *DaVinciConnectorsApiService) CreateConnectorInstanceById(ctx context.Context, environmentID uuid.UUID, connectorInstanceID string) ApiCreateConnectorInstanceByIdRequest

CreateConnectorInstanceById Method for CreateConnectorInstanceById

@permission davinci:create:connections
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param connectorInstanceID
@return ApiCreateConnectorInstanceByIdRequest

func (*DaVinciConnectorsApiService) CreateConnectorInstanceByIdExecute

Execute executes the request

@return DaVinciConnectorInstanceResponse

func (*DaVinciConnectorsApiService) CreateConnectorInstanceExecute

Execute executes the request

@return DaVinciConnectorInstanceResponse

func (*DaVinciConnectorsApiService) DeleteConnectorInstanceById

func (a *DaVinciConnectorsApiService) DeleteConnectorInstanceById(ctx context.Context, environmentID uuid.UUID, connectorInstanceID string) ApiDeleteConnectorInstanceByIdRequest

DeleteConnectorInstanceById Method for DeleteConnectorInstanceById

@permission davinci:delete:connections
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param connectorInstanceID
@return ApiDeleteConnectorInstanceByIdRequest

func (*DaVinciConnectorsApiService) DeleteConnectorInstanceByIdExecute

func (a *DaVinciConnectorsApiService) DeleteConnectorInstanceByIdExecute(r ApiDeleteConnectorInstanceByIdRequest) (*http.Response, error)

Execute executes the request

func (*DaVinciConnectorsApiService) GetConnectorById

func (a *DaVinciConnectorsApiService) GetConnectorById(ctx context.Context, environmentID uuid.UUID, connectorID uuid.UUID) ApiGetConnectorByIdRequest

GetConnectorById Method for GetConnectorById

@permission davinci:read:connectors
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param connectorID
@return ApiGetConnectorByIdRequest

func (*DaVinciConnectorsApiService) GetConnectorByIdExecute

Execute executes the request

@return DaVinciConnectorMinimalResponse

func (*DaVinciConnectorsApiService) GetConnectorInstanceById

func (a *DaVinciConnectorsApiService) GetConnectorInstanceById(ctx context.Context, environmentID uuid.UUID, connectorInstanceID string) ApiGetConnectorInstanceByIdRequest

GetConnectorInstanceById Method for GetConnectorInstanceById

@permission davinci:read:connections
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param connectorInstanceID
@return ApiGetConnectorInstanceByIdRequest

func (*DaVinciConnectorsApiService) GetConnectorInstanceByIdExecute

Execute executes the request

@return DaVinciConnectorInstanceResponse

func (*DaVinciConnectorsApiService) GetConnectorInstances

func (a *DaVinciConnectorsApiService) GetConnectorInstances(ctx context.Context, environmentID uuid.UUID) ApiGetConnectorInstancesRequest

GetConnectorInstances Method for GetConnectorInstances

@permission davinci:read:connections
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiGetConnectorInstancesRequest

func (*DaVinciConnectorsApiService) GetConnectorInstancesExecute

Execute executes the request

@return DaVinciConnectorInstanceCollectionResponse

func (*DaVinciConnectorsApiService) GetConnectors

func (a *DaVinciConnectorsApiService) GetConnectors(ctx context.Context, environmentID uuid.UUID) ApiGetConnectorsRequest

GetConnectors Method for GetConnectors

@permission davinci:read:connectors
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiGetConnectorsRequest

func (*DaVinciConnectorsApiService) GetConnectorsExecute

Execute executes the request

@return DaVinciConnectorCollectionMinimalResponse

func (*DaVinciConnectorsApiService) GetDetailsByConnectorId

func (a *DaVinciConnectorsApiService) GetDetailsByConnectorId(ctx context.Context, environmentID uuid.UUID, connectorID uuid.UUID) ApiGetDetailsByConnectorIdRequest

GetDetailsByConnectorId Method for GetDetailsByConnectorId

@permission davinci:read:connectors
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param connectorID
@return ApiGetDetailsByConnectorIdRequest

func (*DaVinciConnectorsApiService) GetDetailsByConnectorIdExecute

Execute executes the request

@return DaVinciConnectorDetailsResponse

func (*DaVinciConnectorsApiService) ReplaceConnectorInstanceById

func (a *DaVinciConnectorsApiService) ReplaceConnectorInstanceById(ctx context.Context, environmentID uuid.UUID, connectorInstanceID string) ApiReplaceConnectorInstanceByIdRequest

ReplaceConnectorInstanceById Method for ReplaceConnectorInstanceById

@permission davinci:update:connections
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param connectorInstanceID
@return ApiReplaceConnectorInstanceByIdRequest

func (*DaVinciConnectorsApiService) ReplaceConnectorInstanceByIdExecute

Execute executes the request

@return DaVinciConnectorInstanceResponse

type DaVinciFlowPolicyCollection

type DaVinciFlowPolicyCollection struct {
	Links                DaVinciFlowPolicyCollectionLinks    `json:"_links"`
	Embedded             DaVinciFlowPolicyCollectionEmbedded `json:"_embedded"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyCollection struct for DaVinciFlowPolicyCollection

func NewDaVinciFlowPolicyCollection

NewDaVinciFlowPolicyCollection instantiates a new DaVinciFlowPolicyCollection 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 NewDaVinciFlowPolicyCollectionWithDefaults

func NewDaVinciFlowPolicyCollectionWithDefaults() *DaVinciFlowPolicyCollection

NewDaVinciFlowPolicyCollectionWithDefaults instantiates a new DaVinciFlowPolicyCollection 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 (*DaVinciFlowPolicyCollection) GetEmbedded

GetEmbedded returns the Embedded field value

func (*DaVinciFlowPolicyCollection) GetEmbeddedOk

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

GetLinks returns the Links field value

func (*DaVinciFlowPolicyCollection) GetLinksOk

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

func (DaVinciFlowPolicyCollection) LogValue

func (o DaVinciFlowPolicyCollection) LogValue() slog.Value

func (DaVinciFlowPolicyCollection) MarshalJSON

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

func (*DaVinciFlowPolicyCollection) SetEmbedded

SetEmbedded sets field value

SetLinks sets field value

func (DaVinciFlowPolicyCollection) ToMap

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

func (*DaVinciFlowPolicyCollection) UnmarshalJSON

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

type DaVinciFlowPolicyCollectionEmbedded

type DaVinciFlowPolicyCollectionEmbedded struct {
	FlowPolicies         []DaVinciFlowPolicyResponse `json:"flowPolicies"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyCollectionEmbedded struct for DaVinciFlowPolicyCollectionEmbedded

func NewDaVinciFlowPolicyCollectionEmbedded

func NewDaVinciFlowPolicyCollectionEmbedded(flowPolicies []DaVinciFlowPolicyResponse) *DaVinciFlowPolicyCollectionEmbedded

NewDaVinciFlowPolicyCollectionEmbedded instantiates a new DaVinciFlowPolicyCollectionEmbedded 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 NewDaVinciFlowPolicyCollectionEmbeddedWithDefaults

func NewDaVinciFlowPolicyCollectionEmbeddedWithDefaults() *DaVinciFlowPolicyCollectionEmbedded

NewDaVinciFlowPolicyCollectionEmbeddedWithDefaults instantiates a new DaVinciFlowPolicyCollectionEmbedded 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 (*DaVinciFlowPolicyCollectionEmbedded) GetFlowPolicies

GetFlowPolicies returns the FlowPolicies field value

func (*DaVinciFlowPolicyCollectionEmbedded) GetFlowPoliciesOk

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

func (DaVinciFlowPolicyCollectionEmbedded) LogValue

func (DaVinciFlowPolicyCollectionEmbedded) MarshalJSON

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

func (*DaVinciFlowPolicyCollectionEmbedded) SetFlowPolicies

SetFlowPolicies sets field value

func (DaVinciFlowPolicyCollectionEmbedded) ToMap

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

func (*DaVinciFlowPolicyCollectionEmbedded) UnmarshalJSON

func (o *DaVinciFlowPolicyCollectionEmbedded) UnmarshalJSON(data []byte) (err error)
type DaVinciFlowPolicyCollectionLinks struct {
	Self                 JSONHALLink `json:"self"`
	Environment          JSONHALLink `json:"environment"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyCollectionLinks struct for DaVinciFlowPolicyCollectionLinks

func NewDaVinciFlowPolicyCollectionLinks(self JSONHALLink, environment JSONHALLink) *DaVinciFlowPolicyCollectionLinks

NewDaVinciFlowPolicyCollectionLinks instantiates a new DaVinciFlowPolicyCollectionLinks 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 NewDaVinciFlowPolicyCollectionLinksWithDefaults

func NewDaVinciFlowPolicyCollectionLinksWithDefaults() *DaVinciFlowPolicyCollectionLinks

NewDaVinciFlowPolicyCollectionLinksWithDefaults instantiates a new DaVinciFlowPolicyCollectionLinks 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 (*DaVinciFlowPolicyCollectionLinks) GetEnvironment

func (o *DaVinciFlowPolicyCollectionLinks) GetEnvironment() JSONHALLink

GetEnvironment returns the Environment field value

func (*DaVinciFlowPolicyCollectionLinks) GetEnvironmentOk

func (o *DaVinciFlowPolicyCollectionLinks) GetEnvironmentOk() (*JSONHALLink, bool)

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

func (*DaVinciFlowPolicyCollectionLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciFlowPolicyCollectionLinks) GetSelfOk

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

func (DaVinciFlowPolicyCollectionLinks) LogValue

func (DaVinciFlowPolicyCollectionLinks) MarshalJSON

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

func (*DaVinciFlowPolicyCollectionLinks) SetEnvironment

func (o *DaVinciFlowPolicyCollectionLinks) SetEnvironment(v JSONHALLink)

SetEnvironment sets field value

func (*DaVinciFlowPolicyCollectionLinks) SetSelf

SetSelf sets field value

func (DaVinciFlowPolicyCollectionLinks) ToMap

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

func (*DaVinciFlowPolicyCollectionLinks) UnmarshalJSON

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

type DaVinciFlowPolicyCreateRequest

type DaVinciFlowPolicyCreateRequest struct {
	FlowDistributions    []DaVinciFlowPolicyCreateRequestFlowDistribution `json:"flowDistributions"`
	Name                 *string                                          `json:"name,omitempty" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	Status               *DaVinciFlowPolicyCreateRequestStatus            `json:"status,omitempty"`
	Trigger              *DaVinciFlowPolicyCreateRequestTrigger           `json:"trigger,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyCreateRequest struct for DaVinciFlowPolicyCreateRequest

func NewDaVinciFlowPolicyCreateRequest

func NewDaVinciFlowPolicyCreateRequest(flowDistributions []DaVinciFlowPolicyCreateRequestFlowDistribution) *DaVinciFlowPolicyCreateRequest

NewDaVinciFlowPolicyCreateRequest instantiates a new DaVinciFlowPolicyCreateRequest 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 NewDaVinciFlowPolicyCreateRequestWithDefaults

func NewDaVinciFlowPolicyCreateRequestWithDefaults() *DaVinciFlowPolicyCreateRequest

NewDaVinciFlowPolicyCreateRequestWithDefaults instantiates a new DaVinciFlowPolicyCreateRequest 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 (*DaVinciFlowPolicyCreateRequest) GetFlowDistributions

GetFlowDistributions returns the FlowDistributions field value

func (*DaVinciFlowPolicyCreateRequest) GetFlowDistributionsOk

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

func (*DaVinciFlowPolicyCreateRequest) GetName

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

func (*DaVinciFlowPolicyCreateRequest) GetNameOk

func (o *DaVinciFlowPolicyCreateRequest) 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 (*DaVinciFlowPolicyCreateRequest) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequest) GetStatusOk

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

func (*DaVinciFlowPolicyCreateRequest) GetTrigger

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequest) GetTriggerOk

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

func (*DaVinciFlowPolicyCreateRequest) HasName

func (o *DaVinciFlowPolicyCreateRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*DaVinciFlowPolicyCreateRequest) HasStatus

func (o *DaVinciFlowPolicyCreateRequest) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DaVinciFlowPolicyCreateRequest) HasTrigger

func (o *DaVinciFlowPolicyCreateRequest) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (DaVinciFlowPolicyCreateRequest) LogValue

func (DaVinciFlowPolicyCreateRequest) MarshalJSON

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

func (*DaVinciFlowPolicyCreateRequest) SetFlowDistributions

SetFlowDistributions sets field value

func (*DaVinciFlowPolicyCreateRequest) SetName

func (o *DaVinciFlowPolicyCreateRequest) SetName(v string)

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

func (*DaVinciFlowPolicyCreateRequest) SetStatus

SetStatus gets a reference to the given DaVinciFlowPolicyCreateRequestStatus and assigns it to the Status field.

func (*DaVinciFlowPolicyCreateRequest) SetTrigger

SetTrigger gets a reference to the given DaVinciFlowPolicyCreateRequestTrigger and assigns it to the Trigger field.

func (DaVinciFlowPolicyCreateRequest) ToMap

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

func (*DaVinciFlowPolicyCreateRequest) UnmarshalJSON

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

type DaVinciFlowPolicyCreateRequestFlowDistribution

type DaVinciFlowPolicyCreateRequestFlowDistribution struct {
	Id                   string                                                      `json:"id" validate:"regexp=^[a-zA-Z0-9-_]+$"`
	Version              float32                                                     `json:"version"`
	Ip                   []string                                                    `json:"ip,omitempty"`
	SuccessNodes         []DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode `json:"successNodes,omitempty"`
	Weight               *float32                                                    `json:"weight,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyCreateRequestFlowDistribution struct for DaVinciFlowPolicyCreateRequestFlowDistribution

func NewDaVinciFlowPolicyCreateRequestFlowDistribution

func NewDaVinciFlowPolicyCreateRequestFlowDistribution(id string, version float32) *DaVinciFlowPolicyCreateRequestFlowDistribution

NewDaVinciFlowPolicyCreateRequestFlowDistribution instantiates a new DaVinciFlowPolicyCreateRequestFlowDistribution 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 NewDaVinciFlowPolicyCreateRequestFlowDistributionWithDefaults

func NewDaVinciFlowPolicyCreateRequestFlowDistributionWithDefaults() *DaVinciFlowPolicyCreateRequestFlowDistribution

NewDaVinciFlowPolicyCreateRequestFlowDistributionWithDefaults instantiates a new DaVinciFlowPolicyCreateRequestFlowDistribution 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 (*DaVinciFlowPolicyCreateRequestFlowDistribution) GetId

GetId returns the Id field value

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) GetIdOk

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

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) GetIp

GetIp returns the Ip field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) GetIpOk

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

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) GetSuccessNodes

GetSuccessNodes returns the SuccessNodes field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) GetSuccessNodesOk

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

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) GetVersion

GetVersion returns the Version field value

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) GetVersionOk

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

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) GetWeight

GetWeight returns the Weight field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) GetWeightOk

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

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) HasIp

HasIp returns a boolean if a field has been set.

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) HasSuccessNodes

HasSuccessNodes returns a boolean if a field has been set.

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) HasWeight

HasWeight returns a boolean if a field has been set.

func (DaVinciFlowPolicyCreateRequestFlowDistribution) LogValue

func (DaVinciFlowPolicyCreateRequestFlowDistribution) MarshalJSON

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) SetId

SetId sets field value

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) SetIp

SetIp gets a reference to the given []string and assigns it to the Ip field.

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) SetSuccessNodes

SetSuccessNodes gets a reference to the given []DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode and assigns it to the SuccessNodes field.

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) SetVersion

SetVersion sets field value

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) SetWeight

SetWeight gets a reference to the given float32 and assigns it to the Weight field.

func (DaVinciFlowPolicyCreateRequestFlowDistribution) ToMap

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

func (*DaVinciFlowPolicyCreateRequestFlowDistribution) UnmarshalJSON

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

type DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode

type DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode struct {
	Id                   string `json:"id" validate:"regexp=^[a-zA-Z0-9]+$"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode struct for DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode

func NewDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode

func NewDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode(id string) *DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode

NewDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode instantiates a new DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode 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 NewDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNodeWithDefaults

func NewDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNodeWithDefaults() *DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode

NewDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNodeWithDefaults instantiates a new DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode 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 (*DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) GetId

GetId returns the Id field value

func (*DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) GetIdOk

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

func (DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) LogValue

func (DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) MarshalJSON

func (*DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) SetId

SetId sets field value

func (DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) ToMap

func (*DaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) UnmarshalJSON

type DaVinciFlowPolicyCreateRequestStatus

type DaVinciFlowPolicyCreateRequestStatus string

DaVinciFlowPolicyCreateRequestStatus the model 'DaVinciFlowPolicyCreateRequestStatus'

const (
	DAVINCIFLOWPOLICYCREATEREQUESTSTATUS_DISABLED DaVinciFlowPolicyCreateRequestStatus = "disabled"
	DAVINCIFLOWPOLICYCREATEREQUESTSTATUS_ENABLED  DaVinciFlowPolicyCreateRequestStatus = "enabled"
)

List of DaVinci_Flow_Policy_Create_Request_Status

func NewDaVinciFlowPolicyCreateRequestStatusFromValue

func NewDaVinciFlowPolicyCreateRequestStatusFromValue(v string) (*DaVinciFlowPolicyCreateRequestStatus, error)

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

func (DaVinciFlowPolicyCreateRequestStatus) IsValid

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

func (DaVinciFlowPolicyCreateRequestStatus) Ptr

Ptr returns reference to DaVinci_Flow_Policy_Create_Request_Status value

func (*DaVinciFlowPolicyCreateRequestStatus) UnmarshalJSON

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

type DaVinciFlowPolicyCreateRequestTrigger

type DaVinciFlowPolicyCreateRequestTrigger struct {
	Configuration        *DaVinciFlowPolicyCreateRequestTriggerConfiguration `json:"configuration,omitempty"`
	Type                 *DaVinciFlowPolicyCreateRequestTriggerType          `json:"type,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyCreateRequestTrigger struct for DaVinciFlowPolicyCreateRequestTrigger

func NewDaVinciFlowPolicyCreateRequestTrigger

func NewDaVinciFlowPolicyCreateRequestTrigger() *DaVinciFlowPolicyCreateRequestTrigger

NewDaVinciFlowPolicyCreateRequestTrigger instantiates a new DaVinciFlowPolicyCreateRequestTrigger 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 NewDaVinciFlowPolicyCreateRequestTriggerWithDefaults

func NewDaVinciFlowPolicyCreateRequestTriggerWithDefaults() *DaVinciFlowPolicyCreateRequestTrigger

NewDaVinciFlowPolicyCreateRequestTriggerWithDefaults instantiates a new DaVinciFlowPolicyCreateRequestTrigger 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 (*DaVinciFlowPolicyCreateRequestTrigger) GetConfiguration

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

func (*DaVinciFlowPolicyCreateRequestTrigger) GetConfigurationOk

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 (*DaVinciFlowPolicyCreateRequestTrigger) GetType

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

func (*DaVinciFlowPolicyCreateRequestTrigger) GetTypeOk

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 (*DaVinciFlowPolicyCreateRequestTrigger) HasConfiguration

func (o *DaVinciFlowPolicyCreateRequestTrigger) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*DaVinciFlowPolicyCreateRequestTrigger) HasType

HasType returns a boolean if a field has been set.

func (DaVinciFlowPolicyCreateRequestTrigger) LogValue

func (DaVinciFlowPolicyCreateRequestTrigger) MarshalJSON

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

func (*DaVinciFlowPolicyCreateRequestTrigger) SetConfiguration

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

func (*DaVinciFlowPolicyCreateRequestTrigger) SetType

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

func (DaVinciFlowPolicyCreateRequestTrigger) ToMap

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

func (*DaVinciFlowPolicyCreateRequestTrigger) UnmarshalJSON

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

type DaVinciFlowPolicyCreateRequestTriggerConfiguration

type DaVinciFlowPolicyCreateRequestTriggerConfiguration struct {
	Mfa                  *DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA      `json:"mfa,omitempty"`
	Pwd                  *DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword `json:"pwd,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyCreateRequestTriggerConfiguration struct for DaVinciFlowPolicyCreateRequestTriggerConfiguration

func NewDaVinciFlowPolicyCreateRequestTriggerConfiguration

func NewDaVinciFlowPolicyCreateRequestTriggerConfiguration() *DaVinciFlowPolicyCreateRequestTriggerConfiguration

NewDaVinciFlowPolicyCreateRequestTriggerConfiguration instantiates a new DaVinciFlowPolicyCreateRequestTriggerConfiguration 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 NewDaVinciFlowPolicyCreateRequestTriggerConfigurationWithDefaults

func NewDaVinciFlowPolicyCreateRequestTriggerConfigurationWithDefaults() *DaVinciFlowPolicyCreateRequestTriggerConfiguration

NewDaVinciFlowPolicyCreateRequestTriggerConfigurationWithDefaults instantiates a new DaVinciFlowPolicyCreateRequestTriggerConfiguration 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 (*DaVinciFlowPolicyCreateRequestTriggerConfiguration) GetMfa

GetMfa returns the Mfa field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestTriggerConfiguration) GetMfaOk

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

func (*DaVinciFlowPolicyCreateRequestTriggerConfiguration) GetPwd

GetPwd returns the Pwd field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestTriggerConfiguration) GetPwdOk

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

func (*DaVinciFlowPolicyCreateRequestTriggerConfiguration) HasMfa

HasMfa returns a boolean if a field has been set.

func (*DaVinciFlowPolicyCreateRequestTriggerConfiguration) HasPwd

HasPwd returns a boolean if a field has been set.

func (DaVinciFlowPolicyCreateRequestTriggerConfiguration) LogValue

func (DaVinciFlowPolicyCreateRequestTriggerConfiguration) MarshalJSON

func (*DaVinciFlowPolicyCreateRequestTriggerConfiguration) SetMfa

SetMfa gets a reference to the given DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA and assigns it to the Mfa field.

func (*DaVinciFlowPolicyCreateRequestTriggerConfiguration) SetPwd

SetPwd gets a reference to the given DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword and assigns it to the Pwd field.

func (DaVinciFlowPolicyCreateRequestTriggerConfiguration) ToMap

func (*DaVinciFlowPolicyCreateRequestTriggerConfiguration) UnmarshalJSON

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

type DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA

type DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA struct {
	Enabled              *bool    `json:"enabled,omitempty"`
	Time                 *float32 `json:"time,omitempty"`
	TimeFormat           *string  `json:"timeFormat,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA struct for DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA

func NewDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA

func NewDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA() *DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA

NewDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA instantiates a new DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA 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 NewDaVinciFlowPolicyCreateRequestTriggerConfigurationMFAWithDefaults

func NewDaVinciFlowPolicyCreateRequestTriggerConfigurationMFAWithDefaults() *DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA

NewDaVinciFlowPolicyCreateRequestTriggerConfigurationMFAWithDefaults instantiates a new DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA 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 (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) GetEnabled

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) GetEnabledOk

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

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) GetTime

GetTime returns the Time field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) GetTimeFormat

GetTimeFormat returns the TimeFormat field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) GetTimeFormatOk

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

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) GetTimeOk

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

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) HasEnabled

HasEnabled returns a boolean if a field has been set.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) HasTime

HasTime returns a boolean if a field has been set.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) HasTimeFormat

HasTimeFormat returns a boolean if a field has been set.

func (DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) LogValue

func (DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) MarshalJSON

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) SetEnabled

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) SetTime

SetTime gets a reference to the given float32 and assigns it to the Time field.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) SetTimeFormat

SetTimeFormat gets a reference to the given string and assigns it to the TimeFormat field.

func (DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) ToMap

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) UnmarshalJSON

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

type DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword

type DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword struct {
	Enabled              *bool    `json:"enabled,omitempty"`
	Time                 *float32 `json:"time,omitempty"`
	TimeFormat           *string  `json:"timeFormat,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword struct for DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword

func NewDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword

func NewDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword() *DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword

NewDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword instantiates a new DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword 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 NewDaVinciFlowPolicyCreateRequestTriggerConfigurationPasswordWithDefaults

func NewDaVinciFlowPolicyCreateRequestTriggerConfigurationPasswordWithDefaults() *DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword

NewDaVinciFlowPolicyCreateRequestTriggerConfigurationPasswordWithDefaults instantiates a new DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword 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 (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) GetEnabled

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) GetEnabledOk

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

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) GetTime

GetTime returns the Time field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) GetTimeFormat

GetTimeFormat returns the TimeFormat field value if set, zero value otherwise.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) GetTimeFormatOk

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

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) GetTimeOk

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

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) HasEnabled

HasEnabled returns a boolean if a field has been set.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) HasTime

HasTime returns a boolean if a field has been set.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) HasTimeFormat

HasTimeFormat returns a boolean if a field has been set.

func (DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) LogValue

func (DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) MarshalJSON

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) SetEnabled

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) SetTime

SetTime gets a reference to the given float32 and assigns it to the Time field.

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) SetTimeFormat

SetTimeFormat gets a reference to the given string and assigns it to the TimeFormat field.

func (DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) ToMap

func (*DaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) UnmarshalJSON

type DaVinciFlowPolicyCreateRequestTriggerType

type DaVinciFlowPolicyCreateRequestTriggerType string

DaVinciFlowPolicyCreateRequestTriggerType the model 'DaVinciFlowPolicyCreateRequestTriggerType'

const (
	DAVINCIFLOWPOLICYCREATEREQUESTTRIGGERTYPE_AUTHENTICATION DaVinciFlowPolicyCreateRequestTriggerType = "AUTHENTICATION"
)

List of DaVinci_Flow_Policy_Create_Request_Trigger_Type

func NewDaVinciFlowPolicyCreateRequestTriggerTypeFromValue

func NewDaVinciFlowPolicyCreateRequestTriggerTypeFromValue(v string) (*DaVinciFlowPolicyCreateRequestTriggerType, error)

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

func (DaVinciFlowPolicyCreateRequestTriggerType) IsValid

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

func (DaVinciFlowPolicyCreateRequestTriggerType) Ptr

Ptr returns reference to DaVinci_Flow_Policy_Create_Request_Trigger_Type value

func (*DaVinciFlowPolicyCreateRequestTriggerType) UnmarshalJSON

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

type DaVinciFlowPolicyEventsCollection

type DaVinciFlowPolicyEventsCollection struct {
	Links                DaVinciFlowPolicyEventsCollectionLinks    `json:"_links"`
	Embedded             DaVinciFlowPolicyEventsCollectionEmbedded `json:"_embedded"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyEventsCollection struct for DaVinciFlowPolicyEventsCollection

func NewDaVinciFlowPolicyEventsCollection

NewDaVinciFlowPolicyEventsCollection instantiates a new DaVinciFlowPolicyEventsCollection 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 NewDaVinciFlowPolicyEventsCollectionWithDefaults

func NewDaVinciFlowPolicyEventsCollectionWithDefaults() *DaVinciFlowPolicyEventsCollection

NewDaVinciFlowPolicyEventsCollectionWithDefaults instantiates a new DaVinciFlowPolicyEventsCollection 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 (*DaVinciFlowPolicyEventsCollection) GetEmbedded

GetEmbedded returns the Embedded field value

func (*DaVinciFlowPolicyEventsCollection) GetEmbeddedOk

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

GetLinks returns the Links field value

func (*DaVinciFlowPolicyEventsCollection) GetLinksOk

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

func (DaVinciFlowPolicyEventsCollection) LogValue

func (DaVinciFlowPolicyEventsCollection) MarshalJSON

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

func (*DaVinciFlowPolicyEventsCollection) SetEmbedded

SetEmbedded sets field value

SetLinks sets field value

func (DaVinciFlowPolicyEventsCollection) ToMap

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

func (*DaVinciFlowPolicyEventsCollection) UnmarshalJSON

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

type DaVinciFlowPolicyEventsCollectionEmbedded

type DaVinciFlowPolicyEventsCollectionEmbedded struct {
	Events               []DaVinciFlowPolicyEventsCollectionEmbeddedEvent `json:"events"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyEventsCollectionEmbedded struct for DaVinciFlowPolicyEventsCollectionEmbedded

func NewDaVinciFlowPolicyEventsCollectionEmbedded

func NewDaVinciFlowPolicyEventsCollectionEmbedded(events []DaVinciFlowPolicyEventsCollectionEmbeddedEvent) *DaVinciFlowPolicyEventsCollectionEmbedded

NewDaVinciFlowPolicyEventsCollectionEmbedded instantiates a new DaVinciFlowPolicyEventsCollectionEmbedded 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 NewDaVinciFlowPolicyEventsCollectionEmbeddedWithDefaults

func NewDaVinciFlowPolicyEventsCollectionEmbeddedWithDefaults() *DaVinciFlowPolicyEventsCollectionEmbedded

NewDaVinciFlowPolicyEventsCollectionEmbeddedWithDefaults instantiates a new DaVinciFlowPolicyEventsCollectionEmbedded 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 (*DaVinciFlowPolicyEventsCollectionEmbedded) GetEvents

GetEvents returns the Events field value

func (*DaVinciFlowPolicyEventsCollectionEmbedded) GetEventsOk

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

func (DaVinciFlowPolicyEventsCollectionEmbedded) LogValue

func (DaVinciFlowPolicyEventsCollectionEmbedded) MarshalJSON

func (*DaVinciFlowPolicyEventsCollectionEmbedded) SetEvents

SetEvents sets field value

func (DaVinciFlowPolicyEventsCollectionEmbedded) ToMap

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

func (*DaVinciFlowPolicyEventsCollectionEmbedded) UnmarshalJSON

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

type DaVinciFlowPolicyEventsCollectionEmbeddedEvent

type DaVinciFlowPolicyEventsCollectionEmbeddedEvent struct {
	Environment          DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment `json:"environment"`
	Flow                 DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow        `json:"flow"`
	Events               []DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent     `json:"events,omitempty"`
	SuccessCount         *float32                                                  `json:"successCount,omitempty"`
	TotalCount           *float32                                                  `json:"totalCount,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyEventsCollectionEmbeddedEvent struct for DaVinciFlowPolicyEventsCollectionEmbeddedEvent

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEvent

NewDaVinciFlowPolicyEventsCollectionEmbeddedEvent instantiates a new DaVinciFlowPolicyEventsCollectionEmbeddedEvent 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 NewDaVinciFlowPolicyEventsCollectionEmbeddedEventWithDefaults

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEventWithDefaults() *DaVinciFlowPolicyEventsCollectionEmbeddedEvent

NewDaVinciFlowPolicyEventsCollectionEmbeddedEventWithDefaults instantiates a new DaVinciFlowPolicyEventsCollectionEmbeddedEvent 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 (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetEnvironmentOk

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

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetEvents

GetEvents returns the Events field value if set, zero value otherwise.

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetEventsOk

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

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetFlow

GetFlow returns the Flow field value

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetFlowOk

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

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetSuccessCount

GetSuccessCount returns the SuccessCount field value if set, zero value otherwise.

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetSuccessCountOk

func (o *DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetSuccessCountOk() (*float32, bool)

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

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetTotalCount

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) GetTotalCountOk

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

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) HasEvents

HasEvents returns a boolean if a field has been set.

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) HasSuccessCount

HasSuccessCount returns a boolean if a field has been set.

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) HasTotalCount

HasTotalCount returns a boolean if a field has been set.

func (DaVinciFlowPolicyEventsCollectionEmbeddedEvent) LogValue

func (DaVinciFlowPolicyEventsCollectionEmbeddedEvent) MarshalJSON

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) SetEnvironment

SetEnvironment sets field value

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) SetEvents

SetEvents gets a reference to the given []DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent and assigns it to the Events field.

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) SetFlow

SetFlow sets field value

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) SetSuccessCount

SetSuccessCount gets a reference to the given float32 and assigns it to the SuccessCount field.

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) SetTotalCount

SetTotalCount gets a reference to the given float32 and assigns it to the TotalCount field.

func (DaVinciFlowPolicyEventsCollectionEmbeddedEvent) ToMap

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

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEvent) UnmarshalJSON

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

type DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment

type DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment struct {
	Id                   string `json:"id"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment struct for DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment(id string) *DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment

NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment instantiates a new DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment 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 NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironmentWithDefaults

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironmentWithDefaults() *DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment

NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironmentWithDefaults instantiates a new DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment 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 (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) GetId

GetId returns the Id field value

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) GetIdOk

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

func (DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) LogValue

func (DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) MarshalJSON

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) SetId

SetId sets field value

func (DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) ToMap

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) UnmarshalJSON

type DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent

type DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent struct {
	Id                   string `json:"id"`
	Timestamp            string `json:"timestamp"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent struct for DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent(id string, timestamp string) *DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent

NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent instantiates a new DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent 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 NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEventWithDefaults

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEventWithDefaults() *DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent

NewDaVinciFlowPolicyEventsCollectionEmbeddedEventEventWithDefaults instantiates a new DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent 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 (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) GetId

GetId returns the Id field value

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) GetIdOk

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

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) GetTimestamp

GetTimestamp returns the Timestamp field value

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) GetTimestampOk

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

func (DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) LogValue

func (DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) MarshalJSON

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) SetId

SetId sets field value

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) SetTimestamp

SetTimestamp sets field value

func (DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) ToMap

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) UnmarshalJSON

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

type DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow

type DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow struct {
	Id                   string   `json:"id"`
	Version              *float32 `json:"version,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow struct for DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow(id string) *DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow

NewDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow instantiates a new DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow 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 NewDaVinciFlowPolicyEventsCollectionEmbeddedEventFlowWithDefaults

func NewDaVinciFlowPolicyEventsCollectionEmbeddedEventFlowWithDefaults() *DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow

NewDaVinciFlowPolicyEventsCollectionEmbeddedEventFlowWithDefaults instantiates a new DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow 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 (*DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) GetId

GetId returns the Id field value

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) GetIdOk

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

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) GetVersion

GetVersion returns the Version field value if set, zero value otherwise.

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) GetVersionOk

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

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) HasVersion

HasVersion returns a boolean if a field has been set.

func (DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) LogValue

func (DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) MarshalJSON

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) SetId

SetId sets field value

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) SetVersion

SetVersion gets a reference to the given float32 and assigns it to the Version field.

func (DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) ToMap

func (*DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) UnmarshalJSON

func (o *DaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) UnmarshalJSON(data []byte) (err error)
type DaVinciFlowPolicyEventsCollectionLinks struct {
	Self                 JSONHALLink `json:"self"`
	Environment          JSONHALLink `json:"environment"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyEventsCollectionLinks struct for DaVinciFlowPolicyEventsCollectionLinks

func NewDaVinciFlowPolicyEventsCollectionLinks(self JSONHALLink, environment JSONHALLink) *DaVinciFlowPolicyEventsCollectionLinks

NewDaVinciFlowPolicyEventsCollectionLinks instantiates a new DaVinciFlowPolicyEventsCollectionLinks 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 NewDaVinciFlowPolicyEventsCollectionLinksWithDefaults

func NewDaVinciFlowPolicyEventsCollectionLinksWithDefaults() *DaVinciFlowPolicyEventsCollectionLinks

NewDaVinciFlowPolicyEventsCollectionLinksWithDefaults instantiates a new DaVinciFlowPolicyEventsCollectionLinks 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 (*DaVinciFlowPolicyEventsCollectionLinks) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciFlowPolicyEventsCollectionLinks) GetEnvironmentOk

func (o *DaVinciFlowPolicyEventsCollectionLinks) GetEnvironmentOk() (*JSONHALLink, bool)

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

func (*DaVinciFlowPolicyEventsCollectionLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciFlowPolicyEventsCollectionLinks) GetSelfOk

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

func (DaVinciFlowPolicyEventsCollectionLinks) LogValue

func (DaVinciFlowPolicyEventsCollectionLinks) MarshalJSON

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

func (*DaVinciFlowPolicyEventsCollectionLinks) SetEnvironment

SetEnvironment sets field value

func (*DaVinciFlowPolicyEventsCollectionLinks) SetSelf

SetSelf sets field value

func (DaVinciFlowPolicyEventsCollectionLinks) ToMap

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

func (*DaVinciFlowPolicyEventsCollectionLinks) UnmarshalJSON

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

type DaVinciFlowPolicyReplaceRequest

type DaVinciFlowPolicyReplaceRequest struct {
	Name                 string                                            `json:"name" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	FlowDistributions    []DaVinciFlowPolicyReplaceRequestFlowDistribution `json:"flowDistributions,omitempty"`
	Status               *DaVinciFlowPolicyReplaceRequestStatus            `json:"status,omitempty"`
	Trigger              *DaVinciFlowPolicyReplaceRequestTrigger           `json:"trigger,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyReplaceRequest struct for DaVinciFlowPolicyReplaceRequest

func NewDaVinciFlowPolicyReplaceRequest

func NewDaVinciFlowPolicyReplaceRequest(name string) *DaVinciFlowPolicyReplaceRequest

NewDaVinciFlowPolicyReplaceRequest instantiates a new DaVinciFlowPolicyReplaceRequest 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 NewDaVinciFlowPolicyReplaceRequestWithDefaults

func NewDaVinciFlowPolicyReplaceRequestWithDefaults() *DaVinciFlowPolicyReplaceRequest

NewDaVinciFlowPolicyReplaceRequestWithDefaults instantiates a new DaVinciFlowPolicyReplaceRequest 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 (*DaVinciFlowPolicyReplaceRequest) GetFlowDistributions

GetFlowDistributions returns the FlowDistributions field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequest) GetFlowDistributionsOk

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

func (*DaVinciFlowPolicyReplaceRequest) GetName

GetName returns the Name field value

func (*DaVinciFlowPolicyReplaceRequest) GetNameOk

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

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

func (*DaVinciFlowPolicyReplaceRequest) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequest) GetStatusOk

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

func (*DaVinciFlowPolicyReplaceRequest) GetTrigger

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequest) GetTriggerOk

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

func (*DaVinciFlowPolicyReplaceRequest) HasFlowDistributions

func (o *DaVinciFlowPolicyReplaceRequest) HasFlowDistributions() bool

HasFlowDistributions returns a boolean if a field has been set.

func (*DaVinciFlowPolicyReplaceRequest) HasStatus

func (o *DaVinciFlowPolicyReplaceRequest) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DaVinciFlowPolicyReplaceRequest) HasTrigger

func (o *DaVinciFlowPolicyReplaceRequest) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (DaVinciFlowPolicyReplaceRequest) LogValue

func (DaVinciFlowPolicyReplaceRequest) MarshalJSON

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

func (*DaVinciFlowPolicyReplaceRequest) SetFlowDistributions

SetFlowDistributions gets a reference to the given []DaVinciFlowPolicyReplaceRequestFlowDistribution and assigns it to the FlowDistributions field.

func (*DaVinciFlowPolicyReplaceRequest) SetName

SetName sets field value

func (*DaVinciFlowPolicyReplaceRequest) SetStatus

SetStatus gets a reference to the given DaVinciFlowPolicyReplaceRequestStatus and assigns it to the Status field.

func (*DaVinciFlowPolicyReplaceRequest) SetTrigger

SetTrigger gets a reference to the given DaVinciFlowPolicyReplaceRequestTrigger and assigns it to the Trigger field.

func (DaVinciFlowPolicyReplaceRequest) ToMap

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

func (*DaVinciFlowPolicyReplaceRequest) UnmarshalJSON

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

type DaVinciFlowPolicyReplaceRequestFlowDistribution

type DaVinciFlowPolicyReplaceRequestFlowDistribution struct {
	Id                   string                                                       `json:"id"`
	Version              float32                                                      `json:"version"`
	Ip                   []string                                                     `json:"ip,omitempty"`
	SuccessNodes         []DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode `json:"successNodes,omitempty"`
	Weight               *float32                                                     `json:"weight,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyReplaceRequestFlowDistribution struct for DaVinciFlowPolicyReplaceRequestFlowDistribution

func NewDaVinciFlowPolicyReplaceRequestFlowDistribution

func NewDaVinciFlowPolicyReplaceRequestFlowDistribution(id string, version float32) *DaVinciFlowPolicyReplaceRequestFlowDistribution

NewDaVinciFlowPolicyReplaceRequestFlowDistribution instantiates a new DaVinciFlowPolicyReplaceRequestFlowDistribution 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 NewDaVinciFlowPolicyReplaceRequestFlowDistributionWithDefaults

func NewDaVinciFlowPolicyReplaceRequestFlowDistributionWithDefaults() *DaVinciFlowPolicyReplaceRequestFlowDistribution

NewDaVinciFlowPolicyReplaceRequestFlowDistributionWithDefaults instantiates a new DaVinciFlowPolicyReplaceRequestFlowDistribution 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 (*DaVinciFlowPolicyReplaceRequestFlowDistribution) GetId

GetId returns the Id field value

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) GetIdOk

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

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) GetIp

GetIp returns the Ip field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) GetIpOk

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

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) GetSuccessNodes

GetSuccessNodes returns the SuccessNodes field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) GetSuccessNodesOk

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

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) GetVersion

GetVersion returns the Version field value

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) GetVersionOk

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

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) GetWeight

GetWeight returns the Weight field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) GetWeightOk

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

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) HasIp

HasIp returns a boolean if a field has been set.

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) HasSuccessNodes

HasSuccessNodes returns a boolean if a field has been set.

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) HasWeight

HasWeight returns a boolean if a field has been set.

func (DaVinciFlowPolicyReplaceRequestFlowDistribution) LogValue

func (DaVinciFlowPolicyReplaceRequestFlowDistribution) MarshalJSON

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) SetId

SetId sets field value

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) SetIp

SetIp gets a reference to the given []string and assigns it to the Ip field.

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) SetSuccessNodes

SetSuccessNodes gets a reference to the given []DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode and assigns it to the SuccessNodes field.

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) SetVersion

SetVersion sets field value

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) SetWeight

SetWeight gets a reference to the given float32 and assigns it to the Weight field.

func (DaVinciFlowPolicyReplaceRequestFlowDistribution) ToMap

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

func (*DaVinciFlowPolicyReplaceRequestFlowDistribution) UnmarshalJSON

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

type DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode

type DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode struct {
	Id                   string `json:"id" validate:"regexp=^[a-zA-Z0-9]+$"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode struct for DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode

func NewDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode

func NewDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode(id string) *DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode

NewDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode instantiates a new DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode 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 NewDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNodeWithDefaults

func NewDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNodeWithDefaults() *DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode

NewDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNodeWithDefaults instantiates a new DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode 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 (*DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) GetId

GetId returns the Id field value

func (*DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) GetIdOk

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

func (DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) LogValue

func (DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) MarshalJSON

func (*DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) SetId

SetId sets field value

func (DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) ToMap

func (*DaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) UnmarshalJSON

type DaVinciFlowPolicyReplaceRequestStatus

type DaVinciFlowPolicyReplaceRequestStatus string

DaVinciFlowPolicyReplaceRequestStatus the model 'DaVinciFlowPolicyReplaceRequestStatus'

const (
	DAVINCIFLOWPOLICYREPLACEREQUESTSTATUS_DISABLED DaVinciFlowPolicyReplaceRequestStatus = "disabled"
	DAVINCIFLOWPOLICYREPLACEREQUESTSTATUS_ENABLED  DaVinciFlowPolicyReplaceRequestStatus = "enabled"
)

List of DaVinci_Flow_Policy_Replace_Request_Status

func NewDaVinciFlowPolicyReplaceRequestStatusFromValue

func NewDaVinciFlowPolicyReplaceRequestStatusFromValue(v string) (*DaVinciFlowPolicyReplaceRequestStatus, error)

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

func (DaVinciFlowPolicyReplaceRequestStatus) IsValid

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

func (DaVinciFlowPolicyReplaceRequestStatus) Ptr

Ptr returns reference to DaVinci_Flow_Policy_Replace_Request_Status value

func (*DaVinciFlowPolicyReplaceRequestStatus) UnmarshalJSON

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

type DaVinciFlowPolicyReplaceRequestTrigger

type DaVinciFlowPolicyReplaceRequestTrigger struct {
	Configuration        *DaVinciFlowPolicyReplaceRequestTriggerConfiguration `json:"configuration,omitempty"`
	Type                 *DaVinciFlowPolicyReplaceRequestTriggerType          `json:"type,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyReplaceRequestTrigger struct for DaVinciFlowPolicyReplaceRequestTrigger

func NewDaVinciFlowPolicyReplaceRequestTrigger

func NewDaVinciFlowPolicyReplaceRequestTrigger() *DaVinciFlowPolicyReplaceRequestTrigger

NewDaVinciFlowPolicyReplaceRequestTrigger instantiates a new DaVinciFlowPolicyReplaceRequestTrigger 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 NewDaVinciFlowPolicyReplaceRequestTriggerWithDefaults

func NewDaVinciFlowPolicyReplaceRequestTriggerWithDefaults() *DaVinciFlowPolicyReplaceRequestTrigger

NewDaVinciFlowPolicyReplaceRequestTriggerWithDefaults instantiates a new DaVinciFlowPolicyReplaceRequestTrigger 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 (*DaVinciFlowPolicyReplaceRequestTrigger) GetConfiguration

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

func (*DaVinciFlowPolicyReplaceRequestTrigger) GetConfigurationOk

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 (*DaVinciFlowPolicyReplaceRequestTrigger) GetType

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

func (*DaVinciFlowPolicyReplaceRequestTrigger) GetTypeOk

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 (*DaVinciFlowPolicyReplaceRequestTrigger) HasConfiguration

func (o *DaVinciFlowPolicyReplaceRequestTrigger) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*DaVinciFlowPolicyReplaceRequestTrigger) HasType

HasType returns a boolean if a field has been set.

func (DaVinciFlowPolicyReplaceRequestTrigger) LogValue

func (DaVinciFlowPolicyReplaceRequestTrigger) MarshalJSON

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

func (*DaVinciFlowPolicyReplaceRequestTrigger) SetConfiguration

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

func (*DaVinciFlowPolicyReplaceRequestTrigger) SetType

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

func (DaVinciFlowPolicyReplaceRequestTrigger) ToMap

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

func (*DaVinciFlowPolicyReplaceRequestTrigger) UnmarshalJSON

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

type DaVinciFlowPolicyReplaceRequestTriggerConfiguration

type DaVinciFlowPolicyReplaceRequestTriggerConfiguration struct {
	Mfa                  *DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA      `json:"mfa,omitempty"`
	Pwd                  *DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword `json:"pwd,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyReplaceRequestTriggerConfiguration struct for DaVinciFlowPolicyReplaceRequestTriggerConfiguration

func NewDaVinciFlowPolicyReplaceRequestTriggerConfiguration

func NewDaVinciFlowPolicyReplaceRequestTriggerConfiguration() *DaVinciFlowPolicyReplaceRequestTriggerConfiguration

NewDaVinciFlowPolicyReplaceRequestTriggerConfiguration instantiates a new DaVinciFlowPolicyReplaceRequestTriggerConfiguration 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 NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationWithDefaults

func NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationWithDefaults() *DaVinciFlowPolicyReplaceRequestTriggerConfiguration

NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationWithDefaults instantiates a new DaVinciFlowPolicyReplaceRequestTriggerConfiguration 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 (*DaVinciFlowPolicyReplaceRequestTriggerConfiguration) GetMfa

GetMfa returns the Mfa field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfiguration) GetMfaOk

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

func (*DaVinciFlowPolicyReplaceRequestTriggerConfiguration) GetPwd

GetPwd returns the Pwd field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfiguration) GetPwdOk

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

func (*DaVinciFlowPolicyReplaceRequestTriggerConfiguration) HasMfa

HasMfa returns a boolean if a field has been set.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfiguration) HasPwd

HasPwd returns a boolean if a field has been set.

func (DaVinciFlowPolicyReplaceRequestTriggerConfiguration) LogValue

func (DaVinciFlowPolicyReplaceRequestTriggerConfiguration) MarshalJSON

func (*DaVinciFlowPolicyReplaceRequestTriggerConfiguration) SetMfa

SetMfa gets a reference to the given DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA and assigns it to the Mfa field.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfiguration) SetPwd

SetPwd gets a reference to the given DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword and assigns it to the Pwd field.

func (DaVinciFlowPolicyReplaceRequestTriggerConfiguration) ToMap

func (*DaVinciFlowPolicyReplaceRequestTriggerConfiguration) UnmarshalJSON

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

type DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA

type DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA struct {
	Enabled              *bool    `json:"enabled,omitempty"`
	Time                 *float32 `json:"time,omitempty"`
	TimeFormat           *string  `json:"timeFormat,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA struct for DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA

func NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA

func NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA() *DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA

NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA instantiates a new DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA 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 NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFAWithDefaults

func NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFAWithDefaults() *DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA

NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFAWithDefaults instantiates a new DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA 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 (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) GetEnabled

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) GetEnabledOk

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

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) GetTime

GetTime returns the Time field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) GetTimeFormat

GetTimeFormat returns the TimeFormat field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) GetTimeFormatOk

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

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) GetTimeOk

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

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) HasEnabled

HasEnabled returns a boolean if a field has been set.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) HasTime

HasTime returns a boolean if a field has been set.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) HasTimeFormat

HasTimeFormat returns a boolean if a field has been set.

func (DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) LogValue

func (DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) MarshalJSON

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) SetEnabled

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) SetTime

SetTime gets a reference to the given float32 and assigns it to the Time field.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) SetTimeFormat

SetTimeFormat gets a reference to the given string and assigns it to the TimeFormat field.

func (DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) ToMap

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) UnmarshalJSON

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

type DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword

type DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword struct {
	Enabled              *bool    `json:"enabled,omitempty"`
	Time                 *float32 `json:"time,omitempty"`
	TimeFormat           *string  `json:"timeFormat,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword struct for DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword

func NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword

func NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword() *DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword

NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword instantiates a new DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword 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 NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationPasswordWithDefaults

func NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationPasswordWithDefaults() *DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword

NewDaVinciFlowPolicyReplaceRequestTriggerConfigurationPasswordWithDefaults instantiates a new DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword 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 (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) GetEnabled

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) GetEnabledOk

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

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) GetTime

GetTime returns the Time field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) GetTimeFormat

GetTimeFormat returns the TimeFormat field value if set, zero value otherwise.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) GetTimeFormatOk

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

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) GetTimeOk

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

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) HasEnabled

HasEnabled returns a boolean if a field has been set.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) HasTime

HasTime returns a boolean if a field has been set.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) HasTimeFormat

HasTimeFormat returns a boolean if a field has been set.

func (DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) LogValue

func (DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) MarshalJSON

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) SetEnabled

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) SetTime

SetTime gets a reference to the given float32 and assigns it to the Time field.

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) SetTimeFormat

SetTimeFormat gets a reference to the given string and assigns it to the TimeFormat field.

func (DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) ToMap

func (*DaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) UnmarshalJSON

type DaVinciFlowPolicyReplaceRequestTriggerType

type DaVinciFlowPolicyReplaceRequestTriggerType string

DaVinciFlowPolicyReplaceRequestTriggerType the model 'DaVinciFlowPolicyReplaceRequestTriggerType'

const (
	DAVINCIFLOWPOLICYREPLACEREQUESTTRIGGERTYPE_AUTHENTICATION DaVinciFlowPolicyReplaceRequestTriggerType = "AUTHENTICATION"
)

List of DaVinci_Flow_Policy_Replace_Request_Trigger_Type

func NewDaVinciFlowPolicyReplaceRequestTriggerTypeFromValue

func NewDaVinciFlowPolicyReplaceRequestTriggerTypeFromValue(v string) (*DaVinciFlowPolicyReplaceRequestTriggerType, error)

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

func (DaVinciFlowPolicyReplaceRequestTriggerType) IsValid

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

func (DaVinciFlowPolicyReplaceRequestTriggerType) Ptr

Ptr returns reference to DaVinci_Flow_Policy_Replace_Request_Trigger_Type value

func (*DaVinciFlowPolicyReplaceRequestTriggerType) UnmarshalJSON

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

type DaVinciFlowPolicyResponse

type DaVinciFlowPolicyResponse struct {
	Links                DaVinciFlowPolicyResponseLinks              `json:"_links"`
	Environment          ResourceRelationshipReadOnly                `json:"environment"`
	FlowDistributions    []DaVinciFlowPolicyResponseFlowDistribution `json:"flowDistributions"`
	Id                   string                                      `json:"id"`
	Name                 string                                      `json:"name"`
	Status               DaVinciFlowPolicyResponseStatus             `json:"status"`
	CreatedAt            *time.Time                                  `json:"createdAt,omitempty"`
	Trigger              *DaVinciFlowPolicyResponseTrigger           `json:"trigger,omitempty"`
	UpdatedAt            *time.Time                                  `json:"updatedAt,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyResponse struct for DaVinciFlowPolicyResponse

func NewDaVinciFlowPolicyResponse

NewDaVinciFlowPolicyResponse instantiates a new DaVinciFlowPolicyResponse 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 NewDaVinciFlowPolicyResponseWithDefaults

func NewDaVinciFlowPolicyResponseWithDefaults() *DaVinciFlowPolicyResponse

NewDaVinciFlowPolicyResponseWithDefaults instantiates a new DaVinciFlowPolicyResponse 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 (*DaVinciFlowPolicyResponse) GetCreatedAt

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

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

func (*DaVinciFlowPolicyResponse) GetCreatedAtOk

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

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

func (*DaVinciFlowPolicyResponse) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciFlowPolicyResponse) GetEnvironmentOk

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

func (*DaVinciFlowPolicyResponse) GetFlowDistributions

GetFlowDistributions returns the FlowDistributions field value

func (*DaVinciFlowPolicyResponse) GetFlowDistributionsOk

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

func (*DaVinciFlowPolicyResponse) GetId

func (o *DaVinciFlowPolicyResponse) GetId() string

GetId returns the Id field value

func (*DaVinciFlowPolicyResponse) GetIdOk

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

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

GetLinks returns the Links field value

func (*DaVinciFlowPolicyResponse) GetLinksOk

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

func (*DaVinciFlowPolicyResponse) GetName

func (o *DaVinciFlowPolicyResponse) GetName() string

GetName returns the Name field value

func (*DaVinciFlowPolicyResponse) GetNameOk

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

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

func (*DaVinciFlowPolicyResponse) GetStatus

GetStatus returns the Status field value

func (*DaVinciFlowPolicyResponse) GetStatusOk

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

func (*DaVinciFlowPolicyResponse) GetTrigger

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*DaVinciFlowPolicyResponse) GetTriggerOk

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

func (*DaVinciFlowPolicyResponse) GetUpdatedAt

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

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

func (*DaVinciFlowPolicyResponse) GetUpdatedAtOk

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

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

func (*DaVinciFlowPolicyResponse) HasCreatedAt

func (o *DaVinciFlowPolicyResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*DaVinciFlowPolicyResponse) HasTrigger

func (o *DaVinciFlowPolicyResponse) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (*DaVinciFlowPolicyResponse) HasUpdatedAt

func (o *DaVinciFlowPolicyResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (DaVinciFlowPolicyResponse) LogValue

func (o DaVinciFlowPolicyResponse) LogValue() slog.Value

func (DaVinciFlowPolicyResponse) MarshalJSON

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

func (*DaVinciFlowPolicyResponse) SetCreatedAt

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

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

func (*DaVinciFlowPolicyResponse) SetEnvironment

SetEnvironment sets field value

func (*DaVinciFlowPolicyResponse) SetFlowDistributions

SetFlowDistributions sets field value

func (*DaVinciFlowPolicyResponse) SetId

func (o *DaVinciFlowPolicyResponse) SetId(v string)

SetId sets field value

SetLinks sets field value

func (*DaVinciFlowPolicyResponse) SetName

func (o *DaVinciFlowPolicyResponse) SetName(v string)

SetName sets field value

func (*DaVinciFlowPolicyResponse) SetStatus

SetStatus sets field value

func (*DaVinciFlowPolicyResponse) SetTrigger

SetTrigger gets a reference to the given DaVinciFlowPolicyResponseTrigger and assigns it to the Trigger field.

func (*DaVinciFlowPolicyResponse) SetUpdatedAt

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

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

func (DaVinciFlowPolicyResponse) ToMap

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

func (*DaVinciFlowPolicyResponse) UnmarshalJSON

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

type DaVinciFlowPolicyResponseFlowDistribution

type DaVinciFlowPolicyResponseFlowDistribution struct {
	Id                   string                                                 `json:"id"`
	Version              float32                                                `json:"version"`
	Ip                   []string                                               `json:"ip,omitempty"`
	SuccessNodes         []DaVinciFlowPolicyResponseFlowDistributionSuccessNode `json:"successNodes,omitempty"`
	Weight               *float32                                               `json:"weight,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyResponseFlowDistribution struct for DaVinciFlowPolicyResponseFlowDistribution

func NewDaVinciFlowPolicyResponseFlowDistribution

func NewDaVinciFlowPolicyResponseFlowDistribution(id string, version float32) *DaVinciFlowPolicyResponseFlowDistribution

NewDaVinciFlowPolicyResponseFlowDistribution instantiates a new DaVinciFlowPolicyResponseFlowDistribution 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 NewDaVinciFlowPolicyResponseFlowDistributionWithDefaults

func NewDaVinciFlowPolicyResponseFlowDistributionWithDefaults() *DaVinciFlowPolicyResponseFlowDistribution

NewDaVinciFlowPolicyResponseFlowDistributionWithDefaults instantiates a new DaVinciFlowPolicyResponseFlowDistribution 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 (*DaVinciFlowPolicyResponseFlowDistribution) GetId

GetId returns the Id field value

func (*DaVinciFlowPolicyResponseFlowDistribution) GetIdOk

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

func (*DaVinciFlowPolicyResponseFlowDistribution) GetIp

GetIp returns the Ip field value if set, zero value otherwise.

func (*DaVinciFlowPolicyResponseFlowDistribution) GetIpOk

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

func (*DaVinciFlowPolicyResponseFlowDistribution) GetSuccessNodes

GetSuccessNodes returns the SuccessNodes field value if set, zero value otherwise.

func (*DaVinciFlowPolicyResponseFlowDistribution) GetSuccessNodesOk

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

func (*DaVinciFlowPolicyResponseFlowDistribution) GetVersion

GetVersion returns the Version field value

func (*DaVinciFlowPolicyResponseFlowDistribution) GetVersionOk

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

func (*DaVinciFlowPolicyResponseFlowDistribution) GetWeight

GetWeight returns the Weight field value if set, zero value otherwise.

func (*DaVinciFlowPolicyResponseFlowDistribution) GetWeightOk

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

func (*DaVinciFlowPolicyResponseFlowDistribution) HasIp

HasIp returns a boolean if a field has been set.

func (*DaVinciFlowPolicyResponseFlowDistribution) HasSuccessNodes

func (o *DaVinciFlowPolicyResponseFlowDistribution) HasSuccessNodes() bool

HasSuccessNodes returns a boolean if a field has been set.

func (*DaVinciFlowPolicyResponseFlowDistribution) HasWeight

HasWeight returns a boolean if a field has been set.

func (DaVinciFlowPolicyResponseFlowDistribution) LogValue

func (DaVinciFlowPolicyResponseFlowDistribution) MarshalJSON

func (*DaVinciFlowPolicyResponseFlowDistribution) SetId

SetId sets field value

func (*DaVinciFlowPolicyResponseFlowDistribution) SetIp

SetIp gets a reference to the given []string and assigns it to the Ip field.

func (*DaVinciFlowPolicyResponseFlowDistribution) SetSuccessNodes

SetSuccessNodes gets a reference to the given []DaVinciFlowPolicyResponseFlowDistributionSuccessNode and assigns it to the SuccessNodes field.

func (*DaVinciFlowPolicyResponseFlowDistribution) SetVersion

SetVersion sets field value

func (*DaVinciFlowPolicyResponseFlowDistribution) SetWeight

SetWeight gets a reference to the given float32 and assigns it to the Weight field.

func (DaVinciFlowPolicyResponseFlowDistribution) ToMap

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

func (*DaVinciFlowPolicyResponseFlowDistribution) UnmarshalJSON

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

type DaVinciFlowPolicyResponseFlowDistributionSuccessNode

type DaVinciFlowPolicyResponseFlowDistributionSuccessNode struct {
	Id                   string `json:"id"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyResponseFlowDistributionSuccessNode struct for DaVinciFlowPolicyResponseFlowDistributionSuccessNode

func NewDaVinciFlowPolicyResponseFlowDistributionSuccessNode

func NewDaVinciFlowPolicyResponseFlowDistributionSuccessNode(id string) *DaVinciFlowPolicyResponseFlowDistributionSuccessNode

NewDaVinciFlowPolicyResponseFlowDistributionSuccessNode instantiates a new DaVinciFlowPolicyResponseFlowDistributionSuccessNode 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 NewDaVinciFlowPolicyResponseFlowDistributionSuccessNodeWithDefaults

func NewDaVinciFlowPolicyResponseFlowDistributionSuccessNodeWithDefaults() *DaVinciFlowPolicyResponseFlowDistributionSuccessNode

NewDaVinciFlowPolicyResponseFlowDistributionSuccessNodeWithDefaults instantiates a new DaVinciFlowPolicyResponseFlowDistributionSuccessNode 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 (*DaVinciFlowPolicyResponseFlowDistributionSuccessNode) GetId

GetId returns the Id field value

func (*DaVinciFlowPolicyResponseFlowDistributionSuccessNode) GetIdOk

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

func (DaVinciFlowPolicyResponseFlowDistributionSuccessNode) LogValue

func (DaVinciFlowPolicyResponseFlowDistributionSuccessNode) MarshalJSON

func (*DaVinciFlowPolicyResponseFlowDistributionSuccessNode) SetId

SetId sets field value

func (DaVinciFlowPolicyResponseFlowDistributionSuccessNode) ToMap

func (*DaVinciFlowPolicyResponseFlowDistributionSuccessNode) UnmarshalJSON

func (o *DaVinciFlowPolicyResponseFlowDistributionSuccessNode) UnmarshalJSON(data []byte) (err error)
type DaVinciFlowPolicyResponseLinks struct {
	Self                 JSONHALLink  `json:"self"`
	Environment          JSONHALLink  `json:"environment"`
	FlowIndex            *JSONHALLink `json:"flow.<index>,omitempty"`
	VersionFlowIdIndex   *JSONHALLink `json:"version.<flowId>.<index>,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyResponseLinks struct for DaVinciFlowPolicyResponseLinks

func NewDaVinciFlowPolicyResponseLinks(self JSONHALLink, environment JSONHALLink) *DaVinciFlowPolicyResponseLinks

NewDaVinciFlowPolicyResponseLinks instantiates a new DaVinciFlowPolicyResponseLinks 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 NewDaVinciFlowPolicyResponseLinksWithDefaults

func NewDaVinciFlowPolicyResponseLinksWithDefaults() *DaVinciFlowPolicyResponseLinks

NewDaVinciFlowPolicyResponseLinksWithDefaults instantiates a new DaVinciFlowPolicyResponseLinks 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 (*DaVinciFlowPolicyResponseLinks) GetEnvironment

func (o *DaVinciFlowPolicyResponseLinks) GetEnvironment() JSONHALLink

GetEnvironment returns the Environment field value

func (*DaVinciFlowPolicyResponseLinks) GetEnvironmentOk

func (o *DaVinciFlowPolicyResponseLinks) GetEnvironmentOk() (*JSONHALLink, bool)

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

func (*DaVinciFlowPolicyResponseLinks) GetFlowIndex

func (o *DaVinciFlowPolicyResponseLinks) GetFlowIndex() JSONHALLink

GetFlowIndex returns the FlowIndex field value if set, zero value otherwise.

func (*DaVinciFlowPolicyResponseLinks) GetFlowIndexOk

func (o *DaVinciFlowPolicyResponseLinks) GetFlowIndexOk() (*JSONHALLink, bool)

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

func (*DaVinciFlowPolicyResponseLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciFlowPolicyResponseLinks) GetSelfOk

func (o *DaVinciFlowPolicyResponseLinks) GetSelfOk() (*JSONHALLink, bool)

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

func (*DaVinciFlowPolicyResponseLinks) GetVersionFlowIdIndex

func (o *DaVinciFlowPolicyResponseLinks) GetVersionFlowIdIndex() JSONHALLink

GetVersionFlowIdIndex returns the VersionFlowIdIndex field value if set, zero value otherwise.

func (*DaVinciFlowPolicyResponseLinks) GetVersionFlowIdIndexOk

func (o *DaVinciFlowPolicyResponseLinks) GetVersionFlowIdIndexOk() (*JSONHALLink, bool)

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

func (*DaVinciFlowPolicyResponseLinks) HasFlowIndex

func (o *DaVinciFlowPolicyResponseLinks) HasFlowIndex() bool

HasFlowIndex returns a boolean if a field has been set.

func (*DaVinciFlowPolicyResponseLinks) HasVersionFlowIdIndex

func (o *DaVinciFlowPolicyResponseLinks) HasVersionFlowIdIndex() bool

HasVersionFlowIdIndex returns a boolean if a field has been set.

func (DaVinciFlowPolicyResponseLinks) LogValue

func (DaVinciFlowPolicyResponseLinks) MarshalJSON

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

func (*DaVinciFlowPolicyResponseLinks) SetEnvironment

func (o *DaVinciFlowPolicyResponseLinks) SetEnvironment(v JSONHALLink)

SetEnvironment sets field value

func (*DaVinciFlowPolicyResponseLinks) SetFlowIndex

func (o *DaVinciFlowPolicyResponseLinks) SetFlowIndex(v JSONHALLink)

SetFlowIndex gets a reference to the given JSONHALLink and assigns it to the FlowIndex field.

func (*DaVinciFlowPolicyResponseLinks) SetSelf

SetSelf sets field value

func (*DaVinciFlowPolicyResponseLinks) SetVersionFlowIdIndex

func (o *DaVinciFlowPolicyResponseLinks) SetVersionFlowIdIndex(v JSONHALLink)

SetVersionFlowIdIndex gets a reference to the given JSONHALLink and assigns it to the VersionFlowIdIndex field.

func (DaVinciFlowPolicyResponseLinks) ToMap

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

func (*DaVinciFlowPolicyResponseLinks) UnmarshalJSON

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

type DaVinciFlowPolicyResponseStatus

type DaVinciFlowPolicyResponseStatus string

DaVinciFlowPolicyResponseStatus the model 'DaVinciFlowPolicyResponseStatus'

const (
	DAVINCIFLOWPOLICYRESPONSESTATUS_DISABLED DaVinciFlowPolicyResponseStatus = "disabled"
	DAVINCIFLOWPOLICYRESPONSESTATUS_ENABLED  DaVinciFlowPolicyResponseStatus = "enabled"
)

List of DaVinci_Flow_Policy_Response_Status

func NewDaVinciFlowPolicyResponseStatusFromValue

func NewDaVinciFlowPolicyResponseStatusFromValue(v string) (*DaVinciFlowPolicyResponseStatus, error)

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

func (DaVinciFlowPolicyResponseStatus) IsValid

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

func (DaVinciFlowPolicyResponseStatus) Ptr

Ptr returns reference to DaVinci_Flow_Policy_Response_Status value

func (*DaVinciFlowPolicyResponseStatus) UnmarshalJSON

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

type DaVinciFlowPolicyResponseTrigger

type DaVinciFlowPolicyResponseTrigger struct {
	Configuration        *DaVinciFlowPolicyResponseTriggerConfiguration `json:"configuration,omitempty"`
	Type                 *string                                        `json:"type,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyResponseTrigger struct for DaVinciFlowPolicyResponseTrigger

func NewDaVinciFlowPolicyResponseTrigger

func NewDaVinciFlowPolicyResponseTrigger() *DaVinciFlowPolicyResponseTrigger

NewDaVinciFlowPolicyResponseTrigger instantiates a new DaVinciFlowPolicyResponseTrigger 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 NewDaVinciFlowPolicyResponseTriggerWithDefaults

func NewDaVinciFlowPolicyResponseTriggerWithDefaults() *DaVinciFlowPolicyResponseTrigger

NewDaVinciFlowPolicyResponseTriggerWithDefaults instantiates a new DaVinciFlowPolicyResponseTrigger 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 (*DaVinciFlowPolicyResponseTrigger) GetConfiguration

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

func (*DaVinciFlowPolicyResponseTrigger) GetConfigurationOk

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 (*DaVinciFlowPolicyResponseTrigger) GetType

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

func (*DaVinciFlowPolicyResponseTrigger) GetTypeOk

func (o *DaVinciFlowPolicyResponseTrigger) 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.

func (*DaVinciFlowPolicyResponseTrigger) HasConfiguration

func (o *DaVinciFlowPolicyResponseTrigger) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*DaVinciFlowPolicyResponseTrigger) HasType

HasType returns a boolean if a field has been set.

func (DaVinciFlowPolicyResponseTrigger) LogValue

func (DaVinciFlowPolicyResponseTrigger) MarshalJSON

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

func (*DaVinciFlowPolicyResponseTrigger) SetConfiguration

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

func (*DaVinciFlowPolicyResponseTrigger) SetType

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

func (DaVinciFlowPolicyResponseTrigger) ToMap

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

func (*DaVinciFlowPolicyResponseTrigger) UnmarshalJSON

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

type DaVinciFlowPolicyResponseTriggerConfiguration

type DaVinciFlowPolicyResponseTriggerConfiguration struct {
	Mfa                  DaVinciFlowPolicyResponseTriggerConfigurationMFA      `json:"mfa"`
	Pwd                  DaVinciFlowPolicyResponseTriggerConfigurationPassword `json:"pwd"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyResponseTriggerConfiguration struct for DaVinciFlowPolicyResponseTriggerConfiguration

func NewDaVinciFlowPolicyResponseTriggerConfiguration

NewDaVinciFlowPolicyResponseTriggerConfiguration instantiates a new DaVinciFlowPolicyResponseTriggerConfiguration 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 NewDaVinciFlowPolicyResponseTriggerConfigurationWithDefaults

func NewDaVinciFlowPolicyResponseTriggerConfigurationWithDefaults() *DaVinciFlowPolicyResponseTriggerConfiguration

NewDaVinciFlowPolicyResponseTriggerConfigurationWithDefaults instantiates a new DaVinciFlowPolicyResponseTriggerConfiguration 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 (*DaVinciFlowPolicyResponseTriggerConfiguration) GetMfa

GetMfa returns the Mfa field value

func (*DaVinciFlowPolicyResponseTriggerConfiguration) GetMfaOk

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

func (*DaVinciFlowPolicyResponseTriggerConfiguration) GetPwd

GetPwd returns the Pwd field value

func (*DaVinciFlowPolicyResponseTriggerConfiguration) GetPwdOk

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

func (DaVinciFlowPolicyResponseTriggerConfiguration) LogValue

func (DaVinciFlowPolicyResponseTriggerConfiguration) MarshalJSON

func (*DaVinciFlowPolicyResponseTriggerConfiguration) SetMfa

SetMfa sets field value

func (*DaVinciFlowPolicyResponseTriggerConfiguration) SetPwd

SetPwd sets field value

func (DaVinciFlowPolicyResponseTriggerConfiguration) ToMap

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

func (*DaVinciFlowPolicyResponseTriggerConfiguration) UnmarshalJSON

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

type DaVinciFlowPolicyResponseTriggerConfigurationMFA

type DaVinciFlowPolicyResponseTriggerConfigurationMFA struct {
	Enabled              bool    `json:"enabled"`
	Time                 float32 `json:"time"`
	TimeFormat           string  `json:"timeFormat"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyResponseTriggerConfigurationMFA struct for DaVinciFlowPolicyResponseTriggerConfigurationMFA

func NewDaVinciFlowPolicyResponseTriggerConfigurationMFA

func NewDaVinciFlowPolicyResponseTriggerConfigurationMFA(enabled bool, time float32, timeFormat string) *DaVinciFlowPolicyResponseTriggerConfigurationMFA

NewDaVinciFlowPolicyResponseTriggerConfigurationMFA instantiates a new DaVinciFlowPolicyResponseTriggerConfigurationMFA 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 NewDaVinciFlowPolicyResponseTriggerConfigurationMFAWithDefaults

func NewDaVinciFlowPolicyResponseTriggerConfigurationMFAWithDefaults() *DaVinciFlowPolicyResponseTriggerConfigurationMFA

NewDaVinciFlowPolicyResponseTriggerConfigurationMFAWithDefaults instantiates a new DaVinciFlowPolicyResponseTriggerConfigurationMFA 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 (*DaVinciFlowPolicyResponseTriggerConfigurationMFA) GetEnabled

GetEnabled returns the Enabled field value

func (*DaVinciFlowPolicyResponseTriggerConfigurationMFA) GetEnabledOk

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

func (*DaVinciFlowPolicyResponseTriggerConfigurationMFA) GetTime

GetTime returns the Time field value

func (*DaVinciFlowPolicyResponseTriggerConfigurationMFA) GetTimeFormat

GetTimeFormat returns the TimeFormat field value

func (*DaVinciFlowPolicyResponseTriggerConfigurationMFA) GetTimeFormatOk

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

func (*DaVinciFlowPolicyResponseTriggerConfigurationMFA) GetTimeOk

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

func (DaVinciFlowPolicyResponseTriggerConfigurationMFA) LogValue

func (DaVinciFlowPolicyResponseTriggerConfigurationMFA) MarshalJSON

func (*DaVinciFlowPolicyResponseTriggerConfigurationMFA) SetEnabled

SetEnabled sets field value

func (*DaVinciFlowPolicyResponseTriggerConfigurationMFA) SetTime

SetTime sets field value

func (*DaVinciFlowPolicyResponseTriggerConfigurationMFA) SetTimeFormat

SetTimeFormat sets field value

func (DaVinciFlowPolicyResponseTriggerConfigurationMFA) ToMap

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

func (*DaVinciFlowPolicyResponseTriggerConfigurationMFA) UnmarshalJSON

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

type DaVinciFlowPolicyResponseTriggerConfigurationPassword

type DaVinciFlowPolicyResponseTriggerConfigurationPassword struct {
	Enabled              bool    `json:"enabled"`
	Time                 float32 `json:"time"`
	TimeFormat           string  `json:"timeFormat"`
	AdditionalProperties map[string]interface{}
}

DaVinciFlowPolicyResponseTriggerConfigurationPassword struct for DaVinciFlowPolicyResponseTriggerConfigurationPassword

func NewDaVinciFlowPolicyResponseTriggerConfigurationPassword

func NewDaVinciFlowPolicyResponseTriggerConfigurationPassword(enabled bool, time float32, timeFormat string) *DaVinciFlowPolicyResponseTriggerConfigurationPassword

NewDaVinciFlowPolicyResponseTriggerConfigurationPassword instantiates a new DaVinciFlowPolicyResponseTriggerConfigurationPassword 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 NewDaVinciFlowPolicyResponseTriggerConfigurationPasswordWithDefaults

func NewDaVinciFlowPolicyResponseTriggerConfigurationPasswordWithDefaults() *DaVinciFlowPolicyResponseTriggerConfigurationPassword

NewDaVinciFlowPolicyResponseTriggerConfigurationPasswordWithDefaults instantiates a new DaVinciFlowPolicyResponseTriggerConfigurationPassword 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 (*DaVinciFlowPolicyResponseTriggerConfigurationPassword) GetEnabled

GetEnabled returns the Enabled field value

func (*DaVinciFlowPolicyResponseTriggerConfigurationPassword) GetEnabledOk

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

func (*DaVinciFlowPolicyResponseTriggerConfigurationPassword) GetTime

GetTime returns the Time field value

func (*DaVinciFlowPolicyResponseTriggerConfigurationPassword) GetTimeFormat

GetTimeFormat returns the TimeFormat field value

func (*DaVinciFlowPolicyResponseTriggerConfigurationPassword) GetTimeFormatOk

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

func (*DaVinciFlowPolicyResponseTriggerConfigurationPassword) GetTimeOk

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

func (DaVinciFlowPolicyResponseTriggerConfigurationPassword) LogValue

func (DaVinciFlowPolicyResponseTriggerConfigurationPassword) MarshalJSON

func (*DaVinciFlowPolicyResponseTriggerConfigurationPassword) SetEnabled

SetEnabled sets field value

func (*DaVinciFlowPolicyResponseTriggerConfigurationPassword) SetTime

SetTime sets field value

func (*DaVinciFlowPolicyResponseTriggerConfigurationPassword) SetTimeFormat

SetTimeFormat sets field value

func (DaVinciFlowPolicyResponseTriggerConfigurationPassword) ToMap

func (*DaVinciFlowPolicyResponseTriggerConfigurationPassword) UnmarshalJSON

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

type DaVinciVariableCollectionResponse

type DaVinciVariableCollectionResponse struct {
	Embedded             DaVinciVariableCollectionResponseEmbedded `json:"_embedded"`
	Links                DaVinciVariableCollectionResponseLinks    `json:"_links"`
	Size                 float32                                   `json:"size"`
	Count                float32                                   `json:"count"`
	AdditionalProperties map[string]interface{}
}

DaVinciVariableCollectionResponse struct for DaVinciVariableCollectionResponse

func NewDaVinciVariableCollectionResponse

NewDaVinciVariableCollectionResponse instantiates a new DaVinciVariableCollectionResponse 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 NewDaVinciVariableCollectionResponseWithDefaults

func NewDaVinciVariableCollectionResponseWithDefaults() *DaVinciVariableCollectionResponse

NewDaVinciVariableCollectionResponseWithDefaults instantiates a new DaVinciVariableCollectionResponse 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 (*DaVinciVariableCollectionResponse) GetCount

GetCount returns the Count field value

func (*DaVinciVariableCollectionResponse) GetCountOk

func (o *DaVinciVariableCollectionResponse) GetCountOk() (*float32, bool)

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

func (*DaVinciVariableCollectionResponse) GetEmbedded

GetEmbedded returns the Embedded field value

func (*DaVinciVariableCollectionResponse) GetEmbeddedOk

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

GetLinks returns the Links field value

func (*DaVinciVariableCollectionResponse) GetLinksOk

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

func (*DaVinciVariableCollectionResponse) GetSize

GetSize returns the Size field value

func (*DaVinciVariableCollectionResponse) GetSizeOk

func (o *DaVinciVariableCollectionResponse) GetSizeOk() (*float32, bool)

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

func (DaVinciVariableCollectionResponse) LogValue

func (DaVinciVariableCollectionResponse) MarshalJSON

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

func (*DaVinciVariableCollectionResponse) SetCount

SetCount sets field value

func (*DaVinciVariableCollectionResponse) SetEmbedded

SetEmbedded sets field value

SetLinks sets field value

func (*DaVinciVariableCollectionResponse) SetSize

SetSize sets field value

func (DaVinciVariableCollectionResponse) ToMap

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

func (*DaVinciVariableCollectionResponse) UnmarshalJSON

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

type DaVinciVariableCollectionResponseEmbedded

type DaVinciVariableCollectionResponseEmbedded struct {
	Variables            []DaVinciVariableResponse `json:"variables"`
	AdditionalProperties map[string]interface{}
}

DaVinciVariableCollectionResponseEmbedded struct for DaVinciVariableCollectionResponseEmbedded

func NewDaVinciVariableCollectionResponseEmbedded

func NewDaVinciVariableCollectionResponseEmbedded(variables []DaVinciVariableResponse) *DaVinciVariableCollectionResponseEmbedded

NewDaVinciVariableCollectionResponseEmbedded instantiates a new DaVinciVariableCollectionResponseEmbedded 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 NewDaVinciVariableCollectionResponseEmbeddedWithDefaults

func NewDaVinciVariableCollectionResponseEmbeddedWithDefaults() *DaVinciVariableCollectionResponseEmbedded

NewDaVinciVariableCollectionResponseEmbeddedWithDefaults instantiates a new DaVinciVariableCollectionResponseEmbedded 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 (*DaVinciVariableCollectionResponseEmbedded) GetVariables

GetVariables returns the Variables field value

func (*DaVinciVariableCollectionResponseEmbedded) GetVariablesOk

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

func (DaVinciVariableCollectionResponseEmbedded) LogValue

func (DaVinciVariableCollectionResponseEmbedded) MarshalJSON

func (*DaVinciVariableCollectionResponseEmbedded) SetVariables

SetVariables sets field value

func (DaVinciVariableCollectionResponseEmbedded) ToMap

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

func (*DaVinciVariableCollectionResponseEmbedded) UnmarshalJSON

func (o *DaVinciVariableCollectionResponseEmbedded) UnmarshalJSON(data []byte) (err error)
type DaVinciVariableCollectionResponseLinks struct {
	Environment          JSONHALLink  `json:"environment"`
	Self                 JSONHALLink  `json:"self"`
	Next                 *JSONHALLink `json:"next,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciVariableCollectionResponseLinks struct for DaVinciVariableCollectionResponseLinks

func NewDaVinciVariableCollectionResponseLinks(environment JSONHALLink, self JSONHALLink) *DaVinciVariableCollectionResponseLinks

NewDaVinciVariableCollectionResponseLinks instantiates a new DaVinciVariableCollectionResponseLinks 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 NewDaVinciVariableCollectionResponseLinksWithDefaults

func NewDaVinciVariableCollectionResponseLinksWithDefaults() *DaVinciVariableCollectionResponseLinks

NewDaVinciVariableCollectionResponseLinksWithDefaults instantiates a new DaVinciVariableCollectionResponseLinks 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 (*DaVinciVariableCollectionResponseLinks) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciVariableCollectionResponseLinks) GetEnvironmentOk

func (o *DaVinciVariableCollectionResponseLinks) GetEnvironmentOk() (*JSONHALLink, bool)

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

func (*DaVinciVariableCollectionResponseLinks) GetNext

GetNext returns the Next field value if set, zero value otherwise.

func (*DaVinciVariableCollectionResponseLinks) GetNextOk

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

func (*DaVinciVariableCollectionResponseLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciVariableCollectionResponseLinks) GetSelfOk

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

func (*DaVinciVariableCollectionResponseLinks) HasNext

HasNext returns a boolean if a field has been set.

func (DaVinciVariableCollectionResponseLinks) LogValue

func (DaVinciVariableCollectionResponseLinks) MarshalJSON

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

func (*DaVinciVariableCollectionResponseLinks) SetEnvironment

SetEnvironment sets field value

func (*DaVinciVariableCollectionResponseLinks) SetNext

SetNext gets a reference to the given JSONHALLink and assigns it to the Next field.

func (*DaVinciVariableCollectionResponseLinks) SetSelf

SetSelf sets field value

func (DaVinciVariableCollectionResponseLinks) ToMap

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

func (*DaVinciVariableCollectionResponseLinks) UnmarshalJSON

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

type DaVinciVariableCreateRequest

type DaVinciVariableCreateRequest struct {
	Name                 string                               `json:"name" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	Context              DaVinciVariableCreateRequestContext  `json:"context"`
	DataType             DaVinciVariableCreateRequestDataType `json:"dataType"`
	Mutable              bool                                 `json:"mutable"`
	DisplayName          *string                              `json:"displayName,omitempty" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	Flow                 *ResourceRelationshipDaVinci         `json:"flow,omitempty"`
	Max                  *int32                               `json:"max,omitempty"`
	Min                  *int32                               `json:"min,omitempty"`
	Value                *DaVinciVariableCreateRequestValue   `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciVariableCreateRequest struct for DaVinciVariableCreateRequest

func NewDaVinciVariableCreateRequest

func NewDaVinciVariableCreateRequest(name string, context DaVinciVariableCreateRequestContext, dataType DaVinciVariableCreateRequestDataType, mutable bool) *DaVinciVariableCreateRequest

NewDaVinciVariableCreateRequest instantiates a new DaVinciVariableCreateRequest 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 NewDaVinciVariableCreateRequestWithDefaults

func NewDaVinciVariableCreateRequestWithDefaults() *DaVinciVariableCreateRequest

NewDaVinciVariableCreateRequestWithDefaults instantiates a new DaVinciVariableCreateRequest 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 (*DaVinciVariableCreateRequest) GetContext

GetContext returns the Context field value

func (*DaVinciVariableCreateRequest) GetContextOk

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

func (*DaVinciVariableCreateRequest) GetDataType

GetDataType returns the DataType field value

func (*DaVinciVariableCreateRequest) GetDataTypeOk

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

func (*DaVinciVariableCreateRequest) GetDisplayName

func (o *DaVinciVariableCreateRequest) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*DaVinciVariableCreateRequest) GetDisplayNameOk

func (o *DaVinciVariableCreateRequest) GetDisplayNameOk() (*string, bool)

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

func (*DaVinciVariableCreateRequest) GetFlow

GetFlow returns the Flow field value if set, zero value otherwise.

func (*DaVinciVariableCreateRequest) GetFlowOk

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

func (*DaVinciVariableCreateRequest) GetMax

func (o *DaVinciVariableCreateRequest) GetMax() int32

GetMax returns the Max field value if set, zero value otherwise.

func (*DaVinciVariableCreateRequest) GetMaxOk

func (o *DaVinciVariableCreateRequest) GetMaxOk() (*int32, bool)

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

func (*DaVinciVariableCreateRequest) GetMin

func (o *DaVinciVariableCreateRequest) GetMin() int32

GetMin returns the Min field value if set, zero value otherwise.

func (*DaVinciVariableCreateRequest) GetMinOk

func (o *DaVinciVariableCreateRequest) GetMinOk() (*int32, bool)

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

func (*DaVinciVariableCreateRequest) GetMutable

func (o *DaVinciVariableCreateRequest) GetMutable() bool

GetMutable returns the Mutable field value

func (*DaVinciVariableCreateRequest) GetMutableOk

func (o *DaVinciVariableCreateRequest) GetMutableOk() (*bool, bool)

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

func (*DaVinciVariableCreateRequest) GetName

func (o *DaVinciVariableCreateRequest) GetName() string

GetName returns the Name field value

func (*DaVinciVariableCreateRequest) GetNameOk

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

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

func (*DaVinciVariableCreateRequest) GetValue

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

func (*DaVinciVariableCreateRequest) GetValueOk

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 (*DaVinciVariableCreateRequest) HasDisplayName

func (o *DaVinciVariableCreateRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*DaVinciVariableCreateRequest) HasFlow

func (o *DaVinciVariableCreateRequest) HasFlow() bool

HasFlow returns a boolean if a field has been set.

func (*DaVinciVariableCreateRequest) HasMax

func (o *DaVinciVariableCreateRequest) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*DaVinciVariableCreateRequest) HasMin

func (o *DaVinciVariableCreateRequest) HasMin() bool

HasMin returns a boolean if a field has been set.

func (*DaVinciVariableCreateRequest) HasValue

func (o *DaVinciVariableCreateRequest) HasValue() bool

HasValue returns a boolean if a field has been set.

func (DaVinciVariableCreateRequest) LogValue

func (DaVinciVariableCreateRequest) MarshalJSON

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

func (*DaVinciVariableCreateRequest) SetContext

SetContext sets field value

func (*DaVinciVariableCreateRequest) SetDataType

SetDataType sets field value

func (*DaVinciVariableCreateRequest) SetDisplayName

func (o *DaVinciVariableCreateRequest) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*DaVinciVariableCreateRequest) SetFlow

SetFlow gets a reference to the given ResourceRelationshipDaVinci and assigns it to the Flow field.

func (*DaVinciVariableCreateRequest) SetMax

func (o *DaVinciVariableCreateRequest) SetMax(v int32)

SetMax gets a reference to the given int32 and assigns it to the Max field.

func (*DaVinciVariableCreateRequest) SetMin

func (o *DaVinciVariableCreateRequest) SetMin(v int32)

SetMin gets a reference to the given int32 and assigns it to the Min field.

func (*DaVinciVariableCreateRequest) SetMutable

func (o *DaVinciVariableCreateRequest) SetMutable(v bool)

SetMutable sets field value

func (*DaVinciVariableCreateRequest) SetName

func (o *DaVinciVariableCreateRequest) SetName(v string)

SetName sets field value

func (*DaVinciVariableCreateRequest) SetValue

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

func (DaVinciVariableCreateRequest) ToMap

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

func (*DaVinciVariableCreateRequest) UnmarshalJSON

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

type DaVinciVariableCreateRequestContext

type DaVinciVariableCreateRequestContext string

DaVinciVariableCreateRequestContext the model 'DaVinciVariableCreateRequestContext'

const (
	DAVINCIVARIABLECREATEREQUESTCONTEXT_COMPANY       DaVinciVariableCreateRequestContext = "company"
	DAVINCIVARIABLECREATEREQUESTCONTEXT_FLOW          DaVinciVariableCreateRequestContext = "flow"
	DAVINCIVARIABLECREATEREQUESTCONTEXT_FLOW_INSTANCE DaVinciVariableCreateRequestContext = "flowInstance"
	DAVINCIVARIABLECREATEREQUESTCONTEXT_USER          DaVinciVariableCreateRequestContext = "user"
)

List of DaVinci_Variable_Create_Request_Context

func NewDaVinciVariableCreateRequestContextFromValue

func NewDaVinciVariableCreateRequestContextFromValue(v string) (*DaVinciVariableCreateRequestContext, error)

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

func (DaVinciVariableCreateRequestContext) IsValid

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

func (DaVinciVariableCreateRequestContext) Ptr

Ptr returns reference to DaVinci_Variable_Create_Request_Context value

func (*DaVinciVariableCreateRequestContext) UnmarshalJSON

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

type DaVinciVariableCreateRequestDataType

type DaVinciVariableCreateRequestDataType string

DaVinciVariableCreateRequestDataType the model 'DaVinciVariableCreateRequestDataType'

const (
	DAVINCIVARIABLECREATEREQUESTDATATYPE_BOOLEAN DaVinciVariableCreateRequestDataType = "boolean"
	DAVINCIVARIABLECREATEREQUESTDATATYPE_NUMBER  DaVinciVariableCreateRequestDataType = "number"
	DAVINCIVARIABLECREATEREQUESTDATATYPE_OBJECT  DaVinciVariableCreateRequestDataType = "object"
	DAVINCIVARIABLECREATEREQUESTDATATYPE_SECRET  DaVinciVariableCreateRequestDataType = "secret"
	DAVINCIVARIABLECREATEREQUESTDATATYPE_STRING  DaVinciVariableCreateRequestDataType = "string"
)

List of DaVinci_Variable_Create_Request_Data_Type

func NewDaVinciVariableCreateRequestDataTypeFromValue

func NewDaVinciVariableCreateRequestDataTypeFromValue(v string) (*DaVinciVariableCreateRequestDataType, error)

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

func (DaVinciVariableCreateRequestDataType) IsValid

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

func (DaVinciVariableCreateRequestDataType) Ptr

Ptr returns reference to DaVinci_Variable_Create_Request_Data_Type value

func (*DaVinciVariableCreateRequestDataType) UnmarshalJSON

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

type DaVinciVariableCreateRequestValue

type DaVinciVariableCreateRequestValue struct {
	Bool              *bool
	Float32           *float32
	MapmapOfStringAny *map[string]interface{}
	String            *string
}

DaVinciVariableCreateRequestValue - struct for DaVinciVariableCreateRequestValue

func BoolAsDaVinciVariableCreateRequestValue

func BoolAsDaVinciVariableCreateRequestValue(v *bool) DaVinciVariableCreateRequestValue

boolAsDaVinciVariableCreateRequestValue is a convenience function that returns bool wrapped in DaVinciVariableCreateRequestValue

func Float32AsDaVinciVariableCreateRequestValue

func Float32AsDaVinciVariableCreateRequestValue(v *float32) DaVinciVariableCreateRequestValue

float32AsDaVinciVariableCreateRequestValue is a convenience function that returns float32 wrapped in DaVinciVariableCreateRequestValue

func MapmapOfStringAnyAsDaVinciVariableCreateRequestValue

func MapmapOfStringAnyAsDaVinciVariableCreateRequestValue(v *map[string]interface{}) DaVinciVariableCreateRequestValue

map[string]interface{}AsDaVinciVariableCreateRequestValue is a convenience function that returns map[string]interface{} wrapped in DaVinciVariableCreateRequestValue

func StringAsDaVinciVariableCreateRequestValue

func StringAsDaVinciVariableCreateRequestValue(v *string) DaVinciVariableCreateRequestValue

stringAsDaVinciVariableCreateRequestValue is a convenience function that returns string wrapped in DaVinciVariableCreateRequestValue

func (*DaVinciVariableCreateRequestValue) GetActualInstance

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

Get the actual instance

func (DaVinciVariableCreateRequestValue) GetActualInstanceValue

func (obj DaVinciVariableCreateRequestValue) GetActualInstanceValue() interface{}

Get the actual instance value

func (DaVinciVariableCreateRequestValue) MarshalJSON

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

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

func (*DaVinciVariableCreateRequestValue) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type DaVinciVariableReplaceRequest

type DaVinciVariableReplaceRequest struct {
	Name                 string                                `json:"name" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	Context              DaVinciVariableReplaceRequestContext  `json:"context"`
	DataType             DaVinciVariableReplaceRequestDataType `json:"dataType"`
	Mutable              bool                                  `json:"mutable"`
	DisplayName          *string                               `json:"displayName,omitempty" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	Flow                 *ResourceRelationshipDaVinci          `json:"flow,omitempty"`
	Max                  *int32                                `json:"max,omitempty"`
	Min                  *int32                                `json:"min,omitempty"`
	Value                *DaVinciVariableReplaceRequestValue   `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciVariableReplaceRequest struct for DaVinciVariableReplaceRequest

func NewDaVinciVariableReplaceRequest

func NewDaVinciVariableReplaceRequest(name string, context DaVinciVariableReplaceRequestContext, dataType DaVinciVariableReplaceRequestDataType, mutable bool) *DaVinciVariableReplaceRequest

NewDaVinciVariableReplaceRequest instantiates a new DaVinciVariableReplaceRequest 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 NewDaVinciVariableReplaceRequestWithDefaults

func NewDaVinciVariableReplaceRequestWithDefaults() *DaVinciVariableReplaceRequest

NewDaVinciVariableReplaceRequestWithDefaults instantiates a new DaVinciVariableReplaceRequest 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 (*DaVinciVariableReplaceRequest) GetContext

GetContext returns the Context field value

func (*DaVinciVariableReplaceRequest) GetContextOk

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

func (*DaVinciVariableReplaceRequest) GetDataType

GetDataType returns the DataType field value

func (*DaVinciVariableReplaceRequest) GetDataTypeOk

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

func (*DaVinciVariableReplaceRequest) GetDisplayName

func (o *DaVinciVariableReplaceRequest) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*DaVinciVariableReplaceRequest) GetDisplayNameOk

func (o *DaVinciVariableReplaceRequest) GetDisplayNameOk() (*string, bool)

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

func (*DaVinciVariableReplaceRequest) GetFlow

GetFlow returns the Flow field value if set, zero value otherwise.

func (*DaVinciVariableReplaceRequest) GetFlowOk

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

func (*DaVinciVariableReplaceRequest) GetMax

GetMax returns the Max field value if set, zero value otherwise.

func (*DaVinciVariableReplaceRequest) GetMaxOk

func (o *DaVinciVariableReplaceRequest) GetMaxOk() (*int32, bool)

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

func (*DaVinciVariableReplaceRequest) GetMin

GetMin returns the Min field value if set, zero value otherwise.

func (*DaVinciVariableReplaceRequest) GetMinOk

func (o *DaVinciVariableReplaceRequest) GetMinOk() (*int32, bool)

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

func (*DaVinciVariableReplaceRequest) GetMutable

func (o *DaVinciVariableReplaceRequest) GetMutable() bool

GetMutable returns the Mutable field value

func (*DaVinciVariableReplaceRequest) GetMutableOk

func (o *DaVinciVariableReplaceRequest) GetMutableOk() (*bool, bool)

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

func (*DaVinciVariableReplaceRequest) GetName

GetName returns the Name field value

func (*DaVinciVariableReplaceRequest) GetNameOk

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

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

func (*DaVinciVariableReplaceRequest) GetValue

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

func (*DaVinciVariableReplaceRequest) GetValueOk

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 (*DaVinciVariableReplaceRequest) HasDisplayName

func (o *DaVinciVariableReplaceRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*DaVinciVariableReplaceRequest) HasFlow

func (o *DaVinciVariableReplaceRequest) HasFlow() bool

HasFlow returns a boolean if a field has been set.

func (*DaVinciVariableReplaceRequest) HasMax

func (o *DaVinciVariableReplaceRequest) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*DaVinciVariableReplaceRequest) HasMin

func (o *DaVinciVariableReplaceRequest) HasMin() bool

HasMin returns a boolean if a field has been set.

func (*DaVinciVariableReplaceRequest) HasValue

func (o *DaVinciVariableReplaceRequest) HasValue() bool

HasValue returns a boolean if a field has been set.

func (DaVinciVariableReplaceRequest) LogValue

func (DaVinciVariableReplaceRequest) MarshalJSON

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

func (*DaVinciVariableReplaceRequest) SetContext

SetContext sets field value

func (*DaVinciVariableReplaceRequest) SetDataType

SetDataType sets field value

func (*DaVinciVariableReplaceRequest) SetDisplayName

func (o *DaVinciVariableReplaceRequest) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*DaVinciVariableReplaceRequest) SetFlow

SetFlow gets a reference to the given ResourceRelationshipDaVinci and assigns it to the Flow field.

func (*DaVinciVariableReplaceRequest) SetMax

func (o *DaVinciVariableReplaceRequest) SetMax(v int32)

SetMax gets a reference to the given int32 and assigns it to the Max field.

func (*DaVinciVariableReplaceRequest) SetMin

func (o *DaVinciVariableReplaceRequest) SetMin(v int32)

SetMin gets a reference to the given int32 and assigns it to the Min field.

func (*DaVinciVariableReplaceRequest) SetMutable

func (o *DaVinciVariableReplaceRequest) SetMutable(v bool)

SetMutable sets field value

func (*DaVinciVariableReplaceRequest) SetName

func (o *DaVinciVariableReplaceRequest) SetName(v string)

SetName sets field value

func (*DaVinciVariableReplaceRequest) SetValue

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

func (DaVinciVariableReplaceRequest) ToMap

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

func (*DaVinciVariableReplaceRequest) UnmarshalJSON

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

type DaVinciVariableReplaceRequestContext

type DaVinciVariableReplaceRequestContext string

DaVinciVariableReplaceRequestContext the model 'DaVinciVariableReplaceRequestContext'

const (
	DAVINCIVARIABLEREPLACEREQUESTCONTEXT_COMPANY       DaVinciVariableReplaceRequestContext = "company"
	DAVINCIVARIABLEREPLACEREQUESTCONTEXT_FLOW          DaVinciVariableReplaceRequestContext = "flow"
	DAVINCIVARIABLEREPLACEREQUESTCONTEXT_FLOW_INSTANCE DaVinciVariableReplaceRequestContext = "flowInstance"
	DAVINCIVARIABLEREPLACEREQUESTCONTEXT_USER          DaVinciVariableReplaceRequestContext = "user"
)

List of DaVinci_Variable_Replace_Request_Context

func NewDaVinciVariableReplaceRequestContextFromValue

func NewDaVinciVariableReplaceRequestContextFromValue(v string) (*DaVinciVariableReplaceRequestContext, error)

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

func (DaVinciVariableReplaceRequestContext) IsValid

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

func (DaVinciVariableReplaceRequestContext) Ptr

Ptr returns reference to DaVinci_Variable_Replace_Request_Context value

func (*DaVinciVariableReplaceRequestContext) UnmarshalJSON

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

type DaVinciVariableReplaceRequestDataType

type DaVinciVariableReplaceRequestDataType string

DaVinciVariableReplaceRequestDataType the model 'DaVinciVariableReplaceRequestDataType'

const (
	DAVINCIVARIABLEREPLACEREQUESTDATATYPE_BOOLEAN DaVinciVariableReplaceRequestDataType = "boolean"
	DAVINCIVARIABLEREPLACEREQUESTDATATYPE_NUMBER  DaVinciVariableReplaceRequestDataType = "number"
	DAVINCIVARIABLEREPLACEREQUESTDATATYPE_OBJECT  DaVinciVariableReplaceRequestDataType = "object"
	DAVINCIVARIABLEREPLACEREQUESTDATATYPE_SECRET  DaVinciVariableReplaceRequestDataType = "secret"
	DAVINCIVARIABLEREPLACEREQUESTDATATYPE_STRING  DaVinciVariableReplaceRequestDataType = "string"
)

List of DaVinci_Variable_Replace_Request_Data_Type

func NewDaVinciVariableReplaceRequestDataTypeFromValue

func NewDaVinciVariableReplaceRequestDataTypeFromValue(v string) (*DaVinciVariableReplaceRequestDataType, error)

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

func (DaVinciVariableReplaceRequestDataType) IsValid

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

func (DaVinciVariableReplaceRequestDataType) Ptr

Ptr returns reference to DaVinci_Variable_Replace_Request_Data_Type value

func (*DaVinciVariableReplaceRequestDataType) UnmarshalJSON

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

type DaVinciVariableReplaceRequestValue

type DaVinciVariableReplaceRequestValue struct {
	Bool              *bool
	Float32           *float32
	MapmapOfStringAny *map[string]interface{}
	String            *string
}

DaVinciVariableReplaceRequestValue - struct for DaVinciVariableReplaceRequestValue

func BoolAsDaVinciVariableReplaceRequestValue

func BoolAsDaVinciVariableReplaceRequestValue(v *bool) DaVinciVariableReplaceRequestValue

boolAsDaVinciVariableReplaceRequestValue is a convenience function that returns bool wrapped in DaVinciVariableReplaceRequestValue

func Float32AsDaVinciVariableReplaceRequestValue

func Float32AsDaVinciVariableReplaceRequestValue(v *float32) DaVinciVariableReplaceRequestValue

float32AsDaVinciVariableReplaceRequestValue is a convenience function that returns float32 wrapped in DaVinciVariableReplaceRequestValue

func MapmapOfStringAnyAsDaVinciVariableReplaceRequestValue

func MapmapOfStringAnyAsDaVinciVariableReplaceRequestValue(v *map[string]interface{}) DaVinciVariableReplaceRequestValue

map[string]interface{}AsDaVinciVariableReplaceRequestValue is a convenience function that returns map[string]interface{} wrapped in DaVinciVariableReplaceRequestValue

func StringAsDaVinciVariableReplaceRequestValue

func StringAsDaVinciVariableReplaceRequestValue(v *string) DaVinciVariableReplaceRequestValue

stringAsDaVinciVariableReplaceRequestValue is a convenience function that returns string wrapped in DaVinciVariableReplaceRequestValue

func (*DaVinciVariableReplaceRequestValue) GetActualInstance

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

Get the actual instance

func (DaVinciVariableReplaceRequestValue) GetActualInstanceValue

func (obj DaVinciVariableReplaceRequestValue) GetActualInstanceValue() interface{}

Get the actual instance value

func (DaVinciVariableReplaceRequestValue) MarshalJSON

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

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

func (*DaVinciVariableReplaceRequestValue) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type DaVinciVariableResponse

type DaVinciVariableResponse struct {
	Links                DaVinciVariableResponseLinks         `json:"_links"`
	DataType             DaVinciVariableResponseDataType      `json:"dataType"`
	Environment          ResourceRelationshipReadOnly         `json:"environment"`
	Id                   uuid.UUID                            `json:"id"`
	Name                 string                               `json:"name"`
	Context              *string                              `json:"context,omitempty"`
	CreatedAt            *time.Time                           `json:"createdAt,omitempty"`
	DisplayName          *string                              `json:"displayName,omitempty"`
	Flow                 *ResourceRelationshipDaVinciReadOnly `json:"flow,omitempty"`
	Max                  *float32                             `json:"max,omitempty"`
	Min                  *float32                             `json:"min,omitempty"`
	Mutable              *bool                                `json:"mutable,omitempty"`
	UpdatedAt            *time.Time                           `json:"updatedAt,omitempty"`
	Value                *DaVinciVariableResponseValue        `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

DaVinciVariableResponse struct for DaVinciVariableResponse

func NewDaVinciVariableResponse

NewDaVinciVariableResponse instantiates a new DaVinciVariableResponse 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 NewDaVinciVariableResponseWithDefaults

func NewDaVinciVariableResponseWithDefaults() *DaVinciVariableResponse

NewDaVinciVariableResponseWithDefaults instantiates a new DaVinciVariableResponse 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 (*DaVinciVariableResponse) GetContext

func (o *DaVinciVariableResponse) GetContext() string

GetContext returns the Context field value if set, zero value otherwise.

func (*DaVinciVariableResponse) GetContextOk

func (o *DaVinciVariableResponse) GetContextOk() (*string, bool)

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

func (*DaVinciVariableResponse) GetCreatedAt

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

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

func (*DaVinciVariableResponse) GetCreatedAtOk

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

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

func (*DaVinciVariableResponse) GetDataType

GetDataType returns the DataType field value

func (*DaVinciVariableResponse) GetDataTypeOk

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

func (*DaVinciVariableResponse) GetDisplayName

func (o *DaVinciVariableResponse) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*DaVinciVariableResponse) GetDisplayNameOk

func (o *DaVinciVariableResponse) GetDisplayNameOk() (*string, bool)

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

func (*DaVinciVariableResponse) GetEnvironment

GetEnvironment returns the Environment field value

func (*DaVinciVariableResponse) GetEnvironmentOk

func (o *DaVinciVariableResponse) GetEnvironmentOk() (*ResourceRelationshipReadOnly, bool)

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

func (*DaVinciVariableResponse) GetFlow

GetFlow returns the Flow field value if set, zero value otherwise.

func (*DaVinciVariableResponse) GetFlowOk

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

func (*DaVinciVariableResponse) GetId

func (o *DaVinciVariableResponse) GetId() uuid.UUID

GetId returns the Id field value

func (*DaVinciVariableResponse) GetIdOk

func (o *DaVinciVariableResponse) GetIdOk() (*uuid.UUID, bool)

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

GetLinks returns the Links field value

func (*DaVinciVariableResponse) GetLinksOk

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

func (*DaVinciVariableResponse) GetMax

func (o *DaVinciVariableResponse) GetMax() float32

GetMax returns the Max field value if set, zero value otherwise.

func (*DaVinciVariableResponse) GetMaxOk

func (o *DaVinciVariableResponse) GetMaxOk() (*float32, bool)

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

func (*DaVinciVariableResponse) GetMin

func (o *DaVinciVariableResponse) GetMin() float32

GetMin returns the Min field value if set, zero value otherwise.

func (*DaVinciVariableResponse) GetMinOk

func (o *DaVinciVariableResponse) GetMinOk() (*float32, bool)

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

func (*DaVinciVariableResponse) GetMutable

func (o *DaVinciVariableResponse) GetMutable() bool

GetMutable returns the Mutable field value if set, zero value otherwise.

func (*DaVinciVariableResponse) GetMutableOk

func (o *DaVinciVariableResponse) GetMutableOk() (*bool, bool)

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

func (*DaVinciVariableResponse) GetName

func (o *DaVinciVariableResponse) GetName() string

GetName returns the Name field value

func (*DaVinciVariableResponse) GetNameOk

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

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

func (*DaVinciVariableResponse) GetUpdatedAt

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

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

func (*DaVinciVariableResponse) GetUpdatedAtOk

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

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

func (*DaVinciVariableResponse) GetValue

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

func (*DaVinciVariableResponse) GetValueOk

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 (*DaVinciVariableResponse) HasContext

func (o *DaVinciVariableResponse) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*DaVinciVariableResponse) HasCreatedAt

func (o *DaVinciVariableResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*DaVinciVariableResponse) HasDisplayName

func (o *DaVinciVariableResponse) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*DaVinciVariableResponse) HasFlow

func (o *DaVinciVariableResponse) HasFlow() bool

HasFlow returns a boolean if a field has been set.

func (*DaVinciVariableResponse) HasMax

func (o *DaVinciVariableResponse) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*DaVinciVariableResponse) HasMin

func (o *DaVinciVariableResponse) HasMin() bool

HasMin returns a boolean if a field has been set.

func (*DaVinciVariableResponse) HasMutable

func (o *DaVinciVariableResponse) HasMutable() bool

HasMutable returns a boolean if a field has been set.

func (*DaVinciVariableResponse) HasUpdatedAt

func (o *DaVinciVariableResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*DaVinciVariableResponse) HasValue

func (o *DaVinciVariableResponse) HasValue() bool

HasValue returns a boolean if a field has been set.

func (DaVinciVariableResponse) LogValue

func (o DaVinciVariableResponse) LogValue() slog.Value

func (DaVinciVariableResponse) MarshalJSON

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

func (*DaVinciVariableResponse) SetContext

func (o *DaVinciVariableResponse) SetContext(v string)

SetContext gets a reference to the given string and assigns it to the Context field.

func (*DaVinciVariableResponse) SetCreatedAt

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

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

func (*DaVinciVariableResponse) SetDataType

SetDataType sets field value

func (*DaVinciVariableResponse) SetDisplayName

func (o *DaVinciVariableResponse) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*DaVinciVariableResponse) SetEnvironment

SetEnvironment sets field value

func (*DaVinciVariableResponse) SetFlow

SetFlow gets a reference to the given ResourceRelationshipDaVinciReadOnly and assigns it to the Flow field.

func (*DaVinciVariableResponse) SetId

func (o *DaVinciVariableResponse) SetId(v uuid.UUID)

SetId sets field value

SetLinks sets field value

func (*DaVinciVariableResponse) SetMax

func (o *DaVinciVariableResponse) SetMax(v float32)

SetMax gets a reference to the given float32 and assigns it to the Max field.

func (*DaVinciVariableResponse) SetMin

func (o *DaVinciVariableResponse) SetMin(v float32)

SetMin gets a reference to the given float32 and assigns it to the Min field.

func (*DaVinciVariableResponse) SetMutable

func (o *DaVinciVariableResponse) SetMutable(v bool)

SetMutable gets a reference to the given bool and assigns it to the Mutable field.

func (*DaVinciVariableResponse) SetName

func (o *DaVinciVariableResponse) SetName(v string)

SetName sets field value

func (*DaVinciVariableResponse) SetUpdatedAt

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

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

func (*DaVinciVariableResponse) SetValue

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

func (DaVinciVariableResponse) ToMap

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

func (*DaVinciVariableResponse) UnmarshalJSON

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

type DaVinciVariableResponseDataType

type DaVinciVariableResponseDataType string

DaVinciVariableResponseDataType the model 'DaVinciVariableResponseDataType'

const (
	DAVINCIVARIABLERESPONSEDATATYPE_ARRAY             DaVinciVariableResponseDataType = "array"
	DAVINCIVARIABLERESPONSEDATATYPE_BOOLEAN           DaVinciVariableResponseDataType = "boolean"
	DAVINCIVARIABLERESPONSEDATATYPE_BUTTON            DaVinciVariableResponseDataType = "button"
	DAVINCIVARIABLERESPONSEDATATYPE_LIST              DaVinciVariableResponseDataType = "list"
	DAVINCIVARIABLERESPONSEDATATYPE_LIST_INT          DaVinciVariableResponseDataType = "listInt"
	DAVINCIVARIABLERESPONSEDATATYPE_MAPPING           DaVinciVariableResponseDataType = "mapping"
	DAVINCIVARIABLERESPONSEDATATYPE_NUMBER            DaVinciVariableResponseDataType = "number"
	DAVINCIVARIABLERESPONSEDATATYPE_OBJECT            DaVinciVariableResponseDataType = "object"
	DAVINCIVARIABLERESPONSEDATATYPE_PROPERTY_GROUP    DaVinciVariableResponseDataType = "propertyGroup"
	DAVINCIVARIABLERESPONSEDATATYPE_SCREEN_CONFIG     DaVinciVariableResponseDataType = "screenConfig"
	DAVINCIVARIABLERESPONSEDATATYPE_SECRET            DaVinciVariableResponseDataType = "secret"
	DAVINCIVARIABLERESPONSEDATATYPE_SK_CONNECTOR_LIST DaVinciVariableResponseDataType = "skConnectorList"
	DAVINCIVARIABLERESPONSEDATATYPE_SK_EVENT          DaVinciVariableResponseDataType = "skEvent"
	DAVINCIVARIABLERESPONSEDATATYPE_STRING            DaVinciVariableResponseDataType = "string"
	DAVINCIVARIABLERESPONSEDATATYPE_TIMESTAMP         DaVinciVariableResponseDataType = "timestamp"
)

List of DaVinci_Variable_Response_Data_Type

func NewDaVinciVariableResponseDataTypeFromValue

func NewDaVinciVariableResponseDataTypeFromValue(v string) (*DaVinciVariableResponseDataType, error)

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

func (DaVinciVariableResponseDataType) IsValid

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

func (DaVinciVariableResponseDataType) Ptr

Ptr returns reference to DaVinci_Variable_Response_Data_Type value

func (*DaVinciVariableResponseDataType) UnmarshalJSON

func (v *DaVinciVariableResponseDataType) UnmarshalJSON(src []byte) error
type DaVinciVariableResponseLinks struct {
	Environment          JSONHALLink `json:"environment"`
	Self                 JSONHALLink `json:"self"`
	AdditionalProperties map[string]interface{}
}

DaVinciVariableResponseLinks struct for DaVinciVariableResponseLinks

func NewDaVinciVariableResponseLinks(environment JSONHALLink, self JSONHALLink) *DaVinciVariableResponseLinks

NewDaVinciVariableResponseLinks instantiates a new DaVinciVariableResponseLinks 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 NewDaVinciVariableResponseLinksWithDefaults

func NewDaVinciVariableResponseLinksWithDefaults() *DaVinciVariableResponseLinks

NewDaVinciVariableResponseLinksWithDefaults instantiates a new DaVinciVariableResponseLinks 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 (*DaVinciVariableResponseLinks) GetEnvironment

func (o *DaVinciVariableResponseLinks) GetEnvironment() JSONHALLink

GetEnvironment returns the Environment field value

func (*DaVinciVariableResponseLinks) GetEnvironmentOk

func (o *DaVinciVariableResponseLinks) GetEnvironmentOk() (*JSONHALLink, bool)

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

func (*DaVinciVariableResponseLinks) GetSelf

GetSelf returns the Self field value

func (*DaVinciVariableResponseLinks) GetSelfOk

func (o *DaVinciVariableResponseLinks) GetSelfOk() (*JSONHALLink, bool)

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

func (DaVinciVariableResponseLinks) LogValue

func (DaVinciVariableResponseLinks) MarshalJSON

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

func (*DaVinciVariableResponseLinks) SetEnvironment

func (o *DaVinciVariableResponseLinks) SetEnvironment(v JSONHALLink)

SetEnvironment sets field value

func (*DaVinciVariableResponseLinks) SetSelf

SetSelf sets field value

func (DaVinciVariableResponseLinks) ToMap

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

func (*DaVinciVariableResponseLinks) UnmarshalJSON

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

type DaVinciVariableResponseValue

type DaVinciVariableResponseValue struct {
	Bool              *bool
	Float32           *float32
	MapmapOfStringAny *map[string]interface{}
	String            *string
}

DaVinciVariableResponseValue - struct for DaVinciVariableResponseValue

func BoolAsDaVinciVariableResponseValue

func BoolAsDaVinciVariableResponseValue(v *bool) DaVinciVariableResponseValue

boolAsDaVinciVariableResponseValue is a convenience function that returns bool wrapped in DaVinciVariableResponseValue

func Float32AsDaVinciVariableResponseValue

func Float32AsDaVinciVariableResponseValue(v *float32) DaVinciVariableResponseValue

float32AsDaVinciVariableResponseValue is a convenience function that returns float32 wrapped in DaVinciVariableResponseValue

func MapmapOfStringAnyAsDaVinciVariableResponseValue

func MapmapOfStringAnyAsDaVinciVariableResponseValue(v *map[string]interface{}) DaVinciVariableResponseValue

map[string]interface{}AsDaVinciVariableResponseValue is a convenience function that returns map[string]interface{} wrapped in DaVinciVariableResponseValue

func StringAsDaVinciVariableResponseValue

func StringAsDaVinciVariableResponseValue(v *string) DaVinciVariableResponseValue

stringAsDaVinciVariableResponseValue is a convenience function that returns string wrapped in DaVinciVariableResponseValue

func (*DaVinciVariableResponseValue) GetActualInstance

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

Get the actual instance

func (DaVinciVariableResponseValue) GetActualInstanceValue

func (obj DaVinciVariableResponseValue) GetActualInstanceValue() interface{}

Get the actual instance value

func (DaVinciVariableResponseValue) MarshalJSON

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

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

func (*DaVinciVariableResponseValue) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type DaVinciVariablesApiService

type DaVinciVariablesApiService service

DaVinciVariablesApiService DaVinciVariablesApi service

func (*DaVinciVariablesApiService) CreateVariable

func (a *DaVinciVariablesApiService) CreateVariable(ctx context.Context, environmentID uuid.UUID) ApiCreateVariableRequest

CreateVariable Method for CreateVariable

@permission davinci:create:constructs
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiCreateVariableRequest

func (*DaVinciVariablesApiService) CreateVariableExecute

Execute executes the request

@return DaVinciVariableResponse

func (*DaVinciVariablesApiService) DeleteVariableById

func (a *DaVinciVariablesApiService) DeleteVariableById(ctx context.Context, environmentID uuid.UUID, variableID uuid.UUID) ApiDeleteVariableByIdRequest

DeleteVariableById Method for DeleteVariableById

@permission davinci:delete:constructs
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param variableID
@return ApiDeleteVariableByIdRequest

func (*DaVinciVariablesApiService) DeleteVariableByIdExecute

func (a *DaVinciVariablesApiService) DeleteVariableByIdExecute(r ApiDeleteVariableByIdRequest) (*http.Response, error)

Execute executes the request

func (*DaVinciVariablesApiService) GetVariableById

func (a *DaVinciVariablesApiService) GetVariableById(ctx context.Context, environmentID uuid.UUID, variableID uuid.UUID) ApiGetVariableByIdRequest

GetVariableById Method for GetVariableById

@permission davinci:read:constructs
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param variableID
@return ApiGetVariableByIdRequest

func (*DaVinciVariablesApiService) GetVariableByIdExecute

Execute executes the request

@return DaVinciVariableResponse

func (*DaVinciVariablesApiService) GetVariables

func (a *DaVinciVariablesApiService) GetVariables(ctx context.Context, environmentID uuid.UUID) ApiGetVariablesRequest

GetVariables Method for GetVariables

@permission davinci:read:constructs
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiGetVariablesRequest

func (*DaVinciVariablesApiService) GetVariablesExecute

Execute executes the request

@return DaVinciVariableCollectionResponse

func (*DaVinciVariablesApiService) GetVariablesExecutePage

Execute executes the request (returning the initial page of the paged response only)

@return DaVinciVariableCollectionResponse

func (*DaVinciVariablesApiService) ReplaceVariableById

func (a *DaVinciVariablesApiService) ReplaceVariableById(ctx context.Context, environmentID uuid.UUID, variableID uuid.UUID) ApiReplaceVariableByIdRequest

ReplaceVariableById Method for ReplaceVariableById

@permission davinci:update:constructs
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@param variableID
@return ApiReplaceVariableByIdRequest

func (*DaVinciVariablesApiService) ReplaceVariableByIdExecute

Execute executes the request

@return DaVinciVariableResponse

type DirectoryTotalIdentitiesApiService

type DirectoryTotalIdentitiesApiService service

DirectoryTotalIdentitiesApiService DirectoryTotalIdentitiesApi service

func (*DirectoryTotalIdentitiesApiService) GetTotalIdentities

func (a *DirectoryTotalIdentitiesApiService) GetTotalIdentities(ctx context.Context, environmentID uuid.UUID) ApiGetTotalIdentitiesRequest

GetTotalIdentities Method for GetTotalIdentities

@permission orgmgt:read:environment
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiGetTotalIdentitiesRequest

func (*DirectoryTotalIdentitiesApiService) GetTotalIdentitiesExecute

Execute executes the request

@return DirectoryTotalIdentitiesCountCollectionResponse

type DirectoryTotalIdentitiesCountCollectionResponse

type DirectoryTotalIdentitiesCountCollectionResponse struct {
	Embedded             *DirectoryTotalIdentitiesCountCollectionResponseEmbedded `json:"_embedded,omitempty"`
	Links                *DirectoryTotalIdentitiesCountCollectionResponseLinks    `json:"_links,omitempty"`
	Count                *int32                                                   `json:"count,omitempty"`
	Size                 *int32                                                   `json:"size,omitempty"`
	AdditionalProperties map[string]interface{}
}

DirectoryTotalIdentitiesCountCollectionResponse struct for DirectoryTotalIdentitiesCountCollectionResponse

func NewDirectoryTotalIdentitiesCountCollectionResponse

func NewDirectoryTotalIdentitiesCountCollectionResponse() *DirectoryTotalIdentitiesCountCollectionResponse

NewDirectoryTotalIdentitiesCountCollectionResponse instantiates a new DirectoryTotalIdentitiesCountCollectionResponse 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 NewDirectoryTotalIdentitiesCountCollectionResponseWithDefaults

func NewDirectoryTotalIdentitiesCountCollectionResponseWithDefaults() *DirectoryTotalIdentitiesCountCollectionResponse

NewDirectoryTotalIdentitiesCountCollectionResponseWithDefaults instantiates a new DirectoryTotalIdentitiesCountCollectionResponse 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 (*DirectoryTotalIdentitiesCountCollectionResponse) GetCount

GetCount returns the Count field value if set, zero value otherwise.

func (*DirectoryTotalIdentitiesCountCollectionResponse) GetCountOk

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

func (*DirectoryTotalIdentitiesCountCollectionResponse) GetEmbedded

GetEmbedded returns the Embedded field value if set, zero value otherwise.

func (*DirectoryTotalIdentitiesCountCollectionResponse) GetEmbeddedOk

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

GetLinks returns the Links field value if set, zero value otherwise.

func (*DirectoryTotalIdentitiesCountCollectionResponse) GetLinksOk

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

func (*DirectoryTotalIdentitiesCountCollectionResponse) GetSize

GetSize returns the Size field value if set, zero value otherwise.

func (*DirectoryTotalIdentitiesCountCollectionResponse) GetSizeOk

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

func (*DirectoryTotalIdentitiesCountCollectionResponse) HasCount

HasCount returns a boolean if a field has been set.

func (*DirectoryTotalIdentitiesCountCollectionResponse) HasEmbedded

HasEmbedded returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (*DirectoryTotalIdentitiesCountCollectionResponse) HasSize

HasSize returns a boolean if a field has been set.

func (DirectoryTotalIdentitiesCountCollectionResponse) LogValue

func (DirectoryTotalIdentitiesCountCollectionResponse) MarshalJSON

func (*DirectoryTotalIdentitiesCountCollectionResponse) SetCount

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*DirectoryTotalIdentitiesCountCollectionResponse) SetEmbedded

SetEmbedded gets a reference to the given DirectoryTotalIdentitiesCountCollectionResponseEmbedded and assigns it to the Embedded field.

SetLinks gets a reference to the given DirectoryTotalIdentitiesCountCollectionResponseLinks and assigns it to the Links field.

func (*DirectoryTotalIdentitiesCountCollectionResponse) SetSize

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (DirectoryTotalIdentitiesCountCollectionResponse) ToMap

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

func (*DirectoryTotalIdentitiesCountCollectionResponse) UnmarshalJSON

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

type DirectoryTotalIdentitiesCountCollectionResponseEmbedded

type DirectoryTotalIdentitiesCountCollectionResponseEmbedded struct {
	TotalIdentities      []DirectoryTotalIdentitiesCountResponse `json:"totalIdentities,omitempty"`
	AdditionalProperties map[string]interface{}
}

DirectoryTotalIdentitiesCountCollectionResponseEmbedded struct for DirectoryTotalIdentitiesCountCollectionResponseEmbedded

func NewDirectoryTotalIdentitiesCountCollectionResponseEmbedded

func NewDirectoryTotalIdentitiesCountCollectionResponseEmbedded() *DirectoryTotalIdentitiesCountCollectionResponseEmbedded

NewDirectoryTotalIdentitiesCountCollectionResponseEmbedded instantiates a new DirectoryTotalIdentitiesCountCollectionResponseEmbedded 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 NewDirectoryTotalIdentitiesCountCollectionResponseEmbeddedWithDefaults

func NewDirectoryTotalIdentitiesCountCollectionResponseEmbeddedWithDefaults() *DirectoryTotalIdentitiesCountCollectionResponseEmbedded

NewDirectoryTotalIdentitiesCountCollectionResponseEmbeddedWithDefaults instantiates a new DirectoryTotalIdentitiesCountCollectionResponseEmbedded 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 (*DirectoryTotalIdentitiesCountCollectionResponseEmbedded) GetTotalIdentities

GetTotalIdentities returns the TotalIdentities field value if set, zero value otherwise.

func (*DirectoryTotalIdentitiesCountCollectionResponseEmbedded) GetTotalIdentitiesOk

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

func (*DirectoryTotalIdentitiesCountCollectionResponseEmbedded) HasTotalIdentities

HasTotalIdentities returns a boolean if a field has been set.

func (DirectoryTotalIdentitiesCountCollectionResponseEmbedded) LogValue

func (DirectoryTotalIdentitiesCountCollectionResponseEmbedded) MarshalJSON

func (*DirectoryTotalIdentitiesCountCollectionResponseEmbedded) SetTotalIdentities

SetTotalIdentities gets a reference to the given []DirectoryTotalIdentitiesCountResponse and assigns it to the TotalIdentities field.

func (DirectoryTotalIdentitiesCountCollectionResponseEmbedded) ToMap

func (*DirectoryTotalIdentitiesCountCollectionResponseEmbedded) UnmarshalJSON

type DirectoryTotalIdentitiesCountCollectionResponseLinks struct {
	Self                 *JSONHALLink `json:"self,omitempty"`
	AdditionalProperties map[string]interface{}
}

DirectoryTotalIdentitiesCountCollectionResponseLinks struct for DirectoryTotalIdentitiesCountCollectionResponseLinks

func NewDirectoryTotalIdentitiesCountCollectionResponseLinks() *DirectoryTotalIdentitiesCountCollectionResponseLinks

NewDirectoryTotalIdentitiesCountCollectionResponseLinks instantiates a new DirectoryTotalIdentitiesCountCollectionResponseLinks 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 NewDirectoryTotalIdentitiesCountCollectionResponseLinksWithDefaults

func NewDirectoryTotalIdentitiesCountCollectionResponseLinksWithDefaults() *DirectoryTotalIdentitiesCountCollectionResponseLinks

NewDirectoryTotalIdentitiesCountCollectionResponseLinksWithDefaults instantiates a new DirectoryTotalIdentitiesCountCollectionResponseLinks 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 (*DirectoryTotalIdentitiesCountCollectionResponseLinks) GetSelf

GetSelf returns the Self field value if set, zero value otherwise.

func (*DirectoryTotalIdentitiesCountCollectionResponseLinks) GetSelfOk

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

func (*DirectoryTotalIdentitiesCountCollectionResponseLinks) HasSelf

HasSelf returns a boolean if a field has been set.

func (DirectoryTotalIdentitiesCountCollectionResponseLinks) LogValue

func (DirectoryTotalIdentitiesCountCollectionResponseLinks) MarshalJSON

func (*DirectoryTotalIdentitiesCountCollectionResponseLinks) SetSelf

SetSelf gets a reference to the given JSONHALLink and assigns it to the Self field.

func (DirectoryTotalIdentitiesCountCollectionResponseLinks) ToMap

func (*DirectoryTotalIdentitiesCountCollectionResponseLinks) UnmarshalJSON

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

type DirectoryTotalIdentitiesCountResponse

type DirectoryTotalIdentitiesCountResponse struct {
	Date                 *time.Time `json:"date,omitempty"`
	TotalIdentities      *int32     `json:"totalIdentities,omitempty"`
	AdditionalProperties map[string]interface{}
}

DirectoryTotalIdentitiesCountResponse struct for DirectoryTotalIdentitiesCountResponse

func NewDirectoryTotalIdentitiesCountResponse

func NewDirectoryTotalIdentitiesCountResponse() *DirectoryTotalIdentitiesCountResponse

NewDirectoryTotalIdentitiesCountResponse instantiates a new DirectoryTotalIdentitiesCountResponse 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 NewDirectoryTotalIdentitiesCountResponseWithDefaults

func NewDirectoryTotalIdentitiesCountResponseWithDefaults() *DirectoryTotalIdentitiesCountResponse

NewDirectoryTotalIdentitiesCountResponseWithDefaults instantiates a new DirectoryTotalIdentitiesCountResponse 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 (*DirectoryTotalIdentitiesCountResponse) GetDate

GetDate returns the Date field value if set, zero value otherwise.

func (*DirectoryTotalIdentitiesCountResponse) GetDateOk

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

func (*DirectoryTotalIdentitiesCountResponse) GetTotalIdentities

func (o *DirectoryTotalIdentitiesCountResponse) GetTotalIdentities() int32

GetTotalIdentities returns the TotalIdentities field value if set, zero value otherwise.

func (*DirectoryTotalIdentitiesCountResponse) GetTotalIdentitiesOk

func (o *DirectoryTotalIdentitiesCountResponse) GetTotalIdentitiesOk() (*int32, bool)

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

func (*DirectoryTotalIdentitiesCountResponse) HasDate

HasDate returns a boolean if a field has been set.

func (*DirectoryTotalIdentitiesCountResponse) HasTotalIdentities

func (o *DirectoryTotalIdentitiesCountResponse) HasTotalIdentities() bool

HasTotalIdentities returns a boolean if a field has been set.

func (DirectoryTotalIdentitiesCountResponse) LogValue

func (DirectoryTotalIdentitiesCountResponse) MarshalJSON

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

func (*DirectoryTotalIdentitiesCountResponse) SetDate

SetDate gets a reference to the given time.Time and assigns it to the Date field.

func (*DirectoryTotalIdentitiesCountResponse) SetTotalIdentities

func (o *DirectoryTotalIdentitiesCountResponse) SetTotalIdentities(v int32)

SetTotalIdentities gets a reference to the given int32 and assigns it to the TotalIdentities field.

func (DirectoryTotalIdentitiesCountResponse) ToMap

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

func (*DirectoryTotalIdentitiesCountResponse) UnmarshalJSON

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

type EnvironmentAPILimit

type EnvironmentAPILimit struct {
	Limit                *int64 `json:"limit,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentAPILimit struct for EnvironmentAPILimit

func NewEnvironmentAPILimit

func NewEnvironmentAPILimit() *EnvironmentAPILimit

NewEnvironmentAPILimit instantiates a new EnvironmentAPILimit 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 NewEnvironmentAPILimitWithDefaults

func NewEnvironmentAPILimitWithDefaults() *EnvironmentAPILimit

NewEnvironmentAPILimitWithDefaults instantiates a new EnvironmentAPILimit 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 (*EnvironmentAPILimit) GetLimit

func (o *EnvironmentAPILimit) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*EnvironmentAPILimit) GetLimitOk

func (o *EnvironmentAPILimit) GetLimitOk() (*int64, bool)

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

func (*EnvironmentAPILimit) HasLimit

func (o *EnvironmentAPILimit) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (EnvironmentAPILimit) LogValue

func (o EnvironmentAPILimit) LogValue() slog.Value

func (EnvironmentAPILimit) MarshalJSON

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

func (*EnvironmentAPILimit) SetLimit

func (o *EnvironmentAPILimit) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (EnvironmentAPILimit) ToMap

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

func (*EnvironmentAPILimit) UnmarshalJSON

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

type EnvironmentBillOfMaterials

type EnvironmentBillOfMaterials struct {
	Products             []EnvironmentBillOfMaterialsProduct     `json:"products"`
	SolutionType         *EnvironmentBillOfMaterialsSolutionType `json:"solutionType,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentBillOfMaterials struct for EnvironmentBillOfMaterials

func NewEnvironmentBillOfMaterials

func NewEnvironmentBillOfMaterials(products []EnvironmentBillOfMaterialsProduct) *EnvironmentBillOfMaterials

NewEnvironmentBillOfMaterials instantiates a new EnvironmentBillOfMaterials 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 NewEnvironmentBillOfMaterialsWithDefaults

func NewEnvironmentBillOfMaterialsWithDefaults() *EnvironmentBillOfMaterials

NewEnvironmentBillOfMaterialsWithDefaults instantiates a new EnvironmentBillOfMaterials 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 (*EnvironmentBillOfMaterials) GetProducts

GetProducts returns the Products field value

func (*EnvironmentBillOfMaterials) GetProductsOk

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

func (*EnvironmentBillOfMaterials) GetSolutionType

GetSolutionType returns the SolutionType field value if set, zero value otherwise.

func (*EnvironmentBillOfMaterials) GetSolutionTypeOk

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

func (*EnvironmentBillOfMaterials) HasSolutionType

func (o *EnvironmentBillOfMaterials) HasSolutionType() bool

HasSolutionType returns a boolean if a field has been set.

func (EnvironmentBillOfMaterials) LogValue

func (o EnvironmentBillOfMaterials) LogValue() slog.Value

func (EnvironmentBillOfMaterials) MarshalJSON

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

func (*EnvironmentBillOfMaterials) SetProducts

SetProducts sets field value

func (*EnvironmentBillOfMaterials) SetSolutionType

SetSolutionType gets a reference to the given EnvironmentBillOfMaterialsSolutionType and assigns it to the SolutionType field.

func (EnvironmentBillOfMaterials) ToMap

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

func (*EnvironmentBillOfMaterials) UnmarshalJSON

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

type EnvironmentBillOfMaterialsProduct

type EnvironmentBillOfMaterialsProduct struct {
	Type                 EnvironmentBillOfMaterialsProductType       `json:"type"`
	Bookmarks            []EnvironmentBillOfMaterialsProductBookmark `json:"bookmarks,omitempty"`
	Console              *EnvironmentBillOfMaterialsProductConsole   `json:"console,omitempty"`
	Deployment           *ResourceRelationshipReadOnly               `json:"deployment,omitempty"`
	Description          *string                                     `json:"description,omitempty"`
	Id                   *uuid.UUID                                  `json:"id,omitempty"`
	SoftwareLicense      *ResourceRelationshipGeneric                `json:"softwareLicense,omitempty"`
	Tags                 []string                                    `json:"tags,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentBillOfMaterialsProduct struct for EnvironmentBillOfMaterialsProduct

func NewEnvironmentBillOfMaterialsProduct

func NewEnvironmentBillOfMaterialsProduct(type_ EnvironmentBillOfMaterialsProductType) *EnvironmentBillOfMaterialsProduct

NewEnvironmentBillOfMaterialsProduct instantiates a new EnvironmentBillOfMaterialsProduct 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 NewEnvironmentBillOfMaterialsProductWithDefaults

func NewEnvironmentBillOfMaterialsProductWithDefaults() *EnvironmentBillOfMaterialsProduct

NewEnvironmentBillOfMaterialsProductWithDefaults instantiates a new EnvironmentBillOfMaterialsProduct 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 (*EnvironmentBillOfMaterialsProduct) GetBookmarks

GetBookmarks returns the Bookmarks field value if set, zero value otherwise.

func (*EnvironmentBillOfMaterialsProduct) GetBookmarksOk

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

func (*EnvironmentBillOfMaterialsProduct) GetConsole

GetConsole returns the Console field value if set, zero value otherwise.

func (*EnvironmentBillOfMaterialsProduct) GetConsoleOk

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

func (*EnvironmentBillOfMaterialsProduct) GetDeployment

GetDeployment returns the Deployment field value if set, zero value otherwise.

func (*EnvironmentBillOfMaterialsProduct) GetDeploymentOk

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

func (*EnvironmentBillOfMaterialsProduct) GetDescription

func (o *EnvironmentBillOfMaterialsProduct) GetDescription() string

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

func (*EnvironmentBillOfMaterialsProduct) GetDescriptionOk

func (o *EnvironmentBillOfMaterialsProduct) 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 (*EnvironmentBillOfMaterialsProduct) GetId

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

func (*EnvironmentBillOfMaterialsProduct) GetIdOk

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 (*EnvironmentBillOfMaterialsProduct) GetSoftwareLicense

GetSoftwareLicense returns the SoftwareLicense field value if set, zero value otherwise.

func (*EnvironmentBillOfMaterialsProduct) GetSoftwareLicenseOk

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

func (*EnvironmentBillOfMaterialsProduct) GetTags

GetTags returns the Tags field value if set, zero value otherwise.

func (*EnvironmentBillOfMaterialsProduct) GetTagsOk

func (o *EnvironmentBillOfMaterialsProduct) GetTagsOk() ([]string, bool)

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

func (*EnvironmentBillOfMaterialsProduct) GetType

GetType returns the Type field value

func (*EnvironmentBillOfMaterialsProduct) GetTypeOk

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

func (*EnvironmentBillOfMaterialsProduct) HasBookmarks

func (o *EnvironmentBillOfMaterialsProduct) HasBookmarks() bool

HasBookmarks returns a boolean if a field has been set.

func (*EnvironmentBillOfMaterialsProduct) HasConsole

func (o *EnvironmentBillOfMaterialsProduct) HasConsole() bool

HasConsole returns a boolean if a field has been set.

func (*EnvironmentBillOfMaterialsProduct) HasDeployment

func (o *EnvironmentBillOfMaterialsProduct) HasDeployment() bool

HasDeployment returns a boolean if a field has been set.

func (*EnvironmentBillOfMaterialsProduct) HasDescription

func (o *EnvironmentBillOfMaterialsProduct) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EnvironmentBillOfMaterialsProduct) HasId

HasId returns a boolean if a field has been set.

func (*EnvironmentBillOfMaterialsProduct) HasSoftwareLicense

func (o *EnvironmentBillOfMaterialsProduct) HasSoftwareLicense() bool

HasSoftwareLicense returns a boolean if a field has been set.

func (*EnvironmentBillOfMaterialsProduct) HasTags

HasTags returns a boolean if a field has been set.

func (EnvironmentBillOfMaterialsProduct) LogValue

func (EnvironmentBillOfMaterialsProduct) MarshalJSON

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

func (*EnvironmentBillOfMaterialsProduct) SetBookmarks

SetBookmarks gets a reference to the given []EnvironmentBillOfMaterialsProductBookmark and assigns it to the Bookmarks field.

func (*EnvironmentBillOfMaterialsProduct) SetConsole

SetConsole gets a reference to the given EnvironmentBillOfMaterialsProductConsole and assigns it to the Console field.

func (*EnvironmentBillOfMaterialsProduct) SetDeployment

SetDeployment gets a reference to the given ResourceRelationshipReadOnly and assigns it to the Deployment field.

func (*EnvironmentBillOfMaterialsProduct) SetDescription

func (o *EnvironmentBillOfMaterialsProduct) SetDescription(v string)

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

func (*EnvironmentBillOfMaterialsProduct) SetId

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

func (*EnvironmentBillOfMaterialsProduct) SetSoftwareLicense

SetSoftwareLicense gets a reference to the given ResourceRelationshipGeneric and assigns it to the SoftwareLicense field.

func (*EnvironmentBillOfMaterialsProduct) SetTags

func (o *EnvironmentBillOfMaterialsProduct) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (*EnvironmentBillOfMaterialsProduct) SetType

SetType sets field value

func (EnvironmentBillOfMaterialsProduct) ToMap

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

func (*EnvironmentBillOfMaterialsProduct) UnmarshalJSON

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

type EnvironmentBillOfMaterialsProductBookmark

type EnvironmentBillOfMaterialsProductBookmark struct {
	Href                 string `json:"href"`
	Name                 string `json:"name"`
	AdditionalProperties map[string]interface{}
}

EnvironmentBillOfMaterialsProductBookmark struct for EnvironmentBillOfMaterialsProductBookmark

func NewEnvironmentBillOfMaterialsProductBookmark

func NewEnvironmentBillOfMaterialsProductBookmark(href string, name string) *EnvironmentBillOfMaterialsProductBookmark

NewEnvironmentBillOfMaterialsProductBookmark instantiates a new EnvironmentBillOfMaterialsProductBookmark 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 NewEnvironmentBillOfMaterialsProductBookmarkWithDefaults

func NewEnvironmentBillOfMaterialsProductBookmarkWithDefaults() *EnvironmentBillOfMaterialsProductBookmark

NewEnvironmentBillOfMaterialsProductBookmarkWithDefaults instantiates a new EnvironmentBillOfMaterialsProductBookmark 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 (*EnvironmentBillOfMaterialsProductBookmark) GetHref

GetHref returns the Href field value

func (*EnvironmentBillOfMaterialsProductBookmark) GetHrefOk

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

func (*EnvironmentBillOfMaterialsProductBookmark) GetName

GetName returns the Name field value

func (*EnvironmentBillOfMaterialsProductBookmark) GetNameOk

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

func (EnvironmentBillOfMaterialsProductBookmark) LogValue

func (EnvironmentBillOfMaterialsProductBookmark) MarshalJSON

func (*EnvironmentBillOfMaterialsProductBookmark) SetHref

SetHref sets field value

func (*EnvironmentBillOfMaterialsProductBookmark) SetName

SetName sets field value

func (EnvironmentBillOfMaterialsProductBookmark) ToMap

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

func (*EnvironmentBillOfMaterialsProductBookmark) UnmarshalJSON

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

type EnvironmentBillOfMaterialsProductConsole

type EnvironmentBillOfMaterialsProductConsole struct {
	Href                 string `json:"href"`
	AdditionalProperties map[string]interface{}
}

EnvironmentBillOfMaterialsProductConsole struct for EnvironmentBillOfMaterialsProductConsole

func NewEnvironmentBillOfMaterialsProductConsole

func NewEnvironmentBillOfMaterialsProductConsole(href string) *EnvironmentBillOfMaterialsProductConsole

NewEnvironmentBillOfMaterialsProductConsole instantiates a new EnvironmentBillOfMaterialsProductConsole 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 NewEnvironmentBillOfMaterialsProductConsoleWithDefaults

func NewEnvironmentBillOfMaterialsProductConsoleWithDefaults() *EnvironmentBillOfMaterialsProductConsole

NewEnvironmentBillOfMaterialsProductConsoleWithDefaults instantiates a new EnvironmentBillOfMaterialsProductConsole 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 (*EnvironmentBillOfMaterialsProductConsole) GetHref

GetHref returns the Href field value

func (*EnvironmentBillOfMaterialsProductConsole) GetHrefOk

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

func (EnvironmentBillOfMaterialsProductConsole) LogValue

func (EnvironmentBillOfMaterialsProductConsole) MarshalJSON

func (*EnvironmentBillOfMaterialsProductConsole) SetHref

SetHref sets field value

func (EnvironmentBillOfMaterialsProductConsole) ToMap

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

func (*EnvironmentBillOfMaterialsProductConsole) UnmarshalJSON

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

type EnvironmentBillOfMaterialsProductType

type EnvironmentBillOfMaterialsProductType string

EnvironmentBillOfMaterialsProductType the model 'EnvironmentBillOfMaterialsProductType'

const (
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_IDENTITY_CLOUD          EnvironmentBillOfMaterialsProductType = "IDENTITY_CLOUD"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ACCESS             EnvironmentBillOfMaterialsProductType = "PING_ACCESS"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_AUTHORIZE          EnvironmentBillOfMaterialsProductType = "PING_AUTHORIZE"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_CENTRAL            EnvironmentBillOfMaterialsProductType = "PING_CENTRAL"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_DATA_GOVERNANCE    EnvironmentBillOfMaterialsProductType = "PING_DATA_GOVERNANCE"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_DATA_SYNC          EnvironmentBillOfMaterialsProductType = "PING_DATA_SYNC"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_DIRECTORY          EnvironmentBillOfMaterialsProductType = "PING_DIRECTORY"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_FEDERATE           EnvironmentBillOfMaterialsProductType = "PING_FEDERATE"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ID                 EnvironmentBillOfMaterialsProductType = "PING_ID"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ID_SDK             EnvironmentBillOfMaterialsProductType = "PING_ID_SDK"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_INTELLIGENCE       EnvironmentBillOfMaterialsProductType = "PING_INTELLIGENCE"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_AUTHORIZE      EnvironmentBillOfMaterialsProductType = "PING_ONE_AUTHORIZE"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_BASE           EnvironmentBillOfMaterialsProductType = "PING_ONE_BASE"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_CREDENTIALS    EnvironmentBillOfMaterialsProductType = "PING_ONE_CREDENTIALS"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_DAVINCI        EnvironmentBillOfMaterialsProductType = "PING_ONE_DAVINCI"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_FOR_ENTERPRISE EnvironmentBillOfMaterialsProductType = "PING_ONE_FOR_ENTERPRISE"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_FOR_SAAS       EnvironmentBillOfMaterialsProductType = "PING_ONE_FOR_SAAS"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_FRAUD          EnvironmentBillOfMaterialsProductType = "PING_ONE_FRAUD"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_ID             EnvironmentBillOfMaterialsProductType = "PING_ONE_ID"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_LEGACY         EnvironmentBillOfMaterialsProductType = "PING_ONE_LEGACY"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_MFA            EnvironmentBillOfMaterialsProductType = "PING_ONE_MFA"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_ORCHESTRATE    EnvironmentBillOfMaterialsProductType = "PING_ONE_ORCHESTRATE"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_PROVISIONING   EnvironmentBillOfMaterialsProductType = "PING_ONE_PROVISIONING"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_RISK           EnvironmentBillOfMaterialsProductType = "PING_ONE_RISK"
	ENVIRONMENTBILLOFMATERIALSPRODUCTTYPE_PING_ONE_VERIFY         EnvironmentBillOfMaterialsProductType = "PING_ONE_VERIFY"
)

List of Environment_Bill_of_Materials_Product_Type

func NewEnvironmentBillOfMaterialsProductTypeFromValue

func NewEnvironmentBillOfMaterialsProductTypeFromValue(v string) (*EnvironmentBillOfMaterialsProductType, error)

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

func (EnvironmentBillOfMaterialsProductType) IsValid

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

func (EnvironmentBillOfMaterialsProductType) Ptr

Ptr returns reference to Environment_Bill_of_Materials_Product_Type value

func (*EnvironmentBillOfMaterialsProductType) UnmarshalJSON

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

type EnvironmentBillOfMaterialsReplaceRequest

type EnvironmentBillOfMaterialsReplaceRequest struct {
	Products             []EnvironmentBillOfMaterialsProduct `json:"products"`
	AdditionalProperties map[string]interface{}
}

EnvironmentBillOfMaterialsReplaceRequest struct for EnvironmentBillOfMaterialsReplaceRequest

func NewEnvironmentBillOfMaterialsReplaceRequest

func NewEnvironmentBillOfMaterialsReplaceRequest(products []EnvironmentBillOfMaterialsProduct) *EnvironmentBillOfMaterialsReplaceRequest

NewEnvironmentBillOfMaterialsReplaceRequest instantiates a new EnvironmentBillOfMaterialsReplaceRequest 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 NewEnvironmentBillOfMaterialsReplaceRequestWithDefaults

func NewEnvironmentBillOfMaterialsReplaceRequestWithDefaults() *EnvironmentBillOfMaterialsReplaceRequest

NewEnvironmentBillOfMaterialsReplaceRequestWithDefaults instantiates a new EnvironmentBillOfMaterialsReplaceRequest 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 (*EnvironmentBillOfMaterialsReplaceRequest) GetProducts

GetProducts returns the Products field value

func (*EnvironmentBillOfMaterialsReplaceRequest) GetProductsOk

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

func (EnvironmentBillOfMaterialsReplaceRequest) LogValue

func (EnvironmentBillOfMaterialsReplaceRequest) MarshalJSON

func (*EnvironmentBillOfMaterialsReplaceRequest) SetProducts

SetProducts sets field value

func (EnvironmentBillOfMaterialsReplaceRequest) ToMap

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

func (*EnvironmentBillOfMaterialsReplaceRequest) UnmarshalJSON

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

type EnvironmentBillOfMaterialsResponse

type EnvironmentBillOfMaterialsResponse struct {
	Embedded             map[string]map[string]interface{}   `json:"_embedded,omitempty"`
	Links                map[string]JSONHALLink              `json:"_links,omitempty"`
	CreatedAt            *time.Time                          `json:"createdAt,omitempty"`
	Products             []EnvironmentBillOfMaterialsProduct `json:"products,omitempty"`
	SolutionType         *string                             `json:"solutionType,omitempty"`
	UpdatedAt            *time.Time                          `json:"updatedAt,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentBillOfMaterialsResponse struct for EnvironmentBillOfMaterialsResponse

func NewEnvironmentBillOfMaterialsResponse

func NewEnvironmentBillOfMaterialsResponse() *EnvironmentBillOfMaterialsResponse

NewEnvironmentBillOfMaterialsResponse instantiates a new EnvironmentBillOfMaterialsResponse 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 NewEnvironmentBillOfMaterialsResponseWithDefaults

func NewEnvironmentBillOfMaterialsResponseWithDefaults() *EnvironmentBillOfMaterialsResponse

NewEnvironmentBillOfMaterialsResponseWithDefaults instantiates a new EnvironmentBillOfMaterialsResponse 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 (*EnvironmentBillOfMaterialsResponse) GetCreatedAt

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

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

func (*EnvironmentBillOfMaterialsResponse) GetCreatedAtOk

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

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

func (*EnvironmentBillOfMaterialsResponse) GetEmbedded

func (o *EnvironmentBillOfMaterialsResponse) GetEmbedded() map[string]map[string]interface{}

GetEmbedded returns the Embedded field value if set, zero value otherwise.

func (*EnvironmentBillOfMaterialsResponse) GetEmbeddedOk

func (o *EnvironmentBillOfMaterialsResponse) GetEmbeddedOk() (map[string]map[string]interface{}, bool)

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

GetLinks returns the Links field value if set, zero value otherwise.

func (*EnvironmentBillOfMaterialsResponse) GetLinksOk

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

func (*EnvironmentBillOfMaterialsResponse) GetProducts

GetProducts returns the Products field value if set, zero value otherwise.

func (*EnvironmentBillOfMaterialsResponse) GetProductsOk

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

func (*EnvironmentBillOfMaterialsResponse) GetSolutionType

func (o *EnvironmentBillOfMaterialsResponse) GetSolutionType() string

GetSolutionType returns the SolutionType field value if set, zero value otherwise.

func (*EnvironmentBillOfMaterialsResponse) GetSolutionTypeOk

func (o *EnvironmentBillOfMaterialsResponse) GetSolutionTypeOk() (*string, bool)

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

func (*EnvironmentBillOfMaterialsResponse) GetUpdatedAt

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

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

func (*EnvironmentBillOfMaterialsResponse) GetUpdatedAtOk

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

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

func (*EnvironmentBillOfMaterialsResponse) HasCreatedAt

func (o *EnvironmentBillOfMaterialsResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*EnvironmentBillOfMaterialsResponse) HasEmbedded

func (o *EnvironmentBillOfMaterialsResponse) HasEmbedded() bool

HasEmbedded returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (*EnvironmentBillOfMaterialsResponse) HasProducts

func (o *EnvironmentBillOfMaterialsResponse) HasProducts() bool

HasProducts returns a boolean if a field has been set.

func (*EnvironmentBillOfMaterialsResponse) HasSolutionType

func (o *EnvironmentBillOfMaterialsResponse) HasSolutionType() bool

HasSolutionType returns a boolean if a field has been set.

func (*EnvironmentBillOfMaterialsResponse) HasUpdatedAt

func (o *EnvironmentBillOfMaterialsResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (EnvironmentBillOfMaterialsResponse) LogValue

func (EnvironmentBillOfMaterialsResponse) MarshalJSON

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

func (*EnvironmentBillOfMaterialsResponse) SetCreatedAt

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

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

func (*EnvironmentBillOfMaterialsResponse) SetEmbedded

func (o *EnvironmentBillOfMaterialsResponse) SetEmbedded(v map[string]map[string]interface{})

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

SetLinks gets a reference to the given map[string]JSONHALLink and assigns it to the Links field.

func (*EnvironmentBillOfMaterialsResponse) SetProducts

SetProducts gets a reference to the given []EnvironmentBillOfMaterialsProduct and assigns it to the Products field.

func (*EnvironmentBillOfMaterialsResponse) SetSolutionType

func (o *EnvironmentBillOfMaterialsResponse) SetSolutionType(v string)

SetSolutionType gets a reference to the given string and assigns it to the SolutionType field.

func (*EnvironmentBillOfMaterialsResponse) SetUpdatedAt

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

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

func (EnvironmentBillOfMaterialsResponse) ToMap

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

func (*EnvironmentBillOfMaterialsResponse) UnmarshalJSON

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

type EnvironmentBillOfMaterialsSolutionType

type EnvironmentBillOfMaterialsSolutionType string

EnvironmentBillOfMaterialsSolutionType the model 'EnvironmentBillOfMaterialsSolutionType'

const (
	ENVIRONMENTBILLOFMATERIALSSOLUTIONTYPE_CIAM_TRIAL EnvironmentBillOfMaterialsSolutionType = "CIAM_TRIAL"
	ENVIRONMENTBILLOFMATERIALSSOLUTIONTYPE_CUSTOMER   EnvironmentBillOfMaterialsSolutionType = "CUSTOMER"
	ENVIRONMENTBILLOFMATERIALSSOLUTIONTYPE_WF_TRIAL   EnvironmentBillOfMaterialsSolutionType = "WF_TRIAL"
	ENVIRONMENTBILLOFMATERIALSSOLUTIONTYPE_WORKFORCE  EnvironmentBillOfMaterialsSolutionType = "WORKFORCE"
)

List of Environment_Bill_of_Materials_Solution_Type

func NewEnvironmentBillOfMaterialsSolutionTypeFromValue

func NewEnvironmentBillOfMaterialsSolutionTypeFromValue(v string) (*EnvironmentBillOfMaterialsSolutionType, error)

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

func (EnvironmentBillOfMaterialsSolutionType) IsValid

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

func (EnvironmentBillOfMaterialsSolutionType) Ptr

Ptr returns reference to Environment_Bill_of_Materials_Solution_Type value

func (*EnvironmentBillOfMaterialsSolutionType) UnmarshalJSON

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

type EnvironmentCapabilities

type EnvironmentCapabilities struct {
	Embedded                                    map[string]map[string]interface{} `json:"_embedded,omitempty"`
	Links                                       *EnvironmentCapabilitiesLinks     `json:"_links,omitempty"`
	CanAddResources                             *bool                             `json:"canAddResources,omitempty"`
	CanAssignCustomRolesEverywhere              *bool                             `json:"canAssignCustomRolesEverywhere,omitempty"`
	CanAssignUsersRoles                         *bool                             `json:"canAssignUsersRoles,omitempty"`
	CanContactSupport                           *bool                             `json:"canContactSupport,omitempty"`
	CanCreateConnections                        *bool                             `json:"canCreateConnections,omitempty"`
	CanCreateCustomDomain                       *bool                             `json:"canCreateCustomDomain,omitempty"`
	CanPromoteToProd                            *bool                             `json:"canPromoteToProd,omitempty"`
	CanSendMfaNotificationsOutsideWhitelist     *bool                             `json:"canSendMfaNotificationsOutsideWhitelist,omitempty"`
	CanSendPasswordManagementNotifications      *bool                             `json:"canSendPasswordManagementNotifications,omitempty"`
	CanSendVerificationFlowNotifications        *bool                             `json:"canSendVerificationFlowNotifications,omitempty"`
	CanUseAadhaar                               *bool                             `json:"canUseAadhaar,omitempty"`
	CanUseAamva                                 *bool                             `json:"canUseAamva,omitempty"`
	CanUseAccountOwnership                      *bool                             `json:"canUseAccountOwnership,omitempty"`
	CanUseAccountProtection                     *bool                             `json:"canUseAccountProtection,omitempty"`
	CanUseAccountTakeoverDetection              *bool                             `json:"canUseAccountTakeoverDetection,omitempty"`
	CanUseApiAccessManagement                   *bool                             `json:"canUseApiAccessManagement,omitempty"`
	CanUseApplicationPermissions                *bool                             `json:"canUseApplicationPermissions,omitempty"`
	CanUseBotMaliciousDeviceDetection           *bool                             `json:"canUseBotMaliciousDeviceDetection,omitempty"`
	CanUseCredentialSharingDetection            *bool                             `json:"canUseCredentialSharingDetection,omitempty"`
	CanUseCredentials                           *bool                             `json:"canUseCredentials,omitempty"`
	CanUseCredentialsPushNotifications          *bool                             `json:"canUseCredentialsPushNotifications,omitempty"`
	CanUseCustomSchema                          *bool                             `json:"canUseCustomSchema,omitempty"`
	CanUseDaVinciAdminPortal                    *bool                             `json:"canUseDaVinciAdminPortal,omitempty"`
	CanUseDataAnalyticsSupport                  *bool                             `json:"canUseDataAnalyticsSupport,omitempty"`
	CanUseDataBasedVerifications                *bool                             `json:"canUseDataBasedVerifications,omitempty"`
	CanUseDigitalVerifications                  *bool                             `json:"canUseDigitalVerifications,omitempty"`
	CanUseDocumentMatch                         *bool                             `json:"canUseDocumentMatch,omitempty"`
	CanUseDynamicAuthorization                  *bool                             `json:"canUseDynamicAuthorization,omitempty"`
	CanUseEditNotificationTemplate              *bool                             `json:"canUseEditNotificationTemplate,omitempty"`
	CanUseEmailOtp                              *bool                             `json:"canUseEmailOtp,omitempty"`
	CanUseFaceMatch                             *bool                             `json:"canUseFaceMatch,omitempty"`
	CanUseFraudDataEnrichment                   *bool                             `json:"canUseFraudDataEnrichment,omitempty"`
	CanUseIdentities                            *bool                             `json:"canUseIdentities,omitempty"`
	CanUseIdentityProviders                     *bool                             `json:"canUseIdentityProviders,omitempty"`
	CanUseInboundProvisioning                   *bool                             `json:"canUseInboundProvisioning,omitempty"`
	CanUseIntelligence                          *bool                             `json:"canUseIntelligence,omitempty"`
	CanUseIntelligenceAdvancedPredictors        *bool                             `json:"canUseIntelligenceAdvancedPredictors,omitempty"`
	CanUseIntelligenceAnonymousNetworkDetection *bool                             `json:"canUseIntelligenceAnonymousNetworkDetection,omitempty"`
	CanUseIntelligenceDataConsent               *bool                             `json:"canUseIntelligenceDataConsent,omitempty"`
	CanUseIntelligenceEditPolicyScores          *bool                             `json:"canUseIntelligenceEditPolicyScores,omitempty"`
	CanUseIntelligenceGeoVelocity               *bool                             `json:"canUseIntelligenceGeoVelocity,omitempty"`
	CanUseIntelligenceLastTransactionOlderThan  *bool                             `json:"canUseIntelligenceLastTransactionOlderThan,omitempty"`
	CanUseIntelligenceLimitedCompositePredictor *bool                             `json:"canUseIntelligenceLimitedCompositePredictor,omitempty"`
	CanUseIntelligenceNewDevicePredictor        *bool                             `json:"canUseIntelligenceNewDevicePredictor,omitempty"`
	CanUseIntelligenceProtect                   *bool                             `json:"canUseIntelligenceProtect,omitempty"`
	CanUseIntelligenceReputation                *bool                             `json:"canUseIntelligenceReputation,omitempty"`
	CanUseIntelligenceRisk                      *bool                             `json:"canUseIntelligenceRisk,omitempty"`
	CanUseIntelligenceTrustDevicePredictor      *bool                             `json:"canUseIntelligenceTrustDevicePredictor,omitempty"`
	CanUseKerberosGateway                       *bool                             `json:"canUseKerberosGateway,omitempty"`
	CanUseLdapGateway                           *bool                             `json:"canUseLdapGateway,omitempty"`
	CanUseManualIDStepUpInspection              *bool                             `json:"canUseManualIDStepUpInspection,omitempty"`
	CanUseManualIdInspection                    *bool                             `json:"canUseManualIdInspection,omitempty"`
	CanUseMfa                                   *bool                             `json:"canUseMfa,omitempty"`
	CanUseMfaFido2Devices                       *bool                             `json:"canUseMfaFido2Devices,omitempty"`
	CanUseMfaPushNotifications                  *bool                             `json:"canUseMfaPushNotifications,omitempty"`
	CanUseMfaVoiceOtp                           *bool                             `json:"canUseMfaVoiceOtp,omitempty"`
	CanUseMyAccount                             *bool                             `json:"canUseMyAccount,omitempty"`
	CanUseNewAccountFraudDetection              *bool                             `json:"canUseNewAccountFraudDetection,omitempty"`
	CanUseOATHToken                             *bool                             `json:"canUseOATHToken,omitempty"`
	CanUseOrchestration                         *bool                             `json:"canUseOrchestration,omitempty"`
	CanUsePasswordManagement                    *bool                             `json:"canUsePasswordManagement,omitempty"`
	CanUsePasswordOnlyAuthentication            *bool                             `json:"canUsePasswordOnlyAuthentication,omitempty"`
	CanUsePasswordPolicy                        *bool                             `json:"canUsePasswordPolicy,omitempty"`
	CanUsePingIDApp                             *bool                             `json:"canUsePingIDApp,omitempty"`
	CanUsePingSmsAccount                        *bool                             `json:"canUsePingSmsAccount,omitempty"`
	CanUsePlatform                              *bool                             `json:"canUsePlatform,omitempty"`
	CanUseProtectTransactions                   *bool                             `json:"canUseProtectTransactions,omitempty"`
	CanUseProvisioning                          *bool                             `json:"canUseProvisioning,omitempty"`
	CanUseRadiusGateway                         *bool                             `json:"canUseRadiusGateway,omitempty"`
	CanUseSmsOtp                                *bool                             `json:"canUseSmsOtp,omitempty"`
	CanUseTotp                                  *bool                             `json:"canUseTotp,omitempty"`
	CanUseUniversalDeviceId                     *bool                             `json:"canUseUniversalDeviceId,omitempty"`
	CanUseVerificationFlow                      *bool                             `json:"canUseVerificationFlow,omitempty"`
	CanUseVerify                                *bool                             `json:"canUseVerify,omitempty"`
	CanUseVerifyPushNotifications               *bool                             `json:"canUseVerifyPushNotifications,omitempty"`
	CanUseVerifyVoice                           *bool                             `json:"canUseVerifyVoice,omitempty"`
	CanUseWhatsAppOtp                           *bool                             `json:"canUseWhatsAppOtp,omitempty"`
	CanUseWinLogin                              *bool                             `json:"canUseWinLogin,omitempty"`
	CanUseYubikey                               *bool                             `json:"canUseYubikey,omitempty"`
	CanUsersUpdateSelf                          *bool                             `json:"canUsersUpdateSelf,omitempty"`
	EnvironmentId                               *uuid.UUID                        `json:"environmentId,omitempty"`
	GetcanUseUniversalCapture                   *bool                             `json:"getcanUseUniversalCapture,omitempty"`
	LicenseQuantities                           *EnvironmentLicenseQuantities     `json:"licenseQuantities,omitempty"`
	AdditionalProperties                        map[string]interface{}
}

EnvironmentCapabilities struct for EnvironmentCapabilities

func NewEnvironmentCapabilities

func NewEnvironmentCapabilities() *EnvironmentCapabilities

NewEnvironmentCapabilities instantiates a new EnvironmentCapabilities 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 NewEnvironmentCapabilitiesWithDefaults

func NewEnvironmentCapabilitiesWithDefaults() *EnvironmentCapabilities

NewEnvironmentCapabilitiesWithDefaults instantiates a new EnvironmentCapabilities 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 (*EnvironmentCapabilities) GetCanAddResources

func (o *EnvironmentCapabilities) GetCanAddResources() bool

GetCanAddResources returns the CanAddResources field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanAddResourcesOk

func (o *EnvironmentCapabilities) GetCanAddResourcesOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanAssignCustomRolesEverywhere

func (o *EnvironmentCapabilities) GetCanAssignCustomRolesEverywhere() bool

GetCanAssignCustomRolesEverywhere returns the CanAssignCustomRolesEverywhere field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanAssignCustomRolesEverywhereOk

func (o *EnvironmentCapabilities) GetCanAssignCustomRolesEverywhereOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanAssignUsersRoles

func (o *EnvironmentCapabilities) GetCanAssignUsersRoles() bool

GetCanAssignUsersRoles returns the CanAssignUsersRoles field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanAssignUsersRolesOk

func (o *EnvironmentCapabilities) GetCanAssignUsersRolesOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanContactSupport

func (o *EnvironmentCapabilities) GetCanContactSupport() bool

GetCanContactSupport returns the CanContactSupport field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanContactSupportOk

func (o *EnvironmentCapabilities) GetCanContactSupportOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanCreateConnections

func (o *EnvironmentCapabilities) GetCanCreateConnections() bool

GetCanCreateConnections returns the CanCreateConnections field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanCreateConnectionsOk

func (o *EnvironmentCapabilities) GetCanCreateConnectionsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanCreateCustomDomain

func (o *EnvironmentCapabilities) GetCanCreateCustomDomain() bool

GetCanCreateCustomDomain returns the CanCreateCustomDomain field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanCreateCustomDomainOk

func (o *EnvironmentCapabilities) GetCanCreateCustomDomainOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanPromoteToProd

func (o *EnvironmentCapabilities) GetCanPromoteToProd() bool

GetCanPromoteToProd returns the CanPromoteToProd field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanPromoteToProdOk

func (o *EnvironmentCapabilities) GetCanPromoteToProdOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanSendMfaNotificationsOutsideWhitelist

func (o *EnvironmentCapabilities) GetCanSendMfaNotificationsOutsideWhitelist() bool

GetCanSendMfaNotificationsOutsideWhitelist returns the CanSendMfaNotificationsOutsideWhitelist field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanSendMfaNotificationsOutsideWhitelistOk

func (o *EnvironmentCapabilities) GetCanSendMfaNotificationsOutsideWhitelistOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanSendPasswordManagementNotifications

func (o *EnvironmentCapabilities) GetCanSendPasswordManagementNotifications() bool

GetCanSendPasswordManagementNotifications returns the CanSendPasswordManagementNotifications field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanSendPasswordManagementNotificationsOk

func (o *EnvironmentCapabilities) GetCanSendPasswordManagementNotificationsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanSendVerificationFlowNotifications

func (o *EnvironmentCapabilities) GetCanSendVerificationFlowNotifications() bool

GetCanSendVerificationFlowNotifications returns the CanSendVerificationFlowNotifications field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanSendVerificationFlowNotificationsOk

func (o *EnvironmentCapabilities) GetCanSendVerificationFlowNotificationsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseAadhaar

func (o *EnvironmentCapabilities) GetCanUseAadhaar() bool

GetCanUseAadhaar returns the CanUseAadhaar field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseAadhaarOk

func (o *EnvironmentCapabilities) GetCanUseAadhaarOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseAamva

func (o *EnvironmentCapabilities) GetCanUseAamva() bool

GetCanUseAamva returns the CanUseAamva field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseAamvaOk

func (o *EnvironmentCapabilities) GetCanUseAamvaOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseAccountOwnership

func (o *EnvironmentCapabilities) GetCanUseAccountOwnership() bool

GetCanUseAccountOwnership returns the CanUseAccountOwnership field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseAccountOwnershipOk

func (o *EnvironmentCapabilities) GetCanUseAccountOwnershipOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseAccountProtection

func (o *EnvironmentCapabilities) GetCanUseAccountProtection() bool

GetCanUseAccountProtection returns the CanUseAccountProtection field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseAccountProtectionOk

func (o *EnvironmentCapabilities) GetCanUseAccountProtectionOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseAccountTakeoverDetection

func (o *EnvironmentCapabilities) GetCanUseAccountTakeoverDetection() bool

GetCanUseAccountTakeoverDetection returns the CanUseAccountTakeoverDetection field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseAccountTakeoverDetectionOk

func (o *EnvironmentCapabilities) GetCanUseAccountTakeoverDetectionOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseApiAccessManagement

func (o *EnvironmentCapabilities) GetCanUseApiAccessManagement() bool

GetCanUseApiAccessManagement returns the CanUseApiAccessManagement field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseApiAccessManagementOk

func (o *EnvironmentCapabilities) GetCanUseApiAccessManagementOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseApplicationPermissions

func (o *EnvironmentCapabilities) GetCanUseApplicationPermissions() bool

GetCanUseApplicationPermissions returns the CanUseApplicationPermissions field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseApplicationPermissionsOk

func (o *EnvironmentCapabilities) GetCanUseApplicationPermissionsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseBotMaliciousDeviceDetection

func (o *EnvironmentCapabilities) GetCanUseBotMaliciousDeviceDetection() bool

GetCanUseBotMaliciousDeviceDetection returns the CanUseBotMaliciousDeviceDetection field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseBotMaliciousDeviceDetectionOk

func (o *EnvironmentCapabilities) GetCanUseBotMaliciousDeviceDetectionOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseCredentialSharingDetection

func (o *EnvironmentCapabilities) GetCanUseCredentialSharingDetection() bool

GetCanUseCredentialSharingDetection returns the CanUseCredentialSharingDetection field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseCredentialSharingDetectionOk

func (o *EnvironmentCapabilities) GetCanUseCredentialSharingDetectionOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseCredentials

func (o *EnvironmentCapabilities) GetCanUseCredentials() bool

GetCanUseCredentials returns the CanUseCredentials field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseCredentialsOk

func (o *EnvironmentCapabilities) GetCanUseCredentialsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseCredentialsPushNotifications

func (o *EnvironmentCapabilities) GetCanUseCredentialsPushNotifications() bool

GetCanUseCredentialsPushNotifications returns the CanUseCredentialsPushNotifications field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseCredentialsPushNotificationsOk

func (o *EnvironmentCapabilities) GetCanUseCredentialsPushNotificationsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseCustomSchema

func (o *EnvironmentCapabilities) GetCanUseCustomSchema() bool

GetCanUseCustomSchema returns the CanUseCustomSchema field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseCustomSchemaOk

func (o *EnvironmentCapabilities) GetCanUseCustomSchemaOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseDaVinciAdminPortal

func (o *EnvironmentCapabilities) GetCanUseDaVinciAdminPortal() bool

GetCanUseDaVinciAdminPortal returns the CanUseDaVinciAdminPortal field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseDaVinciAdminPortalOk

func (o *EnvironmentCapabilities) GetCanUseDaVinciAdminPortalOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseDataAnalyticsSupport

func (o *EnvironmentCapabilities) GetCanUseDataAnalyticsSupport() bool

GetCanUseDataAnalyticsSupport returns the CanUseDataAnalyticsSupport field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseDataAnalyticsSupportOk

func (o *EnvironmentCapabilities) GetCanUseDataAnalyticsSupportOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseDataBasedVerifications

func (o *EnvironmentCapabilities) GetCanUseDataBasedVerifications() bool

GetCanUseDataBasedVerifications returns the CanUseDataBasedVerifications field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseDataBasedVerificationsOk

func (o *EnvironmentCapabilities) GetCanUseDataBasedVerificationsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseDigitalVerifications

func (o *EnvironmentCapabilities) GetCanUseDigitalVerifications() bool

GetCanUseDigitalVerifications returns the CanUseDigitalVerifications field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseDigitalVerificationsOk

func (o *EnvironmentCapabilities) GetCanUseDigitalVerificationsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseDocumentMatch

func (o *EnvironmentCapabilities) GetCanUseDocumentMatch() bool

GetCanUseDocumentMatch returns the CanUseDocumentMatch field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseDocumentMatchOk

func (o *EnvironmentCapabilities) GetCanUseDocumentMatchOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseDynamicAuthorization

func (o *EnvironmentCapabilities) GetCanUseDynamicAuthorization() bool

GetCanUseDynamicAuthorization returns the CanUseDynamicAuthorization field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseDynamicAuthorizationOk

func (o *EnvironmentCapabilities) GetCanUseDynamicAuthorizationOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseEditNotificationTemplate

func (o *EnvironmentCapabilities) GetCanUseEditNotificationTemplate() bool

GetCanUseEditNotificationTemplate returns the CanUseEditNotificationTemplate field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseEditNotificationTemplateOk

func (o *EnvironmentCapabilities) GetCanUseEditNotificationTemplateOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseEmailOtp

func (o *EnvironmentCapabilities) GetCanUseEmailOtp() bool

GetCanUseEmailOtp returns the CanUseEmailOtp field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseEmailOtpOk

func (o *EnvironmentCapabilities) GetCanUseEmailOtpOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseFaceMatch

func (o *EnvironmentCapabilities) GetCanUseFaceMatch() bool

GetCanUseFaceMatch returns the CanUseFaceMatch field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseFaceMatchOk

func (o *EnvironmentCapabilities) GetCanUseFaceMatchOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseFraudDataEnrichment

func (o *EnvironmentCapabilities) GetCanUseFraudDataEnrichment() bool

GetCanUseFraudDataEnrichment returns the CanUseFraudDataEnrichment field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseFraudDataEnrichmentOk

func (o *EnvironmentCapabilities) GetCanUseFraudDataEnrichmentOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIdentities

func (o *EnvironmentCapabilities) GetCanUseIdentities() bool

GetCanUseIdentities returns the CanUseIdentities field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIdentitiesOk

func (o *EnvironmentCapabilities) GetCanUseIdentitiesOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIdentityProviders

func (o *EnvironmentCapabilities) GetCanUseIdentityProviders() bool

GetCanUseIdentityProviders returns the CanUseIdentityProviders field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIdentityProvidersOk

func (o *EnvironmentCapabilities) GetCanUseIdentityProvidersOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseInboundProvisioning

func (o *EnvironmentCapabilities) GetCanUseInboundProvisioning() bool

GetCanUseInboundProvisioning returns the CanUseInboundProvisioning field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseInboundProvisioningOk

func (o *EnvironmentCapabilities) GetCanUseInboundProvisioningOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligence

func (o *EnvironmentCapabilities) GetCanUseIntelligence() bool

GetCanUseIntelligence returns the CanUseIntelligence field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceAdvancedPredictors

func (o *EnvironmentCapabilities) GetCanUseIntelligenceAdvancedPredictors() bool

GetCanUseIntelligenceAdvancedPredictors returns the CanUseIntelligenceAdvancedPredictors field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceAdvancedPredictorsOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceAdvancedPredictorsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceAnonymousNetworkDetection

func (o *EnvironmentCapabilities) GetCanUseIntelligenceAnonymousNetworkDetection() bool

GetCanUseIntelligenceAnonymousNetworkDetection returns the CanUseIntelligenceAnonymousNetworkDetection field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceAnonymousNetworkDetectionOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceAnonymousNetworkDetectionOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceDataConsent

func (o *EnvironmentCapabilities) GetCanUseIntelligenceDataConsent() bool

GetCanUseIntelligenceDataConsent returns the CanUseIntelligenceDataConsent field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceDataConsentOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceDataConsentOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceEditPolicyScores

func (o *EnvironmentCapabilities) GetCanUseIntelligenceEditPolicyScores() bool

GetCanUseIntelligenceEditPolicyScores returns the CanUseIntelligenceEditPolicyScores field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceEditPolicyScoresOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceEditPolicyScoresOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceGeoVelocity

func (o *EnvironmentCapabilities) GetCanUseIntelligenceGeoVelocity() bool

GetCanUseIntelligenceGeoVelocity returns the CanUseIntelligenceGeoVelocity field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceGeoVelocityOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceGeoVelocityOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceLastTransactionOlderThan

func (o *EnvironmentCapabilities) GetCanUseIntelligenceLastTransactionOlderThan() bool

GetCanUseIntelligenceLastTransactionOlderThan returns the CanUseIntelligenceLastTransactionOlderThan field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceLastTransactionOlderThanOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceLastTransactionOlderThanOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceLimitedCompositePredictor

func (o *EnvironmentCapabilities) GetCanUseIntelligenceLimitedCompositePredictor() bool

GetCanUseIntelligenceLimitedCompositePredictor returns the CanUseIntelligenceLimitedCompositePredictor field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceLimitedCompositePredictorOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceLimitedCompositePredictorOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceNewDevicePredictor

func (o *EnvironmentCapabilities) GetCanUseIntelligenceNewDevicePredictor() bool

GetCanUseIntelligenceNewDevicePredictor returns the CanUseIntelligenceNewDevicePredictor field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceNewDevicePredictorOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceNewDevicePredictorOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceProtect

func (o *EnvironmentCapabilities) GetCanUseIntelligenceProtect() bool

GetCanUseIntelligenceProtect returns the CanUseIntelligenceProtect field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceProtectOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceProtectOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceReputation

func (o *EnvironmentCapabilities) GetCanUseIntelligenceReputation() bool

GetCanUseIntelligenceReputation returns the CanUseIntelligenceReputation field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceReputationOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceReputationOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceRisk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceRisk() bool

GetCanUseIntelligenceRisk returns the CanUseIntelligenceRisk field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceRiskOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceRiskOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseIntelligenceTrustDevicePredictor

func (o *EnvironmentCapabilities) GetCanUseIntelligenceTrustDevicePredictor() bool

GetCanUseIntelligenceTrustDevicePredictor returns the CanUseIntelligenceTrustDevicePredictor field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseIntelligenceTrustDevicePredictorOk

func (o *EnvironmentCapabilities) GetCanUseIntelligenceTrustDevicePredictorOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseKerberosGateway

func (o *EnvironmentCapabilities) GetCanUseKerberosGateway() bool

GetCanUseKerberosGateway returns the CanUseKerberosGateway field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseKerberosGatewayOk

func (o *EnvironmentCapabilities) GetCanUseKerberosGatewayOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseLdapGateway

func (o *EnvironmentCapabilities) GetCanUseLdapGateway() bool

GetCanUseLdapGateway returns the CanUseLdapGateway field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseLdapGatewayOk

func (o *EnvironmentCapabilities) GetCanUseLdapGatewayOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseManualIDStepUpInspection

func (o *EnvironmentCapabilities) GetCanUseManualIDStepUpInspection() bool

GetCanUseManualIDStepUpInspection returns the CanUseManualIDStepUpInspection field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseManualIDStepUpInspectionOk

func (o *EnvironmentCapabilities) GetCanUseManualIDStepUpInspectionOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseManualIdInspection

func (o *EnvironmentCapabilities) GetCanUseManualIdInspection() bool

GetCanUseManualIdInspection returns the CanUseManualIdInspection field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseManualIdInspectionOk

func (o *EnvironmentCapabilities) GetCanUseManualIdInspectionOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseMfa

func (o *EnvironmentCapabilities) GetCanUseMfa() bool

GetCanUseMfa returns the CanUseMfa field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseMfaFido2Devices

func (o *EnvironmentCapabilities) GetCanUseMfaFido2Devices() bool

GetCanUseMfaFido2Devices returns the CanUseMfaFido2Devices field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseMfaFido2DevicesOk

func (o *EnvironmentCapabilities) GetCanUseMfaFido2DevicesOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseMfaOk

func (o *EnvironmentCapabilities) GetCanUseMfaOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseMfaPushNotifications

func (o *EnvironmentCapabilities) GetCanUseMfaPushNotifications() bool

GetCanUseMfaPushNotifications returns the CanUseMfaPushNotifications field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseMfaPushNotificationsOk

func (o *EnvironmentCapabilities) GetCanUseMfaPushNotificationsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseMfaVoiceOtp

func (o *EnvironmentCapabilities) GetCanUseMfaVoiceOtp() bool

GetCanUseMfaVoiceOtp returns the CanUseMfaVoiceOtp field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseMfaVoiceOtpOk

func (o *EnvironmentCapabilities) GetCanUseMfaVoiceOtpOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseMyAccount

func (o *EnvironmentCapabilities) GetCanUseMyAccount() bool

GetCanUseMyAccount returns the CanUseMyAccount field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseMyAccountOk

func (o *EnvironmentCapabilities) GetCanUseMyAccountOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseNewAccountFraudDetection

func (o *EnvironmentCapabilities) GetCanUseNewAccountFraudDetection() bool

GetCanUseNewAccountFraudDetection returns the CanUseNewAccountFraudDetection field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseNewAccountFraudDetectionOk

func (o *EnvironmentCapabilities) GetCanUseNewAccountFraudDetectionOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseOATHToken

func (o *EnvironmentCapabilities) GetCanUseOATHToken() bool

GetCanUseOATHToken returns the CanUseOATHToken field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseOATHTokenOk

func (o *EnvironmentCapabilities) GetCanUseOATHTokenOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseOrchestration

func (o *EnvironmentCapabilities) GetCanUseOrchestration() bool

GetCanUseOrchestration returns the CanUseOrchestration field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseOrchestrationOk

func (o *EnvironmentCapabilities) GetCanUseOrchestrationOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUsePasswordManagement

func (o *EnvironmentCapabilities) GetCanUsePasswordManagement() bool

GetCanUsePasswordManagement returns the CanUsePasswordManagement field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUsePasswordManagementOk

func (o *EnvironmentCapabilities) GetCanUsePasswordManagementOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUsePasswordOnlyAuthentication

func (o *EnvironmentCapabilities) GetCanUsePasswordOnlyAuthentication() bool

GetCanUsePasswordOnlyAuthentication returns the CanUsePasswordOnlyAuthentication field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUsePasswordOnlyAuthenticationOk

func (o *EnvironmentCapabilities) GetCanUsePasswordOnlyAuthenticationOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUsePasswordPolicy

func (o *EnvironmentCapabilities) GetCanUsePasswordPolicy() bool

GetCanUsePasswordPolicy returns the CanUsePasswordPolicy field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUsePasswordPolicyOk

func (o *EnvironmentCapabilities) GetCanUsePasswordPolicyOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUsePingIDApp

func (o *EnvironmentCapabilities) GetCanUsePingIDApp() bool

GetCanUsePingIDApp returns the CanUsePingIDApp field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUsePingIDAppOk

func (o *EnvironmentCapabilities) GetCanUsePingIDAppOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUsePingSmsAccount

func (o *EnvironmentCapabilities) GetCanUsePingSmsAccount() bool

GetCanUsePingSmsAccount returns the CanUsePingSmsAccount field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUsePingSmsAccountOk

func (o *EnvironmentCapabilities) GetCanUsePingSmsAccountOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUsePlatform

func (o *EnvironmentCapabilities) GetCanUsePlatform() bool

GetCanUsePlatform returns the CanUsePlatform field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUsePlatformOk

func (o *EnvironmentCapabilities) GetCanUsePlatformOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseProtectTransactions

func (o *EnvironmentCapabilities) GetCanUseProtectTransactions() bool

GetCanUseProtectTransactions returns the CanUseProtectTransactions field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseProtectTransactionsOk

func (o *EnvironmentCapabilities) GetCanUseProtectTransactionsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseProvisioning

func (o *EnvironmentCapabilities) GetCanUseProvisioning() bool

GetCanUseProvisioning returns the CanUseProvisioning field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseProvisioningOk

func (o *EnvironmentCapabilities) GetCanUseProvisioningOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseRadiusGateway

func (o *EnvironmentCapabilities) GetCanUseRadiusGateway() bool

GetCanUseRadiusGateway returns the CanUseRadiusGateway field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseRadiusGatewayOk

func (o *EnvironmentCapabilities) GetCanUseRadiusGatewayOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseSmsOtp

func (o *EnvironmentCapabilities) GetCanUseSmsOtp() bool

GetCanUseSmsOtp returns the CanUseSmsOtp field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseSmsOtpOk

func (o *EnvironmentCapabilities) GetCanUseSmsOtpOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseTotp

func (o *EnvironmentCapabilities) GetCanUseTotp() bool

GetCanUseTotp returns the CanUseTotp field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseTotpOk

func (o *EnvironmentCapabilities) GetCanUseTotpOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseUniversalDeviceId

func (o *EnvironmentCapabilities) GetCanUseUniversalDeviceId() bool

GetCanUseUniversalDeviceId returns the CanUseUniversalDeviceId field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseUniversalDeviceIdOk

func (o *EnvironmentCapabilities) GetCanUseUniversalDeviceIdOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseVerificationFlow

func (o *EnvironmentCapabilities) GetCanUseVerificationFlow() bool

GetCanUseVerificationFlow returns the CanUseVerificationFlow field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseVerificationFlowOk

func (o *EnvironmentCapabilities) GetCanUseVerificationFlowOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseVerify

func (o *EnvironmentCapabilities) GetCanUseVerify() bool

GetCanUseVerify returns the CanUseVerify field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseVerifyOk

func (o *EnvironmentCapabilities) GetCanUseVerifyOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseVerifyPushNotifications

func (o *EnvironmentCapabilities) GetCanUseVerifyPushNotifications() bool

GetCanUseVerifyPushNotifications returns the CanUseVerifyPushNotifications field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseVerifyPushNotificationsOk

func (o *EnvironmentCapabilities) GetCanUseVerifyPushNotificationsOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseVerifyVoice

func (o *EnvironmentCapabilities) GetCanUseVerifyVoice() bool

GetCanUseVerifyVoice returns the CanUseVerifyVoice field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseVerifyVoiceOk

func (o *EnvironmentCapabilities) GetCanUseVerifyVoiceOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseWhatsAppOtp

func (o *EnvironmentCapabilities) GetCanUseWhatsAppOtp() bool

GetCanUseWhatsAppOtp returns the CanUseWhatsAppOtp field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseWhatsAppOtpOk

func (o *EnvironmentCapabilities) GetCanUseWhatsAppOtpOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseWinLogin

func (o *EnvironmentCapabilities) GetCanUseWinLogin() bool

GetCanUseWinLogin returns the CanUseWinLogin field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseWinLoginOk

func (o *EnvironmentCapabilities) GetCanUseWinLoginOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUseYubikey

func (o *EnvironmentCapabilities) GetCanUseYubikey() bool

GetCanUseYubikey returns the CanUseYubikey field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUseYubikeyOk

func (o *EnvironmentCapabilities) GetCanUseYubikeyOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetCanUsersUpdateSelf

func (o *EnvironmentCapabilities) GetCanUsersUpdateSelf() bool

GetCanUsersUpdateSelf returns the CanUsersUpdateSelf field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetCanUsersUpdateSelfOk

func (o *EnvironmentCapabilities) GetCanUsersUpdateSelfOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetEmbedded

func (o *EnvironmentCapabilities) GetEmbedded() map[string]map[string]interface{}

GetEmbedded returns the Embedded field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetEmbeddedOk

func (o *EnvironmentCapabilities) GetEmbeddedOk() (map[string]map[string]interface{}, bool)

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

func (*EnvironmentCapabilities) GetEnvironmentId

func (o *EnvironmentCapabilities) GetEnvironmentId() uuid.UUID

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetEnvironmentIdOk

func (o *EnvironmentCapabilities) GetEnvironmentIdOk() (*uuid.UUID, bool)

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

func (*EnvironmentCapabilities) GetGetcanUseUniversalCapture

func (o *EnvironmentCapabilities) GetGetcanUseUniversalCapture() bool

GetGetcanUseUniversalCapture returns the GetcanUseUniversalCapture field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetGetcanUseUniversalCaptureOk

func (o *EnvironmentCapabilities) GetGetcanUseUniversalCaptureOk() (*bool, bool)

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

func (*EnvironmentCapabilities) GetLicenseQuantities

func (o *EnvironmentCapabilities) GetLicenseQuantities() EnvironmentLicenseQuantities

GetLicenseQuantities returns the LicenseQuantities field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetLicenseQuantitiesOk

func (o *EnvironmentCapabilities) GetLicenseQuantitiesOk() (*EnvironmentLicenseQuantities, bool)

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

GetLinks returns the Links field value if set, zero value otherwise.

func (*EnvironmentCapabilities) GetLinksOk

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

func (*EnvironmentCapabilities) HasCanAddResources

func (o *EnvironmentCapabilities) HasCanAddResources() bool

HasCanAddResources returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanAssignCustomRolesEverywhere

func (o *EnvironmentCapabilities) HasCanAssignCustomRolesEverywhere() bool

HasCanAssignCustomRolesEverywhere returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanAssignUsersRoles

func (o *EnvironmentCapabilities) HasCanAssignUsersRoles() bool

HasCanAssignUsersRoles returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanContactSupport

func (o *EnvironmentCapabilities) HasCanContactSupport() bool

HasCanContactSupport returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanCreateConnections

func (o *EnvironmentCapabilities) HasCanCreateConnections() bool

HasCanCreateConnections returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanCreateCustomDomain

func (o *EnvironmentCapabilities) HasCanCreateCustomDomain() bool

HasCanCreateCustomDomain returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanPromoteToProd

func (o *EnvironmentCapabilities) HasCanPromoteToProd() bool

HasCanPromoteToProd returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanSendMfaNotificationsOutsideWhitelist

func (o *EnvironmentCapabilities) HasCanSendMfaNotificationsOutsideWhitelist() bool

HasCanSendMfaNotificationsOutsideWhitelist returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanSendPasswordManagementNotifications

func (o *EnvironmentCapabilities) HasCanSendPasswordManagementNotifications() bool

HasCanSendPasswordManagementNotifications returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanSendVerificationFlowNotifications

func (o *EnvironmentCapabilities) HasCanSendVerificationFlowNotifications() bool

HasCanSendVerificationFlowNotifications returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseAadhaar

func (o *EnvironmentCapabilities) HasCanUseAadhaar() bool

HasCanUseAadhaar returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseAamva

func (o *EnvironmentCapabilities) HasCanUseAamva() bool

HasCanUseAamva returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseAccountOwnership

func (o *EnvironmentCapabilities) HasCanUseAccountOwnership() bool

HasCanUseAccountOwnership returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseAccountProtection

func (o *EnvironmentCapabilities) HasCanUseAccountProtection() bool

HasCanUseAccountProtection returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseAccountTakeoverDetection

func (o *EnvironmentCapabilities) HasCanUseAccountTakeoverDetection() bool

HasCanUseAccountTakeoverDetection returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseApiAccessManagement

func (o *EnvironmentCapabilities) HasCanUseApiAccessManagement() bool

HasCanUseApiAccessManagement returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseApplicationPermissions

func (o *EnvironmentCapabilities) HasCanUseApplicationPermissions() bool

HasCanUseApplicationPermissions returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseBotMaliciousDeviceDetection

func (o *EnvironmentCapabilities) HasCanUseBotMaliciousDeviceDetection() bool

HasCanUseBotMaliciousDeviceDetection returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseCredentialSharingDetection

func (o *EnvironmentCapabilities) HasCanUseCredentialSharingDetection() bool

HasCanUseCredentialSharingDetection returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseCredentials

func (o *EnvironmentCapabilities) HasCanUseCredentials() bool

HasCanUseCredentials returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseCredentialsPushNotifications

func (o *EnvironmentCapabilities) HasCanUseCredentialsPushNotifications() bool

HasCanUseCredentialsPushNotifications returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseCustomSchema

func (o *EnvironmentCapabilities) HasCanUseCustomSchema() bool

HasCanUseCustomSchema returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseDaVinciAdminPortal

func (o *EnvironmentCapabilities) HasCanUseDaVinciAdminPortal() bool

HasCanUseDaVinciAdminPortal returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseDataAnalyticsSupport

func (o *EnvironmentCapabilities) HasCanUseDataAnalyticsSupport() bool

HasCanUseDataAnalyticsSupport returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseDataBasedVerifications

func (o *EnvironmentCapabilities) HasCanUseDataBasedVerifications() bool

HasCanUseDataBasedVerifications returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseDigitalVerifications

func (o *EnvironmentCapabilities) HasCanUseDigitalVerifications() bool

HasCanUseDigitalVerifications returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseDocumentMatch

func (o *EnvironmentCapabilities) HasCanUseDocumentMatch() bool

HasCanUseDocumentMatch returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseDynamicAuthorization

func (o *EnvironmentCapabilities) HasCanUseDynamicAuthorization() bool

HasCanUseDynamicAuthorization returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseEditNotificationTemplate

func (o *EnvironmentCapabilities) HasCanUseEditNotificationTemplate() bool

HasCanUseEditNotificationTemplate returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseEmailOtp

func (o *EnvironmentCapabilities) HasCanUseEmailOtp() bool

HasCanUseEmailOtp returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseFaceMatch

func (o *EnvironmentCapabilities) HasCanUseFaceMatch() bool

HasCanUseFaceMatch returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseFraudDataEnrichment

func (o *EnvironmentCapabilities) HasCanUseFraudDataEnrichment() bool

HasCanUseFraudDataEnrichment returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIdentities

func (o *EnvironmentCapabilities) HasCanUseIdentities() bool

HasCanUseIdentities returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIdentityProviders

func (o *EnvironmentCapabilities) HasCanUseIdentityProviders() bool

HasCanUseIdentityProviders returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseInboundProvisioning

func (o *EnvironmentCapabilities) HasCanUseInboundProvisioning() bool

HasCanUseInboundProvisioning returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligence

func (o *EnvironmentCapabilities) HasCanUseIntelligence() bool

HasCanUseIntelligence returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceAdvancedPredictors

func (o *EnvironmentCapabilities) HasCanUseIntelligenceAdvancedPredictors() bool

HasCanUseIntelligenceAdvancedPredictors returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceAnonymousNetworkDetection

func (o *EnvironmentCapabilities) HasCanUseIntelligenceAnonymousNetworkDetection() bool

HasCanUseIntelligenceAnonymousNetworkDetection returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceDataConsent

func (o *EnvironmentCapabilities) HasCanUseIntelligenceDataConsent() bool

HasCanUseIntelligenceDataConsent returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceEditPolicyScores

func (o *EnvironmentCapabilities) HasCanUseIntelligenceEditPolicyScores() bool

HasCanUseIntelligenceEditPolicyScores returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceGeoVelocity

func (o *EnvironmentCapabilities) HasCanUseIntelligenceGeoVelocity() bool

HasCanUseIntelligenceGeoVelocity returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceLastTransactionOlderThan

func (o *EnvironmentCapabilities) HasCanUseIntelligenceLastTransactionOlderThan() bool

HasCanUseIntelligenceLastTransactionOlderThan returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceLimitedCompositePredictor

func (o *EnvironmentCapabilities) HasCanUseIntelligenceLimitedCompositePredictor() bool

HasCanUseIntelligenceLimitedCompositePredictor returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceNewDevicePredictor

func (o *EnvironmentCapabilities) HasCanUseIntelligenceNewDevicePredictor() bool

HasCanUseIntelligenceNewDevicePredictor returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceProtect

func (o *EnvironmentCapabilities) HasCanUseIntelligenceProtect() bool

HasCanUseIntelligenceProtect returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceReputation

func (o *EnvironmentCapabilities) HasCanUseIntelligenceReputation() bool

HasCanUseIntelligenceReputation returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceRisk

func (o *EnvironmentCapabilities) HasCanUseIntelligenceRisk() bool

HasCanUseIntelligenceRisk returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseIntelligenceTrustDevicePredictor

func (o *EnvironmentCapabilities) HasCanUseIntelligenceTrustDevicePredictor() bool

HasCanUseIntelligenceTrustDevicePredictor returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseKerberosGateway

func (o *EnvironmentCapabilities) HasCanUseKerberosGateway() bool

HasCanUseKerberosGateway returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseLdapGateway

func (o *EnvironmentCapabilities) HasCanUseLdapGateway() bool

HasCanUseLdapGateway returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseManualIDStepUpInspection

func (o *EnvironmentCapabilities) HasCanUseManualIDStepUpInspection() bool

HasCanUseManualIDStepUpInspection returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseManualIdInspection

func (o *EnvironmentCapabilities) HasCanUseManualIdInspection() bool

HasCanUseManualIdInspection returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseMfa

func (o *EnvironmentCapabilities) HasCanUseMfa() bool

HasCanUseMfa returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseMfaFido2Devices

func (o *EnvironmentCapabilities) HasCanUseMfaFido2Devices() bool

HasCanUseMfaFido2Devices returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseMfaPushNotifications

func (o *EnvironmentCapabilities) HasCanUseMfaPushNotifications() bool

HasCanUseMfaPushNotifications returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseMfaVoiceOtp

func (o *EnvironmentCapabilities) HasCanUseMfaVoiceOtp() bool

HasCanUseMfaVoiceOtp returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseMyAccount

func (o *EnvironmentCapabilities) HasCanUseMyAccount() bool

HasCanUseMyAccount returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseNewAccountFraudDetection

func (o *EnvironmentCapabilities) HasCanUseNewAccountFraudDetection() bool

HasCanUseNewAccountFraudDetection returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseOATHToken

func (o *EnvironmentCapabilities) HasCanUseOATHToken() bool

HasCanUseOATHToken returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseOrchestration

func (o *EnvironmentCapabilities) HasCanUseOrchestration() bool

HasCanUseOrchestration returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUsePasswordManagement

func (o *EnvironmentCapabilities) HasCanUsePasswordManagement() bool

HasCanUsePasswordManagement returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUsePasswordOnlyAuthentication

func (o *EnvironmentCapabilities) HasCanUsePasswordOnlyAuthentication() bool

HasCanUsePasswordOnlyAuthentication returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUsePasswordPolicy

func (o *EnvironmentCapabilities) HasCanUsePasswordPolicy() bool

HasCanUsePasswordPolicy returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUsePingIDApp

func (o *EnvironmentCapabilities) HasCanUsePingIDApp() bool

HasCanUsePingIDApp returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUsePingSmsAccount

func (o *EnvironmentCapabilities) HasCanUsePingSmsAccount() bool

HasCanUsePingSmsAccount returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUsePlatform

func (o *EnvironmentCapabilities) HasCanUsePlatform() bool

HasCanUsePlatform returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseProtectTransactions

func (o *EnvironmentCapabilities) HasCanUseProtectTransactions() bool

HasCanUseProtectTransactions returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseProvisioning

func (o *EnvironmentCapabilities) HasCanUseProvisioning() bool

HasCanUseProvisioning returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseRadiusGateway

func (o *EnvironmentCapabilities) HasCanUseRadiusGateway() bool

HasCanUseRadiusGateway returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseSmsOtp

func (o *EnvironmentCapabilities) HasCanUseSmsOtp() bool

HasCanUseSmsOtp returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseTotp

func (o *EnvironmentCapabilities) HasCanUseTotp() bool

HasCanUseTotp returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseUniversalDeviceId

func (o *EnvironmentCapabilities) HasCanUseUniversalDeviceId() bool

HasCanUseUniversalDeviceId returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseVerificationFlow

func (o *EnvironmentCapabilities) HasCanUseVerificationFlow() bool

HasCanUseVerificationFlow returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseVerify

func (o *EnvironmentCapabilities) HasCanUseVerify() bool

HasCanUseVerify returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseVerifyPushNotifications

func (o *EnvironmentCapabilities) HasCanUseVerifyPushNotifications() bool

HasCanUseVerifyPushNotifications returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseVerifyVoice

func (o *EnvironmentCapabilities) HasCanUseVerifyVoice() bool

HasCanUseVerifyVoice returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseWhatsAppOtp

func (o *EnvironmentCapabilities) HasCanUseWhatsAppOtp() bool

HasCanUseWhatsAppOtp returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseWinLogin

func (o *EnvironmentCapabilities) HasCanUseWinLogin() bool

HasCanUseWinLogin returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUseYubikey

func (o *EnvironmentCapabilities) HasCanUseYubikey() bool

HasCanUseYubikey returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasCanUsersUpdateSelf

func (o *EnvironmentCapabilities) HasCanUsersUpdateSelf() bool

HasCanUsersUpdateSelf returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasEmbedded

func (o *EnvironmentCapabilities) HasEmbedded() bool

HasEmbedded returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasEnvironmentId

func (o *EnvironmentCapabilities) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasGetcanUseUniversalCapture

func (o *EnvironmentCapabilities) HasGetcanUseUniversalCapture() bool

HasGetcanUseUniversalCapture returns a boolean if a field has been set.

func (*EnvironmentCapabilities) HasLicenseQuantities

func (o *EnvironmentCapabilities) HasLicenseQuantities() bool

HasLicenseQuantities returns a boolean if a field has been set.

func (o *EnvironmentCapabilities) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (EnvironmentCapabilities) LogValue

func (o EnvironmentCapabilities) LogValue() slog.Value

func (EnvironmentCapabilities) MarshalJSON

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

func (*EnvironmentCapabilities) SetCanAddResources

func (o *EnvironmentCapabilities) SetCanAddResources(v bool)

SetCanAddResources gets a reference to the given bool and assigns it to the CanAddResources field.

func (*EnvironmentCapabilities) SetCanAssignCustomRolesEverywhere

func (o *EnvironmentCapabilities) SetCanAssignCustomRolesEverywhere(v bool)

SetCanAssignCustomRolesEverywhere gets a reference to the given bool and assigns it to the CanAssignCustomRolesEverywhere field.

func (*EnvironmentCapabilities) SetCanAssignUsersRoles

func (o *EnvironmentCapabilities) SetCanAssignUsersRoles(v bool)

SetCanAssignUsersRoles gets a reference to the given bool and assigns it to the CanAssignUsersRoles field.

func (*EnvironmentCapabilities) SetCanContactSupport

func (o *EnvironmentCapabilities) SetCanContactSupport(v bool)

SetCanContactSupport gets a reference to the given bool and assigns it to the CanContactSupport field.

func (*EnvironmentCapabilities) SetCanCreateConnections

func (o *EnvironmentCapabilities) SetCanCreateConnections(v bool)

SetCanCreateConnections gets a reference to the given bool and assigns it to the CanCreateConnections field.

func (*EnvironmentCapabilities) SetCanCreateCustomDomain

func (o *EnvironmentCapabilities) SetCanCreateCustomDomain(v bool)

SetCanCreateCustomDomain gets a reference to the given bool and assigns it to the CanCreateCustomDomain field.

func (*EnvironmentCapabilities) SetCanPromoteToProd

func (o *EnvironmentCapabilities) SetCanPromoteToProd(v bool)

SetCanPromoteToProd gets a reference to the given bool and assigns it to the CanPromoteToProd field.

func (*EnvironmentCapabilities) SetCanSendMfaNotificationsOutsideWhitelist

func (o *EnvironmentCapabilities) SetCanSendMfaNotificationsOutsideWhitelist(v bool)

SetCanSendMfaNotificationsOutsideWhitelist gets a reference to the given bool and assigns it to the CanSendMfaNotificationsOutsideWhitelist field.

func (*EnvironmentCapabilities) SetCanSendPasswordManagementNotifications

func (o *EnvironmentCapabilities) SetCanSendPasswordManagementNotifications(v bool)

SetCanSendPasswordManagementNotifications gets a reference to the given bool and assigns it to the CanSendPasswordManagementNotifications field.

func (*EnvironmentCapabilities) SetCanSendVerificationFlowNotifications

func (o *EnvironmentCapabilities) SetCanSendVerificationFlowNotifications(v bool)

SetCanSendVerificationFlowNotifications gets a reference to the given bool and assigns it to the CanSendVerificationFlowNotifications field.

func (*EnvironmentCapabilities) SetCanUseAadhaar

func (o *EnvironmentCapabilities) SetCanUseAadhaar(v bool)

SetCanUseAadhaar gets a reference to the given bool and assigns it to the CanUseAadhaar field.

func (*EnvironmentCapabilities) SetCanUseAamva

func (o *EnvironmentCapabilities) SetCanUseAamva(v bool)

SetCanUseAamva gets a reference to the given bool and assigns it to the CanUseAamva field.

func (*EnvironmentCapabilities) SetCanUseAccountOwnership

func (o *EnvironmentCapabilities) SetCanUseAccountOwnership(v bool)

SetCanUseAccountOwnership gets a reference to the given bool and assigns it to the CanUseAccountOwnership field.

func (*EnvironmentCapabilities) SetCanUseAccountProtection

func (o *EnvironmentCapabilities) SetCanUseAccountProtection(v bool)

SetCanUseAccountProtection gets a reference to the given bool and assigns it to the CanUseAccountProtection field.

func (*EnvironmentCapabilities) SetCanUseAccountTakeoverDetection

func (o *EnvironmentCapabilities) SetCanUseAccountTakeoverDetection(v bool)

SetCanUseAccountTakeoverDetection gets a reference to the given bool and assigns it to the CanUseAccountTakeoverDetection field.

func (*EnvironmentCapabilities) SetCanUseApiAccessManagement

func (o *EnvironmentCapabilities) SetCanUseApiAccessManagement(v bool)

SetCanUseApiAccessManagement gets a reference to the given bool and assigns it to the CanUseApiAccessManagement field.

func (*EnvironmentCapabilities) SetCanUseApplicationPermissions

func (o *EnvironmentCapabilities) SetCanUseApplicationPermissions(v bool)

SetCanUseApplicationPermissions gets a reference to the given bool and assigns it to the CanUseApplicationPermissions field.

func (*EnvironmentCapabilities) SetCanUseBotMaliciousDeviceDetection

func (o *EnvironmentCapabilities) SetCanUseBotMaliciousDeviceDetection(v bool)

SetCanUseBotMaliciousDeviceDetection gets a reference to the given bool and assigns it to the CanUseBotMaliciousDeviceDetection field.

func (*EnvironmentCapabilities) SetCanUseCredentialSharingDetection

func (o *EnvironmentCapabilities) SetCanUseCredentialSharingDetection(v bool)

SetCanUseCredentialSharingDetection gets a reference to the given bool and assigns it to the CanUseCredentialSharingDetection field.

func (*EnvironmentCapabilities) SetCanUseCredentials

func (o *EnvironmentCapabilities) SetCanUseCredentials(v bool)

SetCanUseCredentials gets a reference to the given bool and assigns it to the CanUseCredentials field.

func (*EnvironmentCapabilities) SetCanUseCredentialsPushNotifications

func (o *EnvironmentCapabilities) SetCanUseCredentialsPushNotifications(v bool)

SetCanUseCredentialsPushNotifications gets a reference to the given bool and assigns it to the CanUseCredentialsPushNotifications field.

func (*EnvironmentCapabilities) SetCanUseCustomSchema

func (o *EnvironmentCapabilities) SetCanUseCustomSchema(v bool)

SetCanUseCustomSchema gets a reference to the given bool and assigns it to the CanUseCustomSchema field.

func (*EnvironmentCapabilities) SetCanUseDaVinciAdminPortal

func (o *EnvironmentCapabilities) SetCanUseDaVinciAdminPortal(v bool)

SetCanUseDaVinciAdminPortal gets a reference to the given bool and assigns it to the CanUseDaVinciAdminPortal field.

func (*EnvironmentCapabilities) SetCanUseDataAnalyticsSupport

func (o *EnvironmentCapabilities) SetCanUseDataAnalyticsSupport(v bool)

SetCanUseDataAnalyticsSupport gets a reference to the given bool and assigns it to the CanUseDataAnalyticsSupport field.

func (*EnvironmentCapabilities) SetCanUseDataBasedVerifications

func (o *EnvironmentCapabilities) SetCanUseDataBasedVerifications(v bool)

SetCanUseDataBasedVerifications gets a reference to the given bool and assigns it to the CanUseDataBasedVerifications field.

func (*EnvironmentCapabilities) SetCanUseDigitalVerifications

func (o *EnvironmentCapabilities) SetCanUseDigitalVerifications(v bool)

SetCanUseDigitalVerifications gets a reference to the given bool and assigns it to the CanUseDigitalVerifications field.

func (*EnvironmentCapabilities) SetCanUseDocumentMatch

func (o *EnvironmentCapabilities) SetCanUseDocumentMatch(v bool)

SetCanUseDocumentMatch gets a reference to the given bool and assigns it to the CanUseDocumentMatch field.

func (*EnvironmentCapabilities) SetCanUseDynamicAuthorization

func (o *EnvironmentCapabilities) SetCanUseDynamicAuthorization(v bool)

SetCanUseDynamicAuthorization gets a reference to the given bool and assigns it to the CanUseDynamicAuthorization field.

func (*EnvironmentCapabilities) SetCanUseEditNotificationTemplate

func (o *EnvironmentCapabilities) SetCanUseEditNotificationTemplate(v bool)

SetCanUseEditNotificationTemplate gets a reference to the given bool and assigns it to the CanUseEditNotificationTemplate field.

func (*EnvironmentCapabilities) SetCanUseEmailOtp

func (o *EnvironmentCapabilities) SetCanUseEmailOtp(v bool)

SetCanUseEmailOtp gets a reference to the given bool and assigns it to the CanUseEmailOtp field.

func (*EnvironmentCapabilities) SetCanUseFaceMatch

func (o *EnvironmentCapabilities) SetCanUseFaceMatch(v bool)

SetCanUseFaceMatch gets a reference to the given bool and assigns it to the CanUseFaceMatch field.

func (*EnvironmentCapabilities) SetCanUseFraudDataEnrichment

func (o *EnvironmentCapabilities) SetCanUseFraudDataEnrichment(v bool)

SetCanUseFraudDataEnrichment gets a reference to the given bool and assigns it to the CanUseFraudDataEnrichment field.

func (*EnvironmentCapabilities) SetCanUseIdentities

func (o *EnvironmentCapabilities) SetCanUseIdentities(v bool)

SetCanUseIdentities gets a reference to the given bool and assigns it to the CanUseIdentities field.

func (*EnvironmentCapabilities) SetCanUseIdentityProviders

func (o *EnvironmentCapabilities) SetCanUseIdentityProviders(v bool)

SetCanUseIdentityProviders gets a reference to the given bool and assigns it to the CanUseIdentityProviders field.

func (*EnvironmentCapabilities) SetCanUseInboundProvisioning

func (o *EnvironmentCapabilities) SetCanUseInboundProvisioning(v bool)

SetCanUseInboundProvisioning gets a reference to the given bool and assigns it to the CanUseInboundProvisioning field.

func (*EnvironmentCapabilities) SetCanUseIntelligence

func (o *EnvironmentCapabilities) SetCanUseIntelligence(v bool)

SetCanUseIntelligence gets a reference to the given bool and assigns it to the CanUseIntelligence field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceAdvancedPredictors

func (o *EnvironmentCapabilities) SetCanUseIntelligenceAdvancedPredictors(v bool)

SetCanUseIntelligenceAdvancedPredictors gets a reference to the given bool and assigns it to the CanUseIntelligenceAdvancedPredictors field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceAnonymousNetworkDetection

func (o *EnvironmentCapabilities) SetCanUseIntelligenceAnonymousNetworkDetection(v bool)

SetCanUseIntelligenceAnonymousNetworkDetection gets a reference to the given bool and assigns it to the CanUseIntelligenceAnonymousNetworkDetection field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceDataConsent

func (o *EnvironmentCapabilities) SetCanUseIntelligenceDataConsent(v bool)

SetCanUseIntelligenceDataConsent gets a reference to the given bool and assigns it to the CanUseIntelligenceDataConsent field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceEditPolicyScores

func (o *EnvironmentCapabilities) SetCanUseIntelligenceEditPolicyScores(v bool)

SetCanUseIntelligenceEditPolicyScores gets a reference to the given bool and assigns it to the CanUseIntelligenceEditPolicyScores field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceGeoVelocity

func (o *EnvironmentCapabilities) SetCanUseIntelligenceGeoVelocity(v bool)

SetCanUseIntelligenceGeoVelocity gets a reference to the given bool and assigns it to the CanUseIntelligenceGeoVelocity field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceLastTransactionOlderThan

func (o *EnvironmentCapabilities) SetCanUseIntelligenceLastTransactionOlderThan(v bool)

SetCanUseIntelligenceLastTransactionOlderThan gets a reference to the given bool and assigns it to the CanUseIntelligenceLastTransactionOlderThan field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceLimitedCompositePredictor

func (o *EnvironmentCapabilities) SetCanUseIntelligenceLimitedCompositePredictor(v bool)

SetCanUseIntelligenceLimitedCompositePredictor gets a reference to the given bool and assigns it to the CanUseIntelligenceLimitedCompositePredictor field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceNewDevicePredictor

func (o *EnvironmentCapabilities) SetCanUseIntelligenceNewDevicePredictor(v bool)

SetCanUseIntelligenceNewDevicePredictor gets a reference to the given bool and assigns it to the CanUseIntelligenceNewDevicePredictor field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceProtect

func (o *EnvironmentCapabilities) SetCanUseIntelligenceProtect(v bool)

SetCanUseIntelligenceProtect gets a reference to the given bool and assigns it to the CanUseIntelligenceProtect field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceReputation

func (o *EnvironmentCapabilities) SetCanUseIntelligenceReputation(v bool)

SetCanUseIntelligenceReputation gets a reference to the given bool and assigns it to the CanUseIntelligenceReputation field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceRisk

func (o *EnvironmentCapabilities) SetCanUseIntelligenceRisk(v bool)

SetCanUseIntelligenceRisk gets a reference to the given bool and assigns it to the CanUseIntelligenceRisk field.

func (*EnvironmentCapabilities) SetCanUseIntelligenceTrustDevicePredictor

func (o *EnvironmentCapabilities) SetCanUseIntelligenceTrustDevicePredictor(v bool)

SetCanUseIntelligenceTrustDevicePredictor gets a reference to the given bool and assigns it to the CanUseIntelligenceTrustDevicePredictor field.

func (*EnvironmentCapabilities) SetCanUseKerberosGateway

func (o *EnvironmentCapabilities) SetCanUseKerberosGateway(v bool)

SetCanUseKerberosGateway gets a reference to the given bool and assigns it to the CanUseKerberosGateway field.

func (*EnvironmentCapabilities) SetCanUseLdapGateway

func (o *EnvironmentCapabilities) SetCanUseLdapGateway(v bool)

SetCanUseLdapGateway gets a reference to the given bool and assigns it to the CanUseLdapGateway field.

func (*EnvironmentCapabilities) SetCanUseManualIDStepUpInspection

func (o *EnvironmentCapabilities) SetCanUseManualIDStepUpInspection(v bool)

SetCanUseManualIDStepUpInspection gets a reference to the given bool and assigns it to the CanUseManualIDStepUpInspection field.

func (*EnvironmentCapabilities) SetCanUseManualIdInspection

func (o *EnvironmentCapabilities) SetCanUseManualIdInspection(v bool)

SetCanUseManualIdInspection gets a reference to the given bool and assigns it to the CanUseManualIdInspection field.

func (*EnvironmentCapabilities) SetCanUseMfa

func (o *EnvironmentCapabilities) SetCanUseMfa(v bool)

SetCanUseMfa gets a reference to the given bool and assigns it to the CanUseMfa field.

func (*EnvironmentCapabilities) SetCanUseMfaFido2Devices

func (o *EnvironmentCapabilities) SetCanUseMfaFido2Devices(v bool)

SetCanUseMfaFido2Devices gets a reference to the given bool and assigns it to the CanUseMfaFido2Devices field.

func (*EnvironmentCapabilities) SetCanUseMfaPushNotifications

func (o *EnvironmentCapabilities) SetCanUseMfaPushNotifications(v bool)

SetCanUseMfaPushNotifications gets a reference to the given bool and assigns it to the CanUseMfaPushNotifications field.

func (*EnvironmentCapabilities) SetCanUseMfaVoiceOtp

func (o *EnvironmentCapabilities) SetCanUseMfaVoiceOtp(v bool)

SetCanUseMfaVoiceOtp gets a reference to the given bool and assigns it to the CanUseMfaVoiceOtp field.

func (*EnvironmentCapabilities) SetCanUseMyAccount

func (o *EnvironmentCapabilities) SetCanUseMyAccount(v bool)

SetCanUseMyAccount gets a reference to the given bool and assigns it to the CanUseMyAccount field.

func (*EnvironmentCapabilities) SetCanUseNewAccountFraudDetection

func (o *EnvironmentCapabilities) SetCanUseNewAccountFraudDetection(v bool)

SetCanUseNewAccountFraudDetection gets a reference to the given bool and assigns it to the CanUseNewAccountFraudDetection field.

func (*EnvironmentCapabilities) SetCanUseOATHToken

func (o *EnvironmentCapabilities) SetCanUseOATHToken(v bool)

SetCanUseOATHToken gets a reference to the given bool and assigns it to the CanUseOATHToken field.

func (*EnvironmentCapabilities) SetCanUseOrchestration

func (o *EnvironmentCapabilities) SetCanUseOrchestration(v bool)

SetCanUseOrchestration gets a reference to the given bool and assigns it to the CanUseOrchestration field.

func (*EnvironmentCapabilities) SetCanUsePasswordManagement

func (o *EnvironmentCapabilities) SetCanUsePasswordManagement(v bool)

SetCanUsePasswordManagement gets a reference to the given bool and assigns it to the CanUsePasswordManagement field.

func (*EnvironmentCapabilities) SetCanUsePasswordOnlyAuthentication

func (o *EnvironmentCapabilities) SetCanUsePasswordOnlyAuthentication(v bool)

SetCanUsePasswordOnlyAuthentication gets a reference to the given bool and assigns it to the CanUsePasswordOnlyAuthentication field.

func (*EnvironmentCapabilities) SetCanUsePasswordPolicy

func (o *EnvironmentCapabilities) SetCanUsePasswordPolicy(v bool)

SetCanUsePasswordPolicy gets a reference to the given bool and assigns it to the CanUsePasswordPolicy field.

func (*EnvironmentCapabilities) SetCanUsePingIDApp

func (o *EnvironmentCapabilities) SetCanUsePingIDApp(v bool)

SetCanUsePingIDApp gets a reference to the given bool and assigns it to the CanUsePingIDApp field.

func (*EnvironmentCapabilities) SetCanUsePingSmsAccount

func (o *EnvironmentCapabilities) SetCanUsePingSmsAccount(v bool)

SetCanUsePingSmsAccount gets a reference to the given bool and assigns it to the CanUsePingSmsAccount field.

func (*EnvironmentCapabilities) SetCanUsePlatform

func (o *EnvironmentCapabilities) SetCanUsePlatform(v bool)

SetCanUsePlatform gets a reference to the given bool and assigns it to the CanUsePlatform field.

func (*EnvironmentCapabilities) SetCanUseProtectTransactions

func (o *EnvironmentCapabilities) SetCanUseProtectTransactions(v bool)

SetCanUseProtectTransactions gets a reference to the given bool and assigns it to the CanUseProtectTransactions field.

func (*EnvironmentCapabilities) SetCanUseProvisioning

func (o *EnvironmentCapabilities) SetCanUseProvisioning(v bool)

SetCanUseProvisioning gets a reference to the given bool and assigns it to the CanUseProvisioning field.

func (*EnvironmentCapabilities) SetCanUseRadiusGateway

func (o *EnvironmentCapabilities) SetCanUseRadiusGateway(v bool)

SetCanUseRadiusGateway gets a reference to the given bool and assigns it to the CanUseRadiusGateway field.

func (*EnvironmentCapabilities) SetCanUseSmsOtp

func (o *EnvironmentCapabilities) SetCanUseSmsOtp(v bool)

SetCanUseSmsOtp gets a reference to the given bool and assigns it to the CanUseSmsOtp field.

func (*EnvironmentCapabilities) SetCanUseTotp

func (o *EnvironmentCapabilities) SetCanUseTotp(v bool)

SetCanUseTotp gets a reference to the given bool and assigns it to the CanUseTotp field.

func (*EnvironmentCapabilities) SetCanUseUniversalDeviceId

func (o *EnvironmentCapabilities) SetCanUseUniversalDeviceId(v bool)

SetCanUseUniversalDeviceId gets a reference to the given bool and assigns it to the CanUseUniversalDeviceId field.

func (*EnvironmentCapabilities) SetCanUseVerificationFlow

func (o *EnvironmentCapabilities) SetCanUseVerificationFlow(v bool)

SetCanUseVerificationFlow gets a reference to the given bool and assigns it to the CanUseVerificationFlow field.

func (*EnvironmentCapabilities) SetCanUseVerify

func (o *EnvironmentCapabilities) SetCanUseVerify(v bool)

SetCanUseVerify gets a reference to the given bool and assigns it to the CanUseVerify field.

func (*EnvironmentCapabilities) SetCanUseVerifyPushNotifications

func (o *EnvironmentCapabilities) SetCanUseVerifyPushNotifications(v bool)

SetCanUseVerifyPushNotifications gets a reference to the given bool and assigns it to the CanUseVerifyPushNotifications field.

func (*EnvironmentCapabilities) SetCanUseVerifyVoice

func (o *EnvironmentCapabilities) SetCanUseVerifyVoice(v bool)

SetCanUseVerifyVoice gets a reference to the given bool and assigns it to the CanUseVerifyVoice field.

func (*EnvironmentCapabilities) SetCanUseWhatsAppOtp

func (o *EnvironmentCapabilities) SetCanUseWhatsAppOtp(v bool)

SetCanUseWhatsAppOtp gets a reference to the given bool and assigns it to the CanUseWhatsAppOtp field.

func (*EnvironmentCapabilities) SetCanUseWinLogin

func (o *EnvironmentCapabilities) SetCanUseWinLogin(v bool)

SetCanUseWinLogin gets a reference to the given bool and assigns it to the CanUseWinLogin field.

func (*EnvironmentCapabilities) SetCanUseYubikey

func (o *EnvironmentCapabilities) SetCanUseYubikey(v bool)

SetCanUseYubikey gets a reference to the given bool and assigns it to the CanUseYubikey field.

func (*EnvironmentCapabilities) SetCanUsersUpdateSelf

func (o *EnvironmentCapabilities) SetCanUsersUpdateSelf(v bool)

SetCanUsersUpdateSelf gets a reference to the given bool and assigns it to the CanUsersUpdateSelf field.

func (*EnvironmentCapabilities) SetEmbedded

func (o *EnvironmentCapabilities) SetEmbedded(v map[string]map[string]interface{})

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

func (*EnvironmentCapabilities) SetEnvironmentId

func (o *EnvironmentCapabilities) SetEnvironmentId(v uuid.UUID)

SetEnvironmentId gets a reference to the given uuid.UUID and assigns it to the EnvironmentId field.

func (*EnvironmentCapabilities) SetGetcanUseUniversalCapture

func (o *EnvironmentCapabilities) SetGetcanUseUniversalCapture(v bool)

SetGetcanUseUniversalCapture gets a reference to the given bool and assigns it to the GetcanUseUniversalCapture field.

func (*EnvironmentCapabilities) SetLicenseQuantities

func (o *EnvironmentCapabilities) SetLicenseQuantities(v EnvironmentLicenseQuantities)

SetLicenseQuantities gets a reference to the given EnvironmentLicenseQuantities and assigns it to the LicenseQuantities field.

SetLinks gets a reference to the given EnvironmentCapabilitiesLinks and assigns it to the Links field.

func (EnvironmentCapabilities) ToMap

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

func (*EnvironmentCapabilities) UnmarshalJSON

func (o *EnvironmentCapabilities) UnmarshalJSON(data []byte) (err error)
type EnvironmentCapabilitiesLinks struct {
	Self                 *JSONHALLink `json:"self,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentCapabilitiesLinks struct for EnvironmentCapabilitiesLinks

func NewEnvironmentCapabilitiesLinks() *EnvironmentCapabilitiesLinks

NewEnvironmentCapabilitiesLinks instantiates a new EnvironmentCapabilitiesLinks 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 NewEnvironmentCapabilitiesLinksWithDefaults

func NewEnvironmentCapabilitiesLinksWithDefaults() *EnvironmentCapabilitiesLinks

NewEnvironmentCapabilitiesLinksWithDefaults instantiates a new EnvironmentCapabilitiesLinks 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 (*EnvironmentCapabilitiesLinks) GetSelf

GetSelf returns the Self field value if set, zero value otherwise.

func (*EnvironmentCapabilitiesLinks) GetSelfOk

func (o *EnvironmentCapabilitiesLinks) GetSelfOk() (*JSONHALLink, bool)

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

func (*EnvironmentCapabilitiesLinks) HasSelf

func (o *EnvironmentCapabilitiesLinks) HasSelf() bool

HasSelf returns a boolean if a field has been set.

func (EnvironmentCapabilitiesLinks) LogValue

func (EnvironmentCapabilitiesLinks) MarshalJSON

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

func (*EnvironmentCapabilitiesLinks) SetSelf

SetSelf gets a reference to the given JSONHALLink and assigns it to the Self field.

func (EnvironmentCapabilitiesLinks) ToMap

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

func (*EnvironmentCapabilitiesLinks) UnmarshalJSON

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

type EnvironmentCreateRequest

type EnvironmentCreateRequest struct {
	Name                 string                      `json:"name"`
	Region               EnvironmentRegionCode       `json:"region"`
	Type                 EnvironmentTypeValue        `json:"type"`
	License              EnvironmentLicense          `json:"license"`
	BillOfMaterials      *EnvironmentBillOfMaterials `json:"billOfMaterials,omitempty"`
	Description          *string                     `json:"description,omitempty"`
	Icon                 *string                     `json:"icon,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentCreateRequest struct for EnvironmentCreateRequest

func NewEnvironmentCreateRequest

func NewEnvironmentCreateRequest(name string, region EnvironmentRegionCode, type_ EnvironmentTypeValue, license EnvironmentLicense) *EnvironmentCreateRequest

NewEnvironmentCreateRequest instantiates a new EnvironmentCreateRequest 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 NewEnvironmentCreateRequestWithDefaults

func NewEnvironmentCreateRequestWithDefaults() *EnvironmentCreateRequest

NewEnvironmentCreateRequestWithDefaults instantiates a new EnvironmentCreateRequest 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 (*EnvironmentCreateRequest) GetBillOfMaterials

func (o *EnvironmentCreateRequest) GetBillOfMaterials() EnvironmentBillOfMaterials

GetBillOfMaterials returns the BillOfMaterials field value if set, zero value otherwise.

func (*EnvironmentCreateRequest) GetBillOfMaterialsOk

func (o *EnvironmentCreateRequest) GetBillOfMaterialsOk() (*EnvironmentBillOfMaterials, bool)

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

func (*EnvironmentCreateRequest) GetDescription

func (o *EnvironmentCreateRequest) GetDescription() string

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

func (*EnvironmentCreateRequest) GetDescriptionOk

func (o *EnvironmentCreateRequest) 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 (*EnvironmentCreateRequest) GetIcon

func (o *EnvironmentCreateRequest) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*EnvironmentCreateRequest) GetIconOk

func (o *EnvironmentCreateRequest) GetIconOk() (*string, bool)

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

func (*EnvironmentCreateRequest) GetLicense

GetLicense returns the License field value

func (*EnvironmentCreateRequest) GetLicenseOk

func (o *EnvironmentCreateRequest) GetLicenseOk() (*EnvironmentLicense, bool)

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

func (*EnvironmentCreateRequest) GetName

func (o *EnvironmentCreateRequest) GetName() string

GetName returns the Name field value

func (*EnvironmentCreateRequest) GetNameOk

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

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

func (*EnvironmentCreateRequest) GetRegion

GetRegion returns the Region field value

func (*EnvironmentCreateRequest) GetRegionOk

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

func (*EnvironmentCreateRequest) GetType

GetType returns the Type field value

func (*EnvironmentCreateRequest) GetTypeOk

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

func (*EnvironmentCreateRequest) HasBillOfMaterials

func (o *EnvironmentCreateRequest) HasBillOfMaterials() bool

HasBillOfMaterials returns a boolean if a field has been set.

func (*EnvironmentCreateRequest) HasDescription

func (o *EnvironmentCreateRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EnvironmentCreateRequest) HasIcon

func (o *EnvironmentCreateRequest) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (EnvironmentCreateRequest) LogValue

func (o EnvironmentCreateRequest) LogValue() slog.Value

func (EnvironmentCreateRequest) MarshalJSON

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

func (*EnvironmentCreateRequest) SetBillOfMaterials

func (o *EnvironmentCreateRequest) SetBillOfMaterials(v EnvironmentBillOfMaterials)

SetBillOfMaterials gets a reference to the given EnvironmentBillOfMaterials and assigns it to the BillOfMaterials field.

func (*EnvironmentCreateRequest) SetDescription

func (o *EnvironmentCreateRequest) SetDescription(v string)

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

func (*EnvironmentCreateRequest) SetIcon

func (o *EnvironmentCreateRequest) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*EnvironmentCreateRequest) SetLicense

SetLicense sets field value

func (*EnvironmentCreateRequest) SetName

func (o *EnvironmentCreateRequest) SetName(v string)

SetName sets field value

func (*EnvironmentCreateRequest) SetRegion

SetRegion sets field value

func (*EnvironmentCreateRequest) SetType

SetType sets field value

func (EnvironmentCreateRequest) ToMap

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

func (*EnvironmentCreateRequest) UnmarshalJSON

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

type EnvironmentLicense

type EnvironmentLicense struct {
	Id                   uuid.UUID `json:"id"`
	Package              *string   `json:"package,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentLicense struct for EnvironmentLicense

func NewEnvironmentLicense

func NewEnvironmentLicense(id uuid.UUID) *EnvironmentLicense

NewEnvironmentLicense instantiates a new EnvironmentLicense 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 NewEnvironmentLicenseWithDefaults

func NewEnvironmentLicenseWithDefaults() *EnvironmentLicense

NewEnvironmentLicenseWithDefaults instantiates a new EnvironmentLicense 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 (*EnvironmentLicense) GetId

func (o *EnvironmentLicense) GetId() uuid.UUID

GetId returns the Id field value

func (*EnvironmentLicense) GetIdOk

func (o *EnvironmentLicense) GetIdOk() (*uuid.UUID, bool)

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

func (*EnvironmentLicense) GetPackage

func (o *EnvironmentLicense) GetPackage() string

GetPackage returns the Package field value if set, zero value otherwise.

func (*EnvironmentLicense) GetPackageOk

func (o *EnvironmentLicense) GetPackageOk() (*string, bool)

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

func (*EnvironmentLicense) HasPackage

func (o *EnvironmentLicense) HasPackage() bool

HasPackage returns a boolean if a field has been set.

func (EnvironmentLicense) LogValue

func (o EnvironmentLicense) LogValue() slog.Value

func (EnvironmentLicense) MarshalJSON

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

func (*EnvironmentLicense) SetId

func (o *EnvironmentLicense) SetId(v uuid.UUID)

SetId sets field value

func (*EnvironmentLicense) SetPackage

func (o *EnvironmentLicense) SetPackage(v string)

SetPackage gets a reference to the given string and assigns it to the Package field.

func (EnvironmentLicense) ToMap

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

func (*EnvironmentLicense) UnmarshalJSON

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

type EnvironmentLicenseQuantities

type EnvironmentLicenseQuantities struct {
	NumberOfAadhaar           *int64               `json:"numberOfAadhaar,omitempty"`
	NumberOfAccountOwnership  *int64               `json:"numberOfAccountOwnership,omitempty"`
	NumberOfDataVerifications *int64               `json:"numberOfDataVerifications,omitempty"`
	RlgAnalyticsRpm           *EnvironmentAPILimit `json:"rlgAnalyticsRpm,omitempty"`
	RlgAppRegRpm              *EnvironmentAPILimit `json:"rlgAppRegRpm,omitempty"`
	RlgAuditRps               *EnvironmentAPILimit `json:"rlgAuditRps,omitempty"`
	RlgAuthnRps               *EnvironmentAPILimit `json:"rlgAuthnRps,omitempty"`
	RlgAuthzRps               *EnvironmentAPILimit `json:"rlgAuthzRps,omitempty"`
	RlgCatchAllRps            *EnvironmentAPILimit `json:"rlgCatchAllRps,omitempty"`
	RlgConfigRpm              *EnvironmentAPILimit `json:"rlgConfigRpm,omitempty"`
	RlgCredRpm                *EnvironmentAPILimit `json:"rlgCredRpm,omitempty"`
	RlgDirAccessRps           *EnvironmentAPILimit `json:"rlgDirAccessRps,omitempty"`
	RlgDirBulkRps             *EnvironmentAPILimit `json:"rlgDirBulkRps,omitempty"`
	RlgDirFixedRps            *EnvironmentAPILimit `json:"rlgDirFixedRps,omitempty"`
	RlgDirWriteRps            *EnvironmentAPILimit `json:"rlgDirWriteRps,omitempty"`
	RlgDvFlowCallbackRps      *EnvironmentAPILimit `json:"rlgDvFlowCallbackRps,omitempty"`
	RlgDvFlowExecRps          *EnvironmentAPILimit `json:"rlgDvFlowExecRps,omitempty"`
	RlgDvFlowStartRps         *EnvironmentAPILimit `json:"rlgDvFlowStartRps,omitempty"`
	RlgMfaFixedRps            *EnvironmentAPILimit `json:"rlgMfaFixedRps,omitempty"`
	RlgMfaPollingRps          *EnvironmentAPILimit `json:"rlgMfaPollingRps,omitempty"`
	RlgMfaRps                 *EnvironmentAPILimit `json:"rlgMfaRps,omitempty"`
	RlgRiskEvalsRps           *EnvironmentAPILimit `json:"rlgRiskEvalsRps,omitempty"`
	RlgTokenCheckRps          *EnvironmentAPILimit `json:"rlgTokenCheckRps,omitempty"`
	RlgVerifyRpm              *EnvironmentAPILimit `json:"rlgVerifyRpm,omitempty"`
	AdditionalProperties      map[string]interface{}
}

EnvironmentLicenseQuantities struct for EnvironmentLicenseQuantities

func NewEnvironmentLicenseQuantities

func NewEnvironmentLicenseQuantities() *EnvironmentLicenseQuantities

NewEnvironmentLicenseQuantities instantiates a new EnvironmentLicenseQuantities 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 NewEnvironmentLicenseQuantitiesWithDefaults

func NewEnvironmentLicenseQuantitiesWithDefaults() *EnvironmentLicenseQuantities

NewEnvironmentLicenseQuantitiesWithDefaults instantiates a new EnvironmentLicenseQuantities 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 (*EnvironmentLicenseQuantities) GetNumberOfAadhaar

func (o *EnvironmentLicenseQuantities) GetNumberOfAadhaar() int64

GetNumberOfAadhaar returns the NumberOfAadhaar field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetNumberOfAadhaarOk

func (o *EnvironmentLicenseQuantities) GetNumberOfAadhaarOk() (*int64, bool)

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

func (*EnvironmentLicenseQuantities) GetNumberOfAccountOwnership

func (o *EnvironmentLicenseQuantities) GetNumberOfAccountOwnership() int64

GetNumberOfAccountOwnership returns the NumberOfAccountOwnership field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetNumberOfAccountOwnershipOk

func (o *EnvironmentLicenseQuantities) GetNumberOfAccountOwnershipOk() (*int64, bool)

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

func (*EnvironmentLicenseQuantities) GetNumberOfDataVerifications

func (o *EnvironmentLicenseQuantities) GetNumberOfDataVerifications() int64

GetNumberOfDataVerifications returns the NumberOfDataVerifications field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetNumberOfDataVerificationsOk

func (o *EnvironmentLicenseQuantities) GetNumberOfDataVerificationsOk() (*int64, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgAnalyticsRpm

func (o *EnvironmentLicenseQuantities) GetRlgAnalyticsRpm() EnvironmentAPILimit

GetRlgAnalyticsRpm returns the RlgAnalyticsRpm field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgAnalyticsRpmOk

func (o *EnvironmentLicenseQuantities) GetRlgAnalyticsRpmOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgAppRegRpm

GetRlgAppRegRpm returns the RlgAppRegRpm field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgAppRegRpmOk

func (o *EnvironmentLicenseQuantities) GetRlgAppRegRpmOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgAuditRps

GetRlgAuditRps returns the RlgAuditRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgAuditRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgAuditRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgAuthnRps

GetRlgAuthnRps returns the RlgAuthnRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgAuthnRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgAuthnRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgAuthzRps

GetRlgAuthzRps returns the RlgAuthzRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgAuthzRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgAuthzRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgCatchAllRps

func (o *EnvironmentLicenseQuantities) GetRlgCatchAllRps() EnvironmentAPILimit

GetRlgCatchAllRps returns the RlgCatchAllRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgCatchAllRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgCatchAllRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgConfigRpm

GetRlgConfigRpm returns the RlgConfigRpm field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgConfigRpmOk

func (o *EnvironmentLicenseQuantities) GetRlgConfigRpmOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgCredRpm

GetRlgCredRpm returns the RlgCredRpm field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgCredRpmOk

func (o *EnvironmentLicenseQuantities) GetRlgCredRpmOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgDirAccessRps

func (o *EnvironmentLicenseQuantities) GetRlgDirAccessRps() EnvironmentAPILimit

GetRlgDirAccessRps returns the RlgDirAccessRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgDirAccessRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgDirAccessRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgDirBulkRps

func (o *EnvironmentLicenseQuantities) GetRlgDirBulkRps() EnvironmentAPILimit

GetRlgDirBulkRps returns the RlgDirBulkRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgDirBulkRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgDirBulkRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgDirFixedRps

func (o *EnvironmentLicenseQuantities) GetRlgDirFixedRps() EnvironmentAPILimit

GetRlgDirFixedRps returns the RlgDirFixedRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgDirFixedRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgDirFixedRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgDirWriteRps

func (o *EnvironmentLicenseQuantities) GetRlgDirWriteRps() EnvironmentAPILimit

GetRlgDirWriteRps returns the RlgDirWriteRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgDirWriteRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgDirWriteRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgDvFlowCallbackRps

func (o *EnvironmentLicenseQuantities) GetRlgDvFlowCallbackRps() EnvironmentAPILimit

GetRlgDvFlowCallbackRps returns the RlgDvFlowCallbackRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgDvFlowCallbackRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgDvFlowCallbackRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgDvFlowExecRps

func (o *EnvironmentLicenseQuantities) GetRlgDvFlowExecRps() EnvironmentAPILimit

GetRlgDvFlowExecRps returns the RlgDvFlowExecRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgDvFlowExecRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgDvFlowExecRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgDvFlowStartRps

func (o *EnvironmentLicenseQuantities) GetRlgDvFlowStartRps() EnvironmentAPILimit

GetRlgDvFlowStartRps returns the RlgDvFlowStartRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgDvFlowStartRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgDvFlowStartRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgMfaFixedRps

func (o *EnvironmentLicenseQuantities) GetRlgMfaFixedRps() EnvironmentAPILimit

GetRlgMfaFixedRps returns the RlgMfaFixedRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgMfaFixedRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgMfaFixedRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgMfaPollingRps

func (o *EnvironmentLicenseQuantities) GetRlgMfaPollingRps() EnvironmentAPILimit

GetRlgMfaPollingRps returns the RlgMfaPollingRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgMfaPollingRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgMfaPollingRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgMfaRps

GetRlgMfaRps returns the RlgMfaRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgMfaRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgMfaRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgRiskEvalsRps

func (o *EnvironmentLicenseQuantities) GetRlgRiskEvalsRps() EnvironmentAPILimit

GetRlgRiskEvalsRps returns the RlgRiskEvalsRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgRiskEvalsRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgRiskEvalsRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgTokenCheckRps

func (o *EnvironmentLicenseQuantities) GetRlgTokenCheckRps() EnvironmentAPILimit

GetRlgTokenCheckRps returns the RlgTokenCheckRps field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgTokenCheckRpsOk

func (o *EnvironmentLicenseQuantities) GetRlgTokenCheckRpsOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) GetRlgVerifyRpm

GetRlgVerifyRpm returns the RlgVerifyRpm field value if set, zero value otherwise.

func (*EnvironmentLicenseQuantities) GetRlgVerifyRpmOk

func (o *EnvironmentLicenseQuantities) GetRlgVerifyRpmOk() (*EnvironmentAPILimit, bool)

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

func (*EnvironmentLicenseQuantities) HasNumberOfAadhaar

func (o *EnvironmentLicenseQuantities) HasNumberOfAadhaar() bool

HasNumberOfAadhaar returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasNumberOfAccountOwnership

func (o *EnvironmentLicenseQuantities) HasNumberOfAccountOwnership() bool

HasNumberOfAccountOwnership returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasNumberOfDataVerifications

func (o *EnvironmentLicenseQuantities) HasNumberOfDataVerifications() bool

HasNumberOfDataVerifications returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgAnalyticsRpm

func (o *EnvironmentLicenseQuantities) HasRlgAnalyticsRpm() bool

HasRlgAnalyticsRpm returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgAppRegRpm

func (o *EnvironmentLicenseQuantities) HasRlgAppRegRpm() bool

HasRlgAppRegRpm returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgAuditRps

func (o *EnvironmentLicenseQuantities) HasRlgAuditRps() bool

HasRlgAuditRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgAuthnRps

func (o *EnvironmentLicenseQuantities) HasRlgAuthnRps() bool

HasRlgAuthnRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgAuthzRps

func (o *EnvironmentLicenseQuantities) HasRlgAuthzRps() bool

HasRlgAuthzRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgCatchAllRps

func (o *EnvironmentLicenseQuantities) HasRlgCatchAllRps() bool

HasRlgCatchAllRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgConfigRpm

func (o *EnvironmentLicenseQuantities) HasRlgConfigRpm() bool

HasRlgConfigRpm returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgCredRpm

func (o *EnvironmentLicenseQuantities) HasRlgCredRpm() bool

HasRlgCredRpm returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgDirAccessRps

func (o *EnvironmentLicenseQuantities) HasRlgDirAccessRps() bool

HasRlgDirAccessRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgDirBulkRps

func (o *EnvironmentLicenseQuantities) HasRlgDirBulkRps() bool

HasRlgDirBulkRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgDirFixedRps

func (o *EnvironmentLicenseQuantities) HasRlgDirFixedRps() bool

HasRlgDirFixedRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgDirWriteRps

func (o *EnvironmentLicenseQuantities) HasRlgDirWriteRps() bool

HasRlgDirWriteRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgDvFlowCallbackRps

func (o *EnvironmentLicenseQuantities) HasRlgDvFlowCallbackRps() bool

HasRlgDvFlowCallbackRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgDvFlowExecRps

func (o *EnvironmentLicenseQuantities) HasRlgDvFlowExecRps() bool

HasRlgDvFlowExecRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgDvFlowStartRps

func (o *EnvironmentLicenseQuantities) HasRlgDvFlowStartRps() bool

HasRlgDvFlowStartRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgMfaFixedRps

func (o *EnvironmentLicenseQuantities) HasRlgMfaFixedRps() bool

HasRlgMfaFixedRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgMfaPollingRps

func (o *EnvironmentLicenseQuantities) HasRlgMfaPollingRps() bool

HasRlgMfaPollingRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgMfaRps

func (o *EnvironmentLicenseQuantities) HasRlgMfaRps() bool

HasRlgMfaRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgRiskEvalsRps

func (o *EnvironmentLicenseQuantities) HasRlgRiskEvalsRps() bool

HasRlgRiskEvalsRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgTokenCheckRps

func (o *EnvironmentLicenseQuantities) HasRlgTokenCheckRps() bool

HasRlgTokenCheckRps returns a boolean if a field has been set.

func (*EnvironmentLicenseQuantities) HasRlgVerifyRpm

func (o *EnvironmentLicenseQuantities) HasRlgVerifyRpm() bool

HasRlgVerifyRpm returns a boolean if a field has been set.

func (EnvironmentLicenseQuantities) LogValue

func (EnvironmentLicenseQuantities) MarshalJSON

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

func (*EnvironmentLicenseQuantities) SetNumberOfAadhaar

func (o *EnvironmentLicenseQuantities) SetNumberOfAadhaar(v int64)

SetNumberOfAadhaar gets a reference to the given int64 and assigns it to the NumberOfAadhaar field.

func (*EnvironmentLicenseQuantities) SetNumberOfAccountOwnership

func (o *EnvironmentLicenseQuantities) SetNumberOfAccountOwnership(v int64)

SetNumberOfAccountOwnership gets a reference to the given int64 and assigns it to the NumberOfAccountOwnership field.

func (*EnvironmentLicenseQuantities) SetNumberOfDataVerifications

func (o *EnvironmentLicenseQuantities) SetNumberOfDataVerifications(v int64)

SetNumberOfDataVerifications gets a reference to the given int64 and assigns it to the NumberOfDataVerifications field.

func (*EnvironmentLicenseQuantities) SetRlgAnalyticsRpm

func (o *EnvironmentLicenseQuantities) SetRlgAnalyticsRpm(v EnvironmentAPILimit)

SetRlgAnalyticsRpm gets a reference to the given EnvironmentAPILimit and assigns it to the RlgAnalyticsRpm field.

func (*EnvironmentLicenseQuantities) SetRlgAppRegRpm

func (o *EnvironmentLicenseQuantities) SetRlgAppRegRpm(v EnvironmentAPILimit)

SetRlgAppRegRpm gets a reference to the given EnvironmentAPILimit and assigns it to the RlgAppRegRpm field.

func (*EnvironmentLicenseQuantities) SetRlgAuditRps

SetRlgAuditRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgAuditRps field.

func (*EnvironmentLicenseQuantities) SetRlgAuthnRps

SetRlgAuthnRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgAuthnRps field.

func (*EnvironmentLicenseQuantities) SetRlgAuthzRps

SetRlgAuthzRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgAuthzRps field.

func (*EnvironmentLicenseQuantities) SetRlgCatchAllRps

func (o *EnvironmentLicenseQuantities) SetRlgCatchAllRps(v EnvironmentAPILimit)

SetRlgCatchAllRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgCatchAllRps field.

func (*EnvironmentLicenseQuantities) SetRlgConfigRpm

func (o *EnvironmentLicenseQuantities) SetRlgConfigRpm(v EnvironmentAPILimit)

SetRlgConfigRpm gets a reference to the given EnvironmentAPILimit and assigns it to the RlgConfigRpm field.

func (*EnvironmentLicenseQuantities) SetRlgCredRpm

SetRlgCredRpm gets a reference to the given EnvironmentAPILimit and assigns it to the RlgCredRpm field.

func (*EnvironmentLicenseQuantities) SetRlgDirAccessRps

func (o *EnvironmentLicenseQuantities) SetRlgDirAccessRps(v EnvironmentAPILimit)

SetRlgDirAccessRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgDirAccessRps field.

func (*EnvironmentLicenseQuantities) SetRlgDirBulkRps

func (o *EnvironmentLicenseQuantities) SetRlgDirBulkRps(v EnvironmentAPILimit)

SetRlgDirBulkRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgDirBulkRps field.

func (*EnvironmentLicenseQuantities) SetRlgDirFixedRps

func (o *EnvironmentLicenseQuantities) SetRlgDirFixedRps(v EnvironmentAPILimit)

SetRlgDirFixedRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgDirFixedRps field.

func (*EnvironmentLicenseQuantities) SetRlgDirWriteRps

func (o *EnvironmentLicenseQuantities) SetRlgDirWriteRps(v EnvironmentAPILimit)

SetRlgDirWriteRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgDirWriteRps field.

func (*EnvironmentLicenseQuantities) SetRlgDvFlowCallbackRps

func (o *EnvironmentLicenseQuantities) SetRlgDvFlowCallbackRps(v EnvironmentAPILimit)

SetRlgDvFlowCallbackRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgDvFlowCallbackRps field.

func (*EnvironmentLicenseQuantities) SetRlgDvFlowExecRps

func (o *EnvironmentLicenseQuantities) SetRlgDvFlowExecRps(v EnvironmentAPILimit)

SetRlgDvFlowExecRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgDvFlowExecRps field.

func (*EnvironmentLicenseQuantities) SetRlgDvFlowStartRps

func (o *EnvironmentLicenseQuantities) SetRlgDvFlowStartRps(v EnvironmentAPILimit)

SetRlgDvFlowStartRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgDvFlowStartRps field.

func (*EnvironmentLicenseQuantities) SetRlgMfaFixedRps

func (o *EnvironmentLicenseQuantities) SetRlgMfaFixedRps(v EnvironmentAPILimit)

SetRlgMfaFixedRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgMfaFixedRps field.

func (*EnvironmentLicenseQuantities) SetRlgMfaPollingRps

func (o *EnvironmentLicenseQuantities) SetRlgMfaPollingRps(v EnvironmentAPILimit)

SetRlgMfaPollingRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgMfaPollingRps field.

func (*EnvironmentLicenseQuantities) SetRlgMfaRps

SetRlgMfaRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgMfaRps field.

func (*EnvironmentLicenseQuantities) SetRlgRiskEvalsRps

func (o *EnvironmentLicenseQuantities) SetRlgRiskEvalsRps(v EnvironmentAPILimit)

SetRlgRiskEvalsRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgRiskEvalsRps field.

func (*EnvironmentLicenseQuantities) SetRlgTokenCheckRps

func (o *EnvironmentLicenseQuantities) SetRlgTokenCheckRps(v EnvironmentAPILimit)

SetRlgTokenCheckRps gets a reference to the given EnvironmentAPILimit and assigns it to the RlgTokenCheckRps field.

func (*EnvironmentLicenseQuantities) SetRlgVerifyRpm

func (o *EnvironmentLicenseQuantities) SetRlgVerifyRpm(v EnvironmentAPILimit)

SetRlgVerifyRpm gets a reference to the given EnvironmentAPILimit and assigns it to the RlgVerifyRpm field.

func (EnvironmentLicenseQuantities) ToMap

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

func (*EnvironmentLicenseQuantities) UnmarshalJSON

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

type EnvironmentRegionCode

type EnvironmentRegionCode string

EnvironmentRegionCode the model 'EnvironmentRegionCode'

const (
	ENVIRONMENTREGIONCODE_AP EnvironmentRegionCode = "AP"
	ENVIRONMENTREGIONCODE_AU EnvironmentRegionCode = "AU"
	ENVIRONMENTREGIONCODE_CA EnvironmentRegionCode = "CA"
	ENVIRONMENTREGIONCODE_EU EnvironmentRegionCode = "EU"
	ENVIRONMENTREGIONCODE_NA EnvironmentRegionCode = "NA"
	ENVIRONMENTREGIONCODE_SG EnvironmentRegionCode = "SG"
)

List of EnvironmentRegionCode

func NewEnvironmentRegionCodeFromValue

func NewEnvironmentRegionCodeFromValue(v string) (*EnvironmentRegionCode, error)

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

func (EnvironmentRegionCode) IsValid

func (v EnvironmentRegionCode) IsValid() bool

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

func (EnvironmentRegionCode) Ptr

Ptr returns reference to EnvironmentRegionCode value

func (*EnvironmentRegionCode) UnmarshalJSON

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

type EnvironmentReplaceRequest

type EnvironmentReplaceRequest struct {
	Name                 string                                    `json:"name"`
	Region               EnvironmentRegionCode                     `json:"region"`
	Type                 EnvironmentTypeValue                      `json:"type"`
	BillOfMaterials      *EnvironmentBillOfMaterialsReplaceRequest `json:"billOfMaterials,omitempty"`
	Description          *string                                   `json:"description,omitempty"`
	Icon                 *string                                   `json:"icon,omitempty"`
	License              *EnvironmentLicense                       `json:"license,omitempty"`
	Status               *EnvironmentStatusValue                   `json:"status,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentReplaceRequest struct for EnvironmentReplaceRequest

func NewEnvironmentReplaceRequest

func NewEnvironmentReplaceRequest(name string, region EnvironmentRegionCode, type_ EnvironmentTypeValue) *EnvironmentReplaceRequest

NewEnvironmentReplaceRequest instantiates a new EnvironmentReplaceRequest 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 NewEnvironmentReplaceRequestWithDefaults

func NewEnvironmentReplaceRequestWithDefaults() *EnvironmentReplaceRequest

NewEnvironmentReplaceRequestWithDefaults instantiates a new EnvironmentReplaceRequest 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 (*EnvironmentReplaceRequest) GetBillOfMaterials

GetBillOfMaterials returns the BillOfMaterials field value if set, zero value otherwise.

func (*EnvironmentReplaceRequest) GetBillOfMaterialsOk

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

func (*EnvironmentReplaceRequest) GetDescription

func (o *EnvironmentReplaceRequest) GetDescription() string

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

func (*EnvironmentReplaceRequest) GetDescriptionOk

func (o *EnvironmentReplaceRequest) 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 (*EnvironmentReplaceRequest) GetIcon

func (o *EnvironmentReplaceRequest) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*EnvironmentReplaceRequest) GetIconOk

func (o *EnvironmentReplaceRequest) GetIconOk() (*string, bool)

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

func (*EnvironmentReplaceRequest) GetLicense

GetLicense returns the License field value if set, zero value otherwise.

func (*EnvironmentReplaceRequest) GetLicenseOk

func (o *EnvironmentReplaceRequest) GetLicenseOk() (*EnvironmentLicense, bool)

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

func (*EnvironmentReplaceRequest) GetName

func (o *EnvironmentReplaceRequest) GetName() string

GetName returns the Name field value

func (*EnvironmentReplaceRequest) GetNameOk

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

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

func (*EnvironmentReplaceRequest) GetRegion

GetRegion returns the Region field value

func (*EnvironmentReplaceRequest) GetRegionOk

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

func (*EnvironmentReplaceRequest) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*EnvironmentReplaceRequest) GetStatusOk

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

func (*EnvironmentReplaceRequest) GetType

GetType returns the Type field value

func (*EnvironmentReplaceRequest) GetTypeOk

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

func (*EnvironmentReplaceRequest) HasBillOfMaterials

func (o *EnvironmentReplaceRequest) HasBillOfMaterials() bool

HasBillOfMaterials returns a boolean if a field has been set.

func (*EnvironmentReplaceRequest) HasDescription

func (o *EnvironmentReplaceRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EnvironmentReplaceRequest) HasIcon

func (o *EnvironmentReplaceRequest) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*EnvironmentReplaceRequest) HasLicense

func (o *EnvironmentReplaceRequest) HasLicense() bool

HasLicense returns a boolean if a field has been set.

func (*EnvironmentReplaceRequest) HasStatus

func (o *EnvironmentReplaceRequest) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (EnvironmentReplaceRequest) LogValue

func (o EnvironmentReplaceRequest) LogValue() slog.Value

func (EnvironmentReplaceRequest) MarshalJSON

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

func (*EnvironmentReplaceRequest) SetBillOfMaterials

SetBillOfMaterials gets a reference to the given EnvironmentBillOfMaterialsReplaceRequest and assigns it to the BillOfMaterials field.

func (*EnvironmentReplaceRequest) SetDescription

func (o *EnvironmentReplaceRequest) SetDescription(v string)

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

func (*EnvironmentReplaceRequest) SetIcon

func (o *EnvironmentReplaceRequest) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*EnvironmentReplaceRequest) SetLicense

SetLicense gets a reference to the given EnvironmentLicense and assigns it to the License field.

func (*EnvironmentReplaceRequest) SetName

func (o *EnvironmentReplaceRequest) SetName(v string)

SetName sets field value

func (*EnvironmentReplaceRequest) SetRegion

SetRegion sets field value

func (*EnvironmentReplaceRequest) SetStatus

SetStatus gets a reference to the given EnvironmentStatusValue and assigns it to the Status field.

func (*EnvironmentReplaceRequest) SetType

SetType sets field value

func (EnvironmentReplaceRequest) ToMap

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

func (*EnvironmentReplaceRequest) UnmarshalJSON

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

type EnvironmentResponse

type EnvironmentResponse struct {
	Name                    string                            `json:"name"`
	Region                  EnvironmentRegionCode             `json:"region"`
	Type                    EnvironmentTypeValue              `json:"type"`
	CreatedAt               time.Time                         `json:"createdAt"`
	UpdatedAt               time.Time                         `json:"updatedAt"`
	Id                      uuid.UUID                         `json:"id"`
	Organization            ResourceRelationshipReadOnly      `json:"organization"`
	Embedded                map[string]map[string]interface{} `json:"_embedded,omitempty"`
	Links                   *EnvironmentResponseLinks         `json:"_links,omitempty"`
	BillOfMaterials         *EnvironmentBillOfMaterials       `json:"billOfMaterials,omitempty"`
	Description             *string                           `json:"description,omitempty"`
	EnvironmentCapabilities *EnvironmentCapabilities          `json:"environmentCapabilities,omitempty"`
	HardDeleteAllowedAt     *time.Time                        `json:"hardDeleteAllowedAt,omitempty"`
	Icon                    *string                           `json:"icon,omitempty"`
	License                 *EnvironmentLicense               `json:"license,omitempty"`
	PingoneAccountId        *string                           `json:"pingoneAccountId,omitempty"`
	SoftDeletedAt           *time.Time                        `json:"softDeletedAt,omitempty"`
	Status                  *EnvironmentStatusValue           `json:"status,omitempty"`
	AdditionalProperties    map[string]interface{}
}

EnvironmentResponse struct for EnvironmentResponse

func NewEnvironmentResponse

func NewEnvironmentResponse(name string, region EnvironmentRegionCode, type_ EnvironmentTypeValue, createdAt time.Time, updatedAt time.Time, id uuid.UUID, organization ResourceRelationshipReadOnly) *EnvironmentResponse

NewEnvironmentResponse instantiates a new EnvironmentResponse 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 NewEnvironmentResponseWithDefaults

func NewEnvironmentResponseWithDefaults() *EnvironmentResponse

NewEnvironmentResponseWithDefaults instantiates a new EnvironmentResponse 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 (*EnvironmentResponse) GetBillOfMaterials

func (o *EnvironmentResponse) GetBillOfMaterials() EnvironmentBillOfMaterials

GetBillOfMaterials returns the BillOfMaterials field value if set, zero value otherwise.

func (*EnvironmentResponse) GetBillOfMaterialsOk

func (o *EnvironmentResponse) GetBillOfMaterialsOk() (*EnvironmentBillOfMaterials, bool)

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

func (*EnvironmentResponse) GetCreatedAt

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

GetCreatedAt returns the CreatedAt field value

func (*EnvironmentResponse) GetCreatedAtOk

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

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

func (*EnvironmentResponse) GetDescription

func (o *EnvironmentResponse) GetDescription() string

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

func (*EnvironmentResponse) GetDescriptionOk

func (o *EnvironmentResponse) 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 (*EnvironmentResponse) GetEmbedded

func (o *EnvironmentResponse) GetEmbedded() map[string]map[string]interface{}

GetEmbedded returns the Embedded field value if set, zero value otherwise.

func (*EnvironmentResponse) GetEmbeddedOk

func (o *EnvironmentResponse) GetEmbeddedOk() (map[string]map[string]interface{}, bool)

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

func (*EnvironmentResponse) GetEnvironmentCapabilities

func (o *EnvironmentResponse) GetEnvironmentCapabilities() EnvironmentCapabilities

GetEnvironmentCapabilities returns the EnvironmentCapabilities field value if set, zero value otherwise.

func (*EnvironmentResponse) GetEnvironmentCapabilitiesOk

func (o *EnvironmentResponse) GetEnvironmentCapabilitiesOk() (*EnvironmentCapabilities, bool)

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

func (*EnvironmentResponse) GetHardDeleteAllowedAt

func (o *EnvironmentResponse) GetHardDeleteAllowedAt() time.Time

GetHardDeleteAllowedAt returns the HardDeleteAllowedAt field value if set, zero value otherwise.

func (*EnvironmentResponse) GetHardDeleteAllowedAtOk

func (o *EnvironmentResponse) GetHardDeleteAllowedAtOk() (*time.Time, bool)

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

func (*EnvironmentResponse) GetIcon

func (o *EnvironmentResponse) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*EnvironmentResponse) GetIconOk

func (o *EnvironmentResponse) GetIconOk() (*string, bool)

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

func (*EnvironmentResponse) GetId

func (o *EnvironmentResponse) GetId() uuid.UUID

GetId returns the Id field value

func (*EnvironmentResponse) GetIdOk

func (o *EnvironmentResponse) GetIdOk() (*uuid.UUID, bool)

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

func (*EnvironmentResponse) GetLicense

func (o *EnvironmentResponse) GetLicense() EnvironmentLicense

GetLicense returns the License field value if set, zero value otherwise.

func (*EnvironmentResponse) GetLicenseOk

func (o *EnvironmentResponse) GetLicenseOk() (*EnvironmentLicense, bool)

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

GetLinks returns the Links field value if set, zero value otherwise.

func (*EnvironmentResponse) GetLinksOk

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

func (*EnvironmentResponse) GetName

func (o *EnvironmentResponse) GetName() string

GetName returns the Name field value

func (*EnvironmentResponse) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*EnvironmentResponse) GetOrganization

GetOrganization returns the Organization field value

func (*EnvironmentResponse) GetOrganizationOk

func (o *EnvironmentResponse) GetOrganizationOk() (*ResourceRelationshipReadOnly, bool)

GetOrganizationOk returns a tuple with the Organization field value and a boolean to check if the value has been set.

func (*EnvironmentResponse) GetPingoneAccountId

func (o *EnvironmentResponse) GetPingoneAccountId() string

GetPingoneAccountId returns the PingoneAccountId field value if set, zero value otherwise.

func (*EnvironmentResponse) GetPingoneAccountIdOk

func (o *EnvironmentResponse) GetPingoneAccountIdOk() (*string, bool)

GetPingoneAccountIdOk returns a tuple with the PingoneAccountId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentResponse) GetRegion

GetRegion returns the Region field value

func (*EnvironmentResponse) GetRegionOk

func (o *EnvironmentResponse) GetRegionOk() (*EnvironmentRegionCode, bool)

GetRegionOk returns a tuple with the Region field value and a boolean to check if the value has been set.

func (*EnvironmentResponse) GetSoftDeletedAt

func (o *EnvironmentResponse) GetSoftDeletedAt() time.Time

GetSoftDeletedAt returns the SoftDeletedAt field value if set, zero value otherwise.

func (*EnvironmentResponse) GetSoftDeletedAtOk

func (o *EnvironmentResponse) GetSoftDeletedAtOk() (*time.Time, bool)

GetSoftDeletedAtOk returns a tuple with the SoftDeletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentResponse) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*EnvironmentResponse) GetStatusOk

func (o *EnvironmentResponse) GetStatusOk() (*EnvironmentStatusValue, 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.

func (*EnvironmentResponse) GetType

GetType returns the Type field value

func (*EnvironmentResponse) GetTypeOk

func (o *EnvironmentResponse) GetTypeOk() (*EnvironmentTypeValue, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*EnvironmentResponse) GetUpdatedAt

func (o *EnvironmentResponse) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*EnvironmentResponse) GetUpdatedAtOk

func (o *EnvironmentResponse) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*EnvironmentResponse) HasBillOfMaterials

func (o *EnvironmentResponse) HasBillOfMaterials() bool

HasBillOfMaterials returns a boolean if a field has been set.

func (*EnvironmentResponse) HasDescription

func (o *EnvironmentResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EnvironmentResponse) HasEmbedded

func (o *EnvironmentResponse) HasEmbedded() bool

HasEmbedded returns a boolean if a field has been set.

func (*EnvironmentResponse) HasEnvironmentCapabilities

func (o *EnvironmentResponse) HasEnvironmentCapabilities() bool

HasEnvironmentCapabilities returns a boolean if a field has been set.

func (*EnvironmentResponse) HasHardDeleteAllowedAt

func (o *EnvironmentResponse) HasHardDeleteAllowedAt() bool

HasHardDeleteAllowedAt returns a boolean if a field has been set.

func (*EnvironmentResponse) HasIcon

func (o *EnvironmentResponse) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*EnvironmentResponse) HasLicense

func (o *EnvironmentResponse) HasLicense() bool

HasLicense returns a boolean if a field has been set.

func (o *EnvironmentResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*EnvironmentResponse) HasPingoneAccountId

func (o *EnvironmentResponse) HasPingoneAccountId() bool

HasPingoneAccountId returns a boolean if a field has been set.

func (*EnvironmentResponse) HasSoftDeletedAt

func (o *EnvironmentResponse) HasSoftDeletedAt() bool

HasSoftDeletedAt returns a boolean if a field has been set.

func (*EnvironmentResponse) HasStatus

func (o *EnvironmentResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (EnvironmentResponse) LogValue

func (o EnvironmentResponse) LogValue() slog.Value

func (EnvironmentResponse) MarshalJSON

func (o EnvironmentResponse) MarshalJSON() ([]byte, error)

func (*EnvironmentResponse) SetBillOfMaterials

func (o *EnvironmentResponse) SetBillOfMaterials(v EnvironmentBillOfMaterials)

SetBillOfMaterials gets a reference to the given EnvironmentBillOfMaterials and assigns it to the BillOfMaterials field.

func (*EnvironmentResponse) SetCreatedAt

func (o *EnvironmentResponse) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*EnvironmentResponse) SetDescription

func (o *EnvironmentResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*EnvironmentResponse) SetEmbedded

func (o *EnvironmentResponse) SetEmbedded(v map[string]map[string]interface{})

SetEmbedded gets a reference to the given map[string]map[string]interface{} and assigns it to the Embedded field.

func (*EnvironmentResponse) SetEnvironmentCapabilities

func (o *EnvironmentResponse) SetEnvironmentCapabilities(v EnvironmentCapabilities)

SetEnvironmentCapabilities gets a reference to the given EnvironmentCapabilities and assigns it to the EnvironmentCapabilities field.

func (*EnvironmentResponse) SetHardDeleteAllowedAt

func (o *EnvironmentResponse) SetHardDeleteAllowedAt(v time.Time)

SetHardDeleteAllowedAt gets a reference to the given time.Time and assigns it to the HardDeleteAllowedAt field.

func (*EnvironmentResponse) SetIcon

func (o *EnvironmentResponse) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*EnvironmentResponse) SetId

func (o *EnvironmentResponse) SetId(v uuid.UUID)

SetId sets field value

func (*EnvironmentResponse) SetLicense

func (o *EnvironmentResponse) SetLicense(v EnvironmentLicense)

SetLicense gets a reference to the given EnvironmentLicense and assigns it to the License field.

SetLinks gets a reference to the given EnvironmentResponseLinks and assigns it to the Links field.

func (*EnvironmentResponse) SetName

func (o *EnvironmentResponse) SetName(v string)

SetName sets field value

func (*EnvironmentResponse) SetOrganization

func (o *EnvironmentResponse) SetOrganization(v ResourceRelationshipReadOnly)

SetOrganization sets field value

func (*EnvironmentResponse) SetPingoneAccountId

func (o *EnvironmentResponse) SetPingoneAccountId(v string)

SetPingoneAccountId gets a reference to the given string and assigns it to the PingoneAccountId field.

func (*EnvironmentResponse) SetRegion

SetRegion sets field value

func (*EnvironmentResponse) SetSoftDeletedAt

func (o *EnvironmentResponse) SetSoftDeletedAt(v time.Time)

SetSoftDeletedAt gets a reference to the given time.Time and assigns it to the SoftDeletedAt field.

func (*EnvironmentResponse) SetStatus

SetStatus gets a reference to the given EnvironmentStatusValue and assigns it to the Status field.

func (*EnvironmentResponse) SetType

SetType sets field value

func (*EnvironmentResponse) SetUpdatedAt

func (o *EnvironmentResponse) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (EnvironmentResponse) ToMap

func (o EnvironmentResponse) ToMap() (map[string]interface{}, error)

func (*EnvironmentResponse) UnmarshalJSON

func (o *EnvironmentResponse) UnmarshalJSON(data []byte) (err error)
type EnvironmentResponseLinks struct {
	Self                 *JSONHALLink `json:"self,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentResponseLinks struct for EnvironmentResponseLinks

func NewEnvironmentResponseLinks() *EnvironmentResponseLinks

NewEnvironmentResponseLinks instantiates a new EnvironmentResponseLinks 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 NewEnvironmentResponseLinksWithDefaults

func NewEnvironmentResponseLinksWithDefaults() *EnvironmentResponseLinks

NewEnvironmentResponseLinksWithDefaults instantiates a new EnvironmentResponseLinks 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 (*EnvironmentResponseLinks) GetSelf

GetSelf returns the Self field value if set, zero value otherwise.

func (*EnvironmentResponseLinks) GetSelfOk

func (o *EnvironmentResponseLinks) GetSelfOk() (*JSONHALLink, bool)

GetSelfOk returns a tuple with the Self field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentResponseLinks) HasSelf

func (o *EnvironmentResponseLinks) HasSelf() bool

HasSelf returns a boolean if a field has been set.

func (EnvironmentResponseLinks) LogValue

func (o EnvironmentResponseLinks) LogValue() slog.Value

func (EnvironmentResponseLinks) MarshalJSON

func (o EnvironmentResponseLinks) MarshalJSON() ([]byte, error)

func (*EnvironmentResponseLinks) SetSelf

func (o *EnvironmentResponseLinks) SetSelf(v JSONHALLink)

SetSelf gets a reference to the given JSONHALLink and assigns it to the Self field.

func (EnvironmentResponseLinks) ToMap

func (o EnvironmentResponseLinks) ToMap() (map[string]interface{}, error)

func (*EnvironmentResponseLinks) UnmarshalJSON

func (o *EnvironmentResponseLinks) UnmarshalJSON(data []byte) (err error)

type EnvironmentStatusValue

type EnvironmentStatusValue string

EnvironmentStatusValue the model 'EnvironmentStatusValue'

const (
	ENVIRONMENTSTATUSVALUE_ACTIVE         EnvironmentStatusValue = "ACTIVE"
	ENVIRONMENTSTATUSVALUE_DELETE_PENDING EnvironmentStatusValue = "DELETE_PENDING"
)

List of EnvironmentStatusValue

func NewEnvironmentStatusValueFromValue

func NewEnvironmentStatusValueFromValue(v string) (*EnvironmentStatusValue, error)

NewEnvironmentStatusValueFromValue returns a pointer to a valid EnvironmentStatusValue for the value passed as argument, or an error if the value passed is not allowed by the enum

func (EnvironmentStatusValue) IsValid

func (v EnvironmentStatusValue) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (EnvironmentStatusValue) Ptr

Ptr returns reference to EnvironmentStatusValue value

func (*EnvironmentStatusValue) UnmarshalJSON

func (v *EnvironmentStatusValue) UnmarshalJSON(src []byte) error

type EnvironmentTypeValue

type EnvironmentTypeValue string

EnvironmentTypeValue the model 'EnvironmentTypeValue'

const (
	ENVIRONMENTTYPEVALUE_PRODUCTION EnvironmentTypeValue = "PRODUCTION"
	ENVIRONMENTTYPEVALUE_SANDBOX    EnvironmentTypeValue = "SANDBOX"
)

List of EnvironmentTypeValue

func NewEnvironmentTypeValueFromValue

func NewEnvironmentTypeValueFromValue(v string) (*EnvironmentTypeValue, error)

NewEnvironmentTypeValueFromValue returns a pointer to a valid EnvironmentTypeValue for the value passed as argument, or an error if the value passed is not allowed by the enum

func (EnvironmentTypeValue) IsValid

func (v EnvironmentTypeValue) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (EnvironmentTypeValue) Ptr

Ptr returns reference to EnvironmentTypeValue value

func (*EnvironmentTypeValue) UnmarshalJSON

func (v *EnvironmentTypeValue) UnmarshalJSON(src []byte) error

type EnvironmentsApiService

type EnvironmentsApiService service

EnvironmentsApiService EnvironmentsApi service

func (*EnvironmentsApiService) CreateEnvironment

CreateEnvironment Method for CreateEnvironment

@permission orgmgt:create:environment
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateEnvironmentRequest

func (*EnvironmentsApiService) CreateEnvironmentExecute

Execute executes the request

@return EnvironmentResponse

func (*EnvironmentsApiService) DeleteEnvironmentById

func (a *EnvironmentsApiService) DeleteEnvironmentById(ctx context.Context, environmentID uuid.UUID) ApiDeleteEnvironmentByIdRequest

DeleteEnvironmentById Method for DeleteEnvironmentById

@permission orgmgt:delete:environment
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiDeleteEnvironmentByIdRequest

func (*EnvironmentsApiService) DeleteEnvironmentByIdExecute

func (a *EnvironmentsApiService) DeleteEnvironmentByIdExecute(r ApiDeleteEnvironmentByIdRequest) (*http.Response, error)

Execute executes the request

func (*EnvironmentsApiService) GetBillOfMaterialsByEnvironmentId

func (a *EnvironmentsApiService) GetBillOfMaterialsByEnvironmentId(ctx context.Context, environmentID uuid.UUID) ApiGetBillOfMaterialsByEnvironmentIdRequest

GetBillOfMaterialsByEnvironmentId Method for GetBillOfMaterialsByEnvironmentId

@permission orgmgt:read:environment
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiGetBillOfMaterialsByEnvironmentIdRequest

func (*EnvironmentsApiService) GetBillOfMaterialsByEnvironmentIdExecute

Execute executes the request

@return EnvironmentBillOfMaterialsResponse

func (*EnvironmentsApiService) GetEnvironmentById

func (a *EnvironmentsApiService) GetEnvironmentById(ctx context.Context, environmentID uuid.UUID) ApiGetEnvironmentByIdRequest

GetEnvironmentById Method for GetEnvironmentById

@permission orgmgt:read:environment
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiGetEnvironmentByIdRequest

func (*EnvironmentsApiService) GetEnvironmentByIdExecute

Execute executes the request

@return EnvironmentResponse

func (*EnvironmentsApiService) GetEnvironments

GetEnvironments Method for GetEnvironments

@permission orgmgt:read:environment
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetEnvironmentsRequest

func (*EnvironmentsApiService) GetEnvironmentsExecute

Execute executes the request

@return EnvironmentsCollectionResponse

func (*EnvironmentsApiService) GetEnvironmentsExecutePage

Execute executes the request (returning the initial page of the paged response only)

@return EnvironmentsCollectionResponse

func (*EnvironmentsApiService) ReplaceBillOfMaterialsByEnvironmentId

func (a *EnvironmentsApiService) ReplaceBillOfMaterialsByEnvironmentId(ctx context.Context, environmentID uuid.UUID) ApiReplaceBillOfMaterialsByEnvironmentIdRequest

ReplaceBillOfMaterialsByEnvironmentId Method for ReplaceBillOfMaterialsByEnvironmentId

@permission orgmgt:update:environment
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiReplaceBillOfMaterialsByEnvironmentIdRequest

func (*EnvironmentsApiService) ReplaceBillOfMaterialsByEnvironmentIdExecute

Execute executes the request

@return EnvironmentBillOfMaterialsResponse

func (*EnvironmentsApiService) ReplaceEnvironmentById

func (a *EnvironmentsApiService) ReplaceEnvironmentById(ctx context.Context, environmentID uuid.UUID) ApiReplaceEnvironmentByIdRequest

ReplaceEnvironmentById Method for ReplaceEnvironmentById

@permission orgmgt:update:environment
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentID
@return ApiReplaceEnvironmentByIdRequest

func (*EnvironmentsApiService) ReplaceEnvironmentByIdExecute

Execute executes the request

@return EnvironmentResponse

type EnvironmentsCollectionResponse

type EnvironmentsCollectionResponse struct {
	Embedded             *EnvironmentsCollectionResponseEmbedded `json:"_embedded,omitempty"`
	Links                *EnvironmentsCollectionResponseLinks    `json:"_links,omitempty"`
	Count                *int32                                  `json:"count,omitempty"`
	Size                 *int32                                  `json:"size,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentsCollectionResponse struct for EnvironmentsCollectionResponse

func NewEnvironmentsCollectionResponse

func NewEnvironmentsCollectionResponse() *EnvironmentsCollectionResponse

NewEnvironmentsCollectionResponse instantiates a new EnvironmentsCollectionResponse 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 NewEnvironmentsCollectionResponseWithDefaults

func NewEnvironmentsCollectionResponseWithDefaults() *EnvironmentsCollectionResponse

NewEnvironmentsCollectionResponseWithDefaults instantiates a new EnvironmentsCollectionResponse 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 (*EnvironmentsCollectionResponse) GetCount

func (o *EnvironmentsCollectionResponse) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*EnvironmentsCollectionResponse) GetCountOk

func (o *EnvironmentsCollectionResponse) GetCountOk() (*int32, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentsCollectionResponse) GetEmbedded

GetEmbedded returns the Embedded field value if set, zero value otherwise.

func (*EnvironmentsCollectionResponse) GetEmbeddedOk

GetEmbeddedOk returns a tuple with the Embedded field value if set, nil otherwise and a boolean to check if the value has been set.

GetLinks returns the Links field value if set, zero value otherwise.

func (*EnvironmentsCollectionResponse) GetLinksOk

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentsCollectionResponse) GetSize

GetSize returns the Size field value if set, zero value otherwise.

func (*EnvironmentsCollectionResponse) GetSizeOk

func (o *EnvironmentsCollectionResponse) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentsCollectionResponse) HasCount

func (o *EnvironmentsCollectionResponse) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*EnvironmentsCollectionResponse) HasEmbedded

func (o *EnvironmentsCollectionResponse) HasEmbedded() bool

HasEmbedded returns a boolean if a field has been set.

func (o *EnvironmentsCollectionResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*EnvironmentsCollectionResponse) HasSize

func (o *EnvironmentsCollectionResponse) HasSize() bool

HasSize returns a boolean if a field has been set.

func (EnvironmentsCollectionResponse) LogValue

func (EnvironmentsCollectionResponse) MarshalJSON

func (o EnvironmentsCollectionResponse) MarshalJSON() ([]byte, error)

func (*EnvironmentsCollectionResponse) SetCount

func (o *EnvironmentsCollectionResponse) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*EnvironmentsCollectionResponse) SetEmbedded

SetEmbedded gets a reference to the given EnvironmentsCollectionResponseEmbedded and assigns it to the Embedded field.

SetLinks gets a reference to the given EnvironmentsCollectionResponseLinks and assigns it to the Links field.

func (*EnvironmentsCollectionResponse) SetSize

func (o *EnvironmentsCollectionResponse) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (EnvironmentsCollectionResponse) ToMap

func (o EnvironmentsCollectionResponse) ToMap() (map[string]interface{}, error)

func (*EnvironmentsCollectionResponse) UnmarshalJSON

func (o *EnvironmentsCollectionResponse) UnmarshalJSON(data []byte) (err error)

type EnvironmentsCollectionResponseEmbedded

type EnvironmentsCollectionResponseEmbedded struct {
	Environments         []EnvironmentResponse `json:"environments,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentsCollectionResponseEmbedded struct for EnvironmentsCollectionResponseEmbedded

func NewEnvironmentsCollectionResponseEmbedded

func NewEnvironmentsCollectionResponseEmbedded() *EnvironmentsCollectionResponseEmbedded

NewEnvironmentsCollectionResponseEmbedded instantiates a new EnvironmentsCollectionResponseEmbedded 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 NewEnvironmentsCollectionResponseEmbeddedWithDefaults

func NewEnvironmentsCollectionResponseEmbeddedWithDefaults() *EnvironmentsCollectionResponseEmbedded

NewEnvironmentsCollectionResponseEmbeddedWithDefaults instantiates a new EnvironmentsCollectionResponseEmbedded 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 (*EnvironmentsCollectionResponseEmbedded) GetEnvironments

GetEnvironments returns the Environments field value if set, zero value otherwise.

func (*EnvironmentsCollectionResponseEmbedded) GetEnvironmentsOk

GetEnvironmentsOk returns a tuple with the Environments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentsCollectionResponseEmbedded) HasEnvironments

func (o *EnvironmentsCollectionResponseEmbedded) HasEnvironments() bool

HasEnvironments returns a boolean if a field has been set.

func (EnvironmentsCollectionResponseEmbedded) LogValue

func (EnvironmentsCollectionResponseEmbedded) MarshalJSON

func (o EnvironmentsCollectionResponseEmbedded) MarshalJSON() ([]byte, error)

func (*EnvironmentsCollectionResponseEmbedded) SetEnvironments

SetEnvironments gets a reference to the given []EnvironmentResponse and assigns it to the Environments field.

func (EnvironmentsCollectionResponseEmbedded) ToMap

func (o EnvironmentsCollectionResponseEmbedded) ToMap() (map[string]interface{}, error)

func (*EnvironmentsCollectionResponseEmbedded) UnmarshalJSON

func (o *EnvironmentsCollectionResponseEmbedded) UnmarshalJSON(data []byte) (err error)
type EnvironmentsCollectionResponseLinks struct {
	Next                 *JSONHALLink `json:"next,omitempty"`
	Prev                 *JSONHALLink `json:"prev,omitempty"`
	Self                 *JSONHALLink `json:"self,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnvironmentsCollectionResponseLinks struct for EnvironmentsCollectionResponseLinks

func NewEnvironmentsCollectionResponseLinks() *EnvironmentsCollectionResponseLinks

NewEnvironmentsCollectionResponseLinks instantiates a new EnvironmentsCollectionResponseLinks 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 NewEnvironmentsCollectionResponseLinksWithDefaults

func NewEnvironmentsCollectionResponseLinksWithDefaults() *EnvironmentsCollectionResponseLinks

NewEnvironmentsCollectionResponseLinksWithDefaults instantiates a new EnvironmentsCollectionResponseLinks 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 (*EnvironmentsCollectionResponseLinks) GetNext

GetNext returns the Next field value if set, zero value otherwise.

func (*EnvironmentsCollectionResponseLinks) GetNextOk

GetNextOk returns a tuple with the Next field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentsCollectionResponseLinks) GetPrev

GetPrev returns the Prev field value if set, zero value otherwise.

func (*EnvironmentsCollectionResponseLinks) GetPrevOk

GetPrevOk returns a tuple with the Prev field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentsCollectionResponseLinks) GetSelf

GetSelf returns the Self field value if set, zero value otherwise.

func (*EnvironmentsCollectionResponseLinks) GetSelfOk

GetSelfOk returns a tuple with the Self field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentsCollectionResponseLinks) HasNext

HasNext returns a boolean if a field has been set.

func (*EnvironmentsCollectionResponseLinks) HasPrev

HasPrev returns a boolean if a field has been set.

func (*EnvironmentsCollectionResponseLinks) HasSelf

HasSelf returns a boolean if a field has been set.

func (EnvironmentsCollectionResponseLinks) LogValue

func (EnvironmentsCollectionResponseLinks) MarshalJSON

func (o EnvironmentsCollectionResponseLinks) MarshalJSON() ([]byte, error)

func (*EnvironmentsCollectionResponseLinks) SetNext

SetNext gets a reference to the given JSONHALLink and assigns it to the Next field.

func (*EnvironmentsCollectionResponseLinks) SetPrev

SetPrev gets a reference to the given JSONHALLink and assigns it to the Prev field.

func (*EnvironmentsCollectionResponseLinks) SetSelf

SetSelf gets a reference to the given JSONHALLink and assigns it to the Self field.

func (EnvironmentsCollectionResponseLinks) ToMap

func (o EnvironmentsCollectionResponseLinks) ToMap() (map[string]interface{}, error)

func (*EnvironmentsCollectionResponseLinks) UnmarshalJSON

func (o *EnvironmentsCollectionResponseLinks) UnmarshalJSON(data []byte) (err error)

type ForbiddenError

type ForbiddenError struct {
	Id                   uuid.UUID              `json:"id"`
	Code                 ForbiddenErrorCode     `json:"code"`
	Message              string                 `json:"message"`
	Details              []ForbiddenErrorDetail `json:"details,omitempty"`
	AdditionalProperties map[string]interface{}
}

ForbiddenError struct for ForbiddenError

func NewForbiddenError

func NewForbiddenError(id uuid.UUID, code ForbiddenErrorCode, message string) *ForbiddenError

NewForbiddenError instantiates a new ForbiddenError 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 NewForbiddenErrorWithDefaults

func NewForbiddenErrorWithDefaults() *ForbiddenError

NewForbiddenErrorWithDefaults instantiates a new ForbiddenError 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 (ForbiddenError) Error

func (o ForbiddenError) Error() string

func (*ForbiddenError) GetCode

func (o *ForbiddenError) GetCode() ForbiddenErrorCode

GetCode returns the Code field value

func (*ForbiddenError) GetCodeOk

func (o *ForbiddenError) GetCodeOk() (*ForbiddenErrorCode, bool)

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*ForbiddenError) GetDetails

func (o *ForbiddenError) GetDetails() []ForbiddenErrorDetail

GetDetails returns the Details field value if set, zero value otherwise.

func (*ForbiddenError) GetDetailsOk

func (o *ForbiddenError) GetDetailsOk() ([]ForbiddenErrorDetail, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForbiddenError) GetId

func (o *ForbiddenError) GetId() uuid.UUID

GetId returns the Id field value

func (*ForbiddenError) GetIdOk

func (o *ForbiddenError) GetIdOk() (*uuid.UUID, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ForbiddenError) GetMessage

func (o *ForbiddenError) GetMessage() string

GetMessage returns the Message field value

func (*ForbiddenError) GetMessageOk

func (o *ForbiddenError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*ForbiddenError) HasDetails

func (o *ForbiddenError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (ForbiddenError) LogValue

func (o ForbiddenError) LogValue() slog.Value

func (ForbiddenError) MarshalJSON

func (o ForbiddenError) MarshalJSON() ([]byte, error)

func (*ForbiddenError) SetCode

func (o *ForbiddenError) SetCode(v ForbiddenErrorCode)

SetCode sets field value

func (*ForbiddenError) SetDetails

func (o *ForbiddenError) SetDetails(v []ForbiddenErrorDetail)

SetDetails gets a reference to the given []ForbiddenErrorDetail and assigns it to the Details field.

func (*ForbiddenError) SetId

func (o *ForbiddenError) SetId(v uuid.UUID)

SetId sets field value

func (*ForbiddenError) SetMessage

func (o *ForbiddenError) SetMessage(v string)

SetMessage sets field value

func (ForbiddenError) ToMap

func (o ForbiddenError) ToMap() (map[string]interface{}, error)

func (*ForbiddenError) UnmarshalJSON

func (o *ForbiddenError) UnmarshalJSON(data []byte) (err error)

type ForbiddenErrorCode

type ForbiddenErrorCode string

ForbiddenErrorCode the model 'ForbiddenErrorCode'

const (
	FORBIDDENERRORCODE_ACCESS_FAILED ForbiddenErrorCode = "ACCESS_FAILED"
)

List of Forbidden_Error_Code

func NewForbiddenErrorCodeFromValue

func NewForbiddenErrorCodeFromValue(v string) (*ForbiddenErrorCode, error)

NewForbiddenErrorCodeFromValue returns a pointer to a valid ForbiddenErrorCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ForbiddenErrorCode) IsValid

func (v ForbiddenErrorCode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ForbiddenErrorCode) Ptr

Ptr returns reference to Forbidden_Error_Code value

func (*ForbiddenErrorCode) UnmarshalJSON

func (v *ForbiddenErrorCode) UnmarshalJSON(src []byte) error

type ForbiddenErrorDetail

type ForbiddenErrorDetail struct {
	Code                 ForbiddenErrorDetailCode        `json:"code"`
	Message              string                          `json:"message"`
	InnerError           *ForbiddenErrorDetailInnerError `json:"innerError,omitempty"`
	Target               *string                         `json:"target,omitempty"`
	AdditionalProperties map[string]interface{}
}

ForbiddenErrorDetail struct for ForbiddenErrorDetail

func NewForbiddenErrorDetail

func NewForbiddenErrorDetail(code ForbiddenErrorDetailCode, message string) *ForbiddenErrorDetail

NewForbiddenErrorDetail instantiates a new ForbiddenErrorDetail 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 NewForbiddenErrorDetailWithDefaults

func NewForbiddenErrorDetailWithDefaults() *ForbiddenErrorDetail

NewForbiddenErrorDetailWithDefaults instantiates a new ForbiddenErrorDetail 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 (*ForbiddenErrorDetail) GetCode

GetCode returns the Code field value

func (*ForbiddenErrorDetail) GetCodeOk

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*ForbiddenErrorDetail) GetInnerError

GetInnerError returns the InnerError field value if set, zero value otherwise.

func (*ForbiddenErrorDetail) GetInnerErrorOk

func (o *ForbiddenErrorDetail) GetInnerErrorOk() (*ForbiddenErrorDetailInnerError, bool)

GetInnerErrorOk returns a tuple with the InnerError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForbiddenErrorDetail) GetMessage

func (o *ForbiddenErrorDetail) GetMessage() string

GetMessage returns the Message field value

func (*ForbiddenErrorDetail) GetMessageOk

func (o *ForbiddenErrorDetail) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*ForbiddenErrorDetail) GetTarget

func (o *ForbiddenErrorDetail) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*ForbiddenErrorDetail) GetTargetOk

func (o *ForbiddenErrorDetail) GetTargetOk() (*string, 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 (*ForbiddenErrorDetail) HasInnerError

func (o *ForbiddenErrorDetail) HasInnerError() bool

HasInnerError returns a boolean if a field has been set.

func (*ForbiddenErrorDetail) HasTarget

func (o *ForbiddenErrorDetail) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (ForbiddenErrorDetail) LogValue

func (o ForbiddenErrorDetail) LogValue() slog.Value

func (ForbiddenErrorDetail) MarshalJSON

func (o ForbiddenErrorDetail) MarshalJSON() ([]byte, error)

func (*ForbiddenErrorDetail) SetCode

SetCode sets field value

func (*ForbiddenErrorDetail) SetInnerError

SetInnerError gets a reference to the given ForbiddenErrorDetailInnerError and assigns it to the InnerError field.

func (*ForbiddenErrorDetail) SetMessage

func (o *ForbiddenErrorDetail) SetMessage(v string)

SetMessage sets field value

func (*ForbiddenErrorDetail) SetTarget

func (o *ForbiddenErrorDetail) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (ForbiddenErrorDetail) ToMap

func (o ForbiddenErrorDetail) ToMap() (map[string]interface{}, error)

func (*ForbiddenErrorDetail) UnmarshalJSON

func (o *ForbiddenErrorDetail) UnmarshalJSON(data []byte) (err error)

type ForbiddenErrorDetailCode

type ForbiddenErrorDetailCode string

ForbiddenErrorDetailCode the model 'ForbiddenErrorDetailCode'

const (
	FORBIDDENERRORDETAILCODE_INSUFFICIENT_PERMISSIONS ForbiddenErrorDetailCode = "INSUFFICIENT_PERMISSIONS"
	FORBIDDENERRORDETAILCODE_LICENSE_EXCEEDED         ForbiddenErrorDetailCode = "LICENSE_EXCEEDED"
)

List of Forbidden_Error_Detail_Code

func NewForbiddenErrorDetailCodeFromValue

func NewForbiddenErrorDetailCodeFromValue(v string) (*ForbiddenErrorDetailCode, error)

NewForbiddenErrorDetailCodeFromValue returns a pointer to a valid ForbiddenErrorDetailCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ForbiddenErrorDetailCode) IsValid

func (v ForbiddenErrorDetailCode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ForbiddenErrorDetailCode) Ptr

Ptr returns reference to Forbidden_Error_Detail_Code value

func (*ForbiddenErrorDetailCode) UnmarshalJSON

func (v *ForbiddenErrorDetailCode) UnmarshalJSON(src []byte) error

type ForbiddenErrorDetailInnerError

type ForbiddenErrorDetailInnerError struct {
	QuotaLimit           *float32 `json:"quotaLimit,omitempty"`
	AdditionalProperties map[string]interface{}
}

ForbiddenErrorDetailInnerError struct for ForbiddenErrorDetailInnerError

func NewForbiddenErrorDetailInnerError

func NewForbiddenErrorDetailInnerError() *ForbiddenErrorDetailInnerError

NewForbiddenErrorDetailInnerError instantiates a new ForbiddenErrorDetailInnerError 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 NewForbiddenErrorDetailInnerErrorWithDefaults

func NewForbiddenErrorDetailInnerErrorWithDefaults() *ForbiddenErrorDetailInnerError

NewForbiddenErrorDetailInnerErrorWithDefaults instantiates a new ForbiddenErrorDetailInnerError 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 (*ForbiddenErrorDetailInnerError) GetQuotaLimit

func (o *ForbiddenErrorDetailInnerError) GetQuotaLimit() float32

GetQuotaLimit returns the QuotaLimit field value if set, zero value otherwise.

func (*ForbiddenErrorDetailInnerError) GetQuotaLimitOk

func (o *ForbiddenErrorDetailInnerError) GetQuotaLimitOk() (*float32, bool)

GetQuotaLimitOk returns a tuple with the QuotaLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForbiddenErrorDetailInnerError) HasQuotaLimit

func (o *ForbiddenErrorDetailInnerError) HasQuotaLimit() bool

HasQuotaLimit returns a boolean if a field has been set.

func (ForbiddenErrorDetailInnerError) LogValue

func (ForbiddenErrorDetailInnerError) MarshalJSON

func (o ForbiddenErrorDetailInnerError) MarshalJSON() ([]byte, error)

func (*ForbiddenErrorDetailInnerError) SetQuotaLimit

func (o *ForbiddenErrorDetailInnerError) SetQuotaLimit(v float32)

SetQuotaLimit gets a reference to the given float32 and assigns it to the QuotaLimit field.

func (ForbiddenErrorDetailInnerError) ToMap

func (o ForbiddenErrorDetailInnerError) ToMap() (map[string]interface{}, error)

func (*ForbiddenErrorDetailInnerError) UnmarshalJSON

func (o *ForbiddenErrorDetailInnerError) UnmarshalJSON(data []byte) (err error)

type GeneralError

type GeneralError struct {
	Code                 *string              `json:"code,omitempty"`
	Details              []GeneralErrorDetail `json:"details,omitempty"`
	Id                   *string              `json:"id,omitempty"`
	Message              *string              `json:"message,omitempty"`
	AdditionalProperties map[string]interface{}
}

GeneralError struct for GeneralError

func NewGeneralError

func NewGeneralError() *GeneralError

NewGeneralError instantiates a new GeneralError 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 NewGeneralErrorWithDefaults

func NewGeneralErrorWithDefaults() *GeneralError

NewGeneralErrorWithDefaults instantiates a new GeneralError 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 (GeneralError) Error

func (o GeneralError) Error() string

func (*GeneralError) GetCode

func (o *GeneralError) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*GeneralError) GetCodeOk

func (o *GeneralError) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GeneralError) GetDetails

func (o *GeneralError) GetDetails() []GeneralErrorDetail

GetDetails returns the Details field value if set, zero value otherwise.

func (*GeneralError) GetDetailsOk

func (o *GeneralError) GetDetailsOk() ([]GeneralErrorDetail, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GeneralError) GetId

func (o *GeneralError) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*GeneralError) GetIdOk

func (o *GeneralError) 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 (*GeneralError) GetMessage

func (o *GeneralError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*GeneralError) GetMessageOk

func (o *GeneralError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GeneralError) HasCode

func (o *GeneralError) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*GeneralError) HasDetails

func (o *GeneralError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*GeneralError) HasId

func (o *GeneralError) HasId() bool

HasId returns a boolean if a field has been set.

func (*GeneralError) HasMessage

func (o *GeneralError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (GeneralError) LogValue

func (o GeneralError) LogValue() slog.Value

func (GeneralError) MarshalJSON

func (o GeneralError) MarshalJSON() ([]byte, error)

func (*GeneralError) SetCode

func (o *GeneralError) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*GeneralError) SetDetails

func (o *GeneralError) SetDetails(v []GeneralErrorDetail)

SetDetails gets a reference to the given []GeneralErrorDetail and assigns it to the Details field.

func (*GeneralError) SetId

func (o *GeneralError) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*GeneralError) SetMessage

func (o *GeneralError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (GeneralError) ToMap

func (o GeneralError) ToMap() (map[string]interface{}, error)

func (*GeneralError) UnmarshalJSON

func (o *GeneralError) UnmarshalJSON(data []byte) (err error)

type GeneralErrorDetail

type GeneralErrorDetail struct {
	Code                 *string                           `json:"code,omitempty"`
	InnerError           map[string]map[string]interface{} `json:"innerError,omitempty"`
	Message              *string                           `json:"message,omitempty"`
	Target               *string                           `json:"target,omitempty"`
	AdditionalProperties map[string]interface{}
}

GeneralErrorDetail struct for GeneralErrorDetail

func NewGeneralErrorDetail

func NewGeneralErrorDetail() *GeneralErrorDetail

NewGeneralErrorDetail instantiates a new GeneralErrorDetail 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 NewGeneralErrorDetailWithDefaults

func NewGeneralErrorDetailWithDefaults() *GeneralErrorDetail

NewGeneralErrorDetailWithDefaults instantiates a new GeneralErrorDetail 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 (*GeneralErrorDetail) GetCode

func (o *GeneralErrorDetail) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*GeneralErrorDetail) GetCodeOk

func (o *GeneralErrorDetail) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GeneralErrorDetail) GetInnerError

func (o *GeneralErrorDetail) GetInnerError() map[string]map[string]interface{}

GetInnerError returns the InnerError field value if set, zero value otherwise.

func (*GeneralErrorDetail) GetInnerErrorOk

func (o *GeneralErrorDetail) GetInnerErrorOk() (map[string]map[string]interface{}, bool)

GetInnerErrorOk returns a tuple with the InnerError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GeneralErrorDetail) GetMessage

func (o *GeneralErrorDetail) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*GeneralErrorDetail) GetMessageOk

func (o *GeneralErrorDetail) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GeneralErrorDetail) GetTarget

func (o *GeneralErrorDetail) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*GeneralErrorDetail) GetTargetOk

func (o *GeneralErrorDetail) GetTargetOk() (*string, 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 (*GeneralErrorDetail) HasCode

func (o *GeneralErrorDetail) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*GeneralErrorDetail) HasInnerError

func (o *GeneralErrorDetail) HasInnerError() bool

HasInnerError returns a boolean if a field has been set.

func (*GeneralErrorDetail) HasMessage

func (o *GeneralErrorDetail) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GeneralErrorDetail) HasTarget

func (o *GeneralErrorDetail) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (GeneralErrorDetail) LogValue

func (o GeneralErrorDetail) LogValue() slog.Value

func (GeneralErrorDetail) MarshalJSON

func (o GeneralErrorDetail) MarshalJSON() ([]byte, error)

func (*GeneralErrorDetail) SetCode

func (o *GeneralErrorDetail) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*GeneralErrorDetail) SetInnerError

func (o *GeneralErrorDetail) SetInnerError(v map[string]map[string]interface{})

SetInnerError gets a reference to the given map[string]map[string]interface{} and assigns it to the InnerError field.

func (*GeneralErrorDetail) SetMessage

func (o *GeneralErrorDetail) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*GeneralErrorDetail) SetTarget

func (o *GeneralErrorDetail) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (GeneralErrorDetail) ToMap

func (o GeneralErrorDetail) ToMap() (map[string]interface{}, error)

func (*GeneralErrorDetail) UnmarshalJSON

func (o *GeneralErrorDetail) UnmarshalJSON(data []byte) (err error)

type InternalServerError

type InternalServerError struct {
	Id                   uuid.UUID                   `json:"id"`
	Code                 InternalServerErrorCode     `json:"code"`
	Message              string                      `json:"message"`
	Details              []InternalServerErrorDetail `json:"details,omitempty"`
	AdditionalProperties map[string]interface{}
}

InternalServerError struct for InternalServerError

func NewInternalServerError

func NewInternalServerError(id uuid.UUID, code InternalServerErrorCode, message string) *InternalServerError

NewInternalServerError instantiates a new InternalServerError 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 NewInternalServerErrorWithDefaults

func NewInternalServerErrorWithDefaults() *InternalServerError

NewInternalServerErrorWithDefaults instantiates a new InternalServerError 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 (InternalServerError) Error

func (o InternalServerError) Error() string

func (*InternalServerError) GetCode

GetCode returns the Code field value

func (*InternalServerError) GetCodeOk

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*InternalServerError) GetDetails

GetDetails returns the Details field value if set, zero value otherwise.

func (*InternalServerError) GetDetailsOk

func (o *InternalServerError) GetDetailsOk() ([]InternalServerErrorDetail, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InternalServerError) GetId

func (o *InternalServerError) GetId() uuid.UUID

GetId returns the Id field value

func (*InternalServerError) GetIdOk

func (o *InternalServerError) GetIdOk() (*uuid.UUID, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*InternalServerError) GetMessage

func (o *InternalServerError) GetMessage() string

GetMessage returns the Message field value

func (*InternalServerError) GetMessageOk

func (o *InternalServerError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*InternalServerError) HasDetails

func (o *InternalServerError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (InternalServerError) LogValue

func (o InternalServerError) LogValue() slog.Value

func (InternalServerError) MarshalJSON

func (o InternalServerError) MarshalJSON() ([]byte, error)

func (*InternalServerError) SetCode

SetCode sets field value

func (*InternalServerError) SetDetails

SetDetails gets a reference to the given []InternalServerErrorDetail and assigns it to the Details field.

func (*InternalServerError) SetId

func (o *InternalServerError) SetId(v uuid.UUID)

SetId sets field value

func (*InternalServerError) SetMessage

func (o *InternalServerError) SetMessage(v string)

SetMessage sets field value

func (InternalServerError) ToMap

func (o InternalServerError) ToMap() (map[string]interface{}, error)

func (*InternalServerError) UnmarshalJSON

func (o *InternalServerError) UnmarshalJSON(data []byte) (err error)

type InternalServerErrorCode

type InternalServerErrorCode string

InternalServerErrorCode the model 'InternalServerErrorCode'

const (
	INTERNALSERVERERRORCODE_UNEXPECTED_ERROR InternalServerErrorCode = "UNEXPECTED_ERROR"
)

List of Internal_Server_Error_Code

func NewInternalServerErrorCodeFromValue

func NewInternalServerErrorCodeFromValue(v string) (*InternalServerErrorCode, error)

NewInternalServerErrorCodeFromValue returns a pointer to a valid InternalServerErrorCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (InternalServerErrorCode) IsValid

func (v InternalServerErrorCode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (InternalServerErrorCode) Ptr

Ptr returns reference to Internal_Server_Error_Code value

func (*InternalServerErrorCode) UnmarshalJSON

func (v *InternalServerErrorCode) UnmarshalJSON(src []byte) error

type InternalServerErrorDetail

type InternalServerErrorDetail struct {
	Code                 string                 `json:"code"`
	Message              string                 `json:"message"`
	InnerError           map[string]interface{} `json:"innerError,omitempty"`
	Target               *string                `json:"target,omitempty"`
	AdditionalProperties map[string]interface{}
}

InternalServerErrorDetail struct for InternalServerErrorDetail

func NewInternalServerErrorDetail

func NewInternalServerErrorDetail(code string, message string) *InternalServerErrorDetail

NewInternalServerErrorDetail instantiates a new InternalServerErrorDetail 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 NewInternalServerErrorDetailWithDefaults

func NewInternalServerErrorDetailWithDefaults() *InternalServerErrorDetail

NewInternalServerErrorDetailWithDefaults instantiates a new InternalServerErrorDetail 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 (*InternalServerErrorDetail) GetCode

func (o *InternalServerErrorDetail) GetCode() string

GetCode returns the Code field value

func (*InternalServerErrorDetail) GetCodeOk

func (o *InternalServerErrorDetail) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*InternalServerErrorDetail) GetInnerError

func (o *InternalServerErrorDetail) GetInnerError() map[string]interface{}

GetInnerError returns the InnerError field value if set, zero value otherwise.

func (*InternalServerErrorDetail) GetInnerErrorOk

func (o *InternalServerErrorDetail) GetInnerErrorOk() (map[string]interface{}, bool)

GetInnerErrorOk returns a tuple with the InnerError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InternalServerErrorDetail) GetMessage

func (o *InternalServerErrorDetail) GetMessage() string

GetMessage returns the Message field value

func (*InternalServerErrorDetail) GetMessageOk

func (o *InternalServerErrorDetail) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*InternalServerErrorDetail) GetTarget

func (o *InternalServerErrorDetail) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*InternalServerErrorDetail) GetTargetOk

func (o *InternalServerErrorDetail) GetTargetOk() (*string, 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 (*InternalServerErrorDetail) HasInnerError

func (o *InternalServerErrorDetail) HasInnerError() bool

HasInnerError returns a boolean if a field has been set.

func (*InternalServerErrorDetail) HasTarget

func (o *InternalServerErrorDetail) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (InternalServerErrorDetail) LogValue

func (o InternalServerErrorDetail) LogValue() slog.Value

func (InternalServerErrorDetail) MarshalJSON

func (o InternalServerErrorDetail) MarshalJSON() ([]byte, error)

func (*InternalServerErrorDetail) SetCode

func (o *InternalServerErrorDetail) SetCode(v string)

SetCode sets field value

func (*InternalServerErrorDetail) SetInnerError

func (o *InternalServerErrorDetail) SetInnerError(v map[string]interface{})

SetInnerError gets a reference to the given map[string]interface{} and assigns it to the InnerError field.

func (*InternalServerErrorDetail) SetMessage

func (o *InternalServerErrorDetail) SetMessage(v string)

SetMessage sets field value

func (*InternalServerErrorDetail) SetTarget

func (o *InternalServerErrorDetail) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (InternalServerErrorDetail) ToMap

func (o InternalServerErrorDetail) ToMap() (map[string]interface{}, error)

func (*InternalServerErrorDetail) UnmarshalJSON

func (o *InternalServerErrorDetail) UnmarshalJSON(data []byte) (err error)
type JSONHALLink struct {
	Href                 string  `json:"href"`
	Name                 *string `json:"name,omitempty"`
	Profile              *string `json:"profile,omitempty"`
	Title                *string `json:"title,omitempty"`
	Type                 *string `json:"type,omitempty"`
	AdditionalProperties map[string]interface{}
}

JSONHALLink struct for JSONHALLink

func NewJSONHALLink(href string) *JSONHALLink

NewJSONHALLink instantiates a new JSONHALLink 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 NewJSONHALLinkWithDefaults

func NewJSONHALLinkWithDefaults() *JSONHALLink

NewJSONHALLinkWithDefaults instantiates a new JSONHALLink 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 (*JSONHALLink) GetHref

func (o *JSONHALLink) GetHref() string

GetHref returns the Href field value

func (*JSONHALLink) GetHrefOk

func (o *JSONHALLink) GetHrefOk() (*string, bool)

GetHrefOk returns a tuple with the Href field value and a boolean to check if the value has been set.

func (*JSONHALLink) GetName

func (o *JSONHALLink) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*JSONHALLink) GetNameOk

func (o *JSONHALLink) 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 (*JSONHALLink) GetProfile

func (o *JSONHALLink) GetProfile() string

GetProfile returns the Profile field value if set, zero value otherwise.

func (*JSONHALLink) GetProfileOk

func (o *JSONHALLink) GetProfileOk() (*string, bool)

GetProfileOk returns a tuple with the Profile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JSONHALLink) GetTitle

func (o *JSONHALLink) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*JSONHALLink) GetTitleOk

func (o *JSONHALLink) 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.

func (*JSONHALLink) GetType

func (o *JSONHALLink) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*JSONHALLink) GetTypeOk

func (o *JSONHALLink) 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.

func (*JSONHALLink) HasName

func (o *JSONHALLink) HasName() bool

HasName returns a boolean if a field has been set.

func (*JSONHALLink) HasProfile

func (o *JSONHALLink) HasProfile() bool

HasProfile returns a boolean if a field has been set.

func (*JSONHALLink) HasTitle

func (o *JSONHALLink) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*JSONHALLink) HasType

func (o *JSONHALLink) HasType() bool

HasType returns a boolean if a field has been set.

func (JSONHALLink) LogValue

func (o JSONHALLink) LogValue() slog.Value

func (JSONHALLink) MarshalJSON

func (o JSONHALLink) MarshalJSON() ([]byte, error)

func (*JSONHALLink) SetHref

func (o *JSONHALLink) SetHref(v string)

SetHref sets field value

func (*JSONHALLink) SetName

func (o *JSONHALLink) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*JSONHALLink) SetProfile

func (o *JSONHALLink) SetProfile(v string)

SetProfile gets a reference to the given string and assigns it to the Profile field.

func (*JSONHALLink) SetTitle

func (o *JSONHALLink) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*JSONHALLink) SetType

func (o *JSONHALLink) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (JSONHALLink) ToMap

func (o JSONHALLink) ToMap() (map[string]interface{}, error)

func (*JSONHALLink) UnmarshalJSON

func (o *JSONHALLink) UnmarshalJSON(data []byte) (err error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NotFoundError

type NotFoundError struct {
	Id                   uuid.UUID             `json:"id"`
	Code                 NotFoundErrorCode     `json:"code"`
	Message              string                `json:"message"`
	Details              []NotFoundErrorDetail `json:"details,omitempty"`
	AdditionalProperties map[string]interface{}
}

NotFoundError struct for NotFoundError

func NewNotFoundError

func NewNotFoundError(id uuid.UUID, code NotFoundErrorCode, message string) *NotFoundError

NewNotFoundError instantiates a new NotFoundError 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 NewNotFoundErrorWithDefaults

func NewNotFoundErrorWithDefaults() *NotFoundError

NewNotFoundErrorWithDefaults instantiates a new NotFoundError 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 (NotFoundError) Error

func (o NotFoundError) Error() string

func (*NotFoundError) GetCode

func (o *NotFoundError) GetCode() NotFoundErrorCode

GetCode returns the Code field value

func (*NotFoundError) GetCodeOk

func (o *NotFoundError) GetCodeOk() (*NotFoundErrorCode, bool)

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*NotFoundError) GetDetails

func (o *NotFoundError) GetDetails() []NotFoundErrorDetail

GetDetails returns the Details field value if set, zero value otherwise.

func (*NotFoundError) GetDetailsOk

func (o *NotFoundError) GetDetailsOk() ([]NotFoundErrorDetail, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotFoundError) GetId

func (o *NotFoundError) GetId() uuid.UUID

GetId returns the Id field value

func (*NotFoundError) GetIdOk

func (o *NotFoundError) GetIdOk() (*uuid.UUID, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*NotFoundError) GetMessage

func (o *NotFoundError) GetMessage() string

GetMessage returns the Message field value

func (*NotFoundError) GetMessageOk

func (o *NotFoundError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*NotFoundError) HasDetails

func (o *NotFoundError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (NotFoundError) LogValue

func (o NotFoundError) LogValue() slog.Value

func (NotFoundError) MarshalJSON

func (o NotFoundError) MarshalJSON() ([]byte, error)

func (*NotFoundError) SetCode

func (o *NotFoundError) SetCode(v NotFoundErrorCode)

SetCode sets field value

func (*NotFoundError) SetDetails

func (o *NotFoundError) SetDetails(v []NotFoundErrorDetail)

SetDetails gets a reference to the given []NotFoundErrorDetail and assigns it to the Details field.

func (*NotFoundError) SetId

func (o *NotFoundError) SetId(v uuid.UUID)

SetId sets field value

func (*NotFoundError) SetMessage

func (o *NotFoundError) SetMessage(v string)

SetMessage sets field value

func (NotFoundError) ToMap

func (o NotFoundError) ToMap() (map[string]interface{}, error)

func (*NotFoundError) UnmarshalJSON

func (o *NotFoundError) UnmarshalJSON(data []byte) (err error)

type NotFoundErrorCode

type NotFoundErrorCode string

NotFoundErrorCode the model 'NotFoundErrorCode'

const (
	NOTFOUNDERRORCODE_NOT_FOUND NotFoundErrorCode = "NOT_FOUND"
)

List of Not_Found_Error_Code

func NewNotFoundErrorCodeFromValue

func NewNotFoundErrorCodeFromValue(v string) (*NotFoundErrorCode, error)

NewNotFoundErrorCodeFromValue returns a pointer to a valid NotFoundErrorCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (NotFoundErrorCode) IsValid

func (v NotFoundErrorCode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (NotFoundErrorCode) Ptr

Ptr returns reference to Not_Found_Error_Code value

func (*NotFoundErrorCode) UnmarshalJSON

func (v *NotFoundErrorCode) UnmarshalJSON(src []byte) error

type NotFoundErrorDetail

type NotFoundErrorDetail struct {
	Code                 string                 `json:"code"`
	Message              string                 `json:"message"`
	InnerError           map[string]interface{} `json:"innerError,omitempty"`
	Target               *string                `json:"target,omitempty"`
	AdditionalProperties map[string]interface{}
}

NotFoundErrorDetail struct for NotFoundErrorDetail

func NewNotFoundErrorDetail

func NewNotFoundErrorDetail(code string, message string) *NotFoundErrorDetail

NewNotFoundErrorDetail instantiates a new NotFoundErrorDetail 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 NewNotFoundErrorDetailWithDefaults

func NewNotFoundErrorDetailWithDefaults() *NotFoundErrorDetail

NewNotFoundErrorDetailWithDefaults instantiates a new NotFoundErrorDetail 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 (*NotFoundErrorDetail) GetCode

func (o *NotFoundErrorDetail) GetCode() string

GetCode returns the Code field value

func (*NotFoundErrorDetail) GetCodeOk

func (o *NotFoundErrorDetail) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*NotFoundErrorDetail) GetInnerError

func (o *NotFoundErrorDetail) GetInnerError() map[string]interface{}

GetInnerError returns the InnerError field value if set, zero value otherwise.

func (*NotFoundErrorDetail) GetInnerErrorOk

func (o *NotFoundErrorDetail) GetInnerErrorOk() (map[string]interface{}, bool)

GetInnerErrorOk returns a tuple with the InnerError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotFoundErrorDetail) GetMessage

func (o *NotFoundErrorDetail) GetMessage() string

GetMessage returns the Message field value

func (*NotFoundErrorDetail) GetMessageOk

func (o *NotFoundErrorDetail) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*NotFoundErrorDetail) GetTarget

func (o *NotFoundErrorDetail) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*NotFoundErrorDetail) GetTargetOk

func (o *NotFoundErrorDetail) GetTargetOk() (*string, 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 (*NotFoundErrorDetail) HasInnerError

func (o *NotFoundErrorDetail) HasInnerError() bool

HasInnerError returns a boolean if a field has been set.

func (*NotFoundErrorDetail) HasTarget

func (o *NotFoundErrorDetail) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (NotFoundErrorDetail) LogValue

func (o NotFoundErrorDetail) LogValue() slog.Value

func (NotFoundErrorDetail) MarshalJSON

func (o NotFoundErrorDetail) MarshalJSON() ([]byte, error)

func (*NotFoundErrorDetail) SetCode

func (o *NotFoundErrorDetail) SetCode(v string)

SetCode sets field value

func (*NotFoundErrorDetail) SetInnerError

func (o *NotFoundErrorDetail) SetInnerError(v map[string]interface{})

SetInnerError gets a reference to the given map[string]interface{} and assigns it to the InnerError field.

func (*NotFoundErrorDetail) SetMessage

func (o *NotFoundErrorDetail) SetMessage(v string)

SetMessage sets field value

func (*NotFoundErrorDetail) SetTarget

func (o *NotFoundErrorDetail) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (NotFoundErrorDetail) ToMap

func (o NotFoundErrorDetail) ToMap() (map[string]interface{}, error)

func (*NotFoundErrorDetail) UnmarshalJSON

func (o *NotFoundErrorDetail) UnmarshalJSON(data []byte) (err error)

type NullableBadRequestError

type NullableBadRequestError struct {
	// contains filtered or unexported fields
}

func NewNullableBadRequestError

func NewNullableBadRequestError(val *BadRequestError) *NullableBadRequestError

func (NullableBadRequestError) Get

func (NullableBadRequestError) IsSet

func (v NullableBadRequestError) IsSet() bool

func (NullableBadRequestError) MarshalJSON

func (v NullableBadRequestError) MarshalJSON() ([]byte, error)

func (*NullableBadRequestError) Set

func (*NullableBadRequestError) UnmarshalJSON

func (v *NullableBadRequestError) UnmarshalJSON(src []byte) error

func (*NullableBadRequestError) Unset

func (v *NullableBadRequestError) Unset()

type NullableBadRequestErrorCode

type NullableBadRequestErrorCode struct {
	// contains filtered or unexported fields
}

func NewNullableBadRequestErrorCode

func NewNullableBadRequestErrorCode(val *BadRequestErrorCode) *NullableBadRequestErrorCode

func (NullableBadRequestErrorCode) Get

func (NullableBadRequestErrorCode) IsSet

func (NullableBadRequestErrorCode) MarshalJSON

func (v NullableBadRequestErrorCode) MarshalJSON() ([]byte, error)

func (*NullableBadRequestErrorCode) Set

func (*NullableBadRequestErrorCode) UnmarshalJSON

func (v *NullableBadRequestErrorCode) UnmarshalJSON(src []byte) error

func (*NullableBadRequestErrorCode) Unset

func (v *NullableBadRequestErrorCode) Unset()

type NullableBadRequestErrorDetail

type NullableBadRequestErrorDetail struct {
	// contains filtered or unexported fields
}

func (NullableBadRequestErrorDetail) Get

func (NullableBadRequestErrorDetail) IsSet

func (NullableBadRequestErrorDetail) MarshalJSON

func (v NullableBadRequestErrorDetail) MarshalJSON() ([]byte, error)

func (*NullableBadRequestErrorDetail) Set

func (*NullableBadRequestErrorDetail) UnmarshalJSON

func (v *NullableBadRequestErrorDetail) UnmarshalJSON(src []byte) error

func (*NullableBadRequestErrorDetail) Unset

func (v *NullableBadRequestErrorDetail) Unset()

type NullableBadRequestErrorDetailCode

type NullableBadRequestErrorDetailCode struct {
	// contains filtered or unexported fields
}

func (NullableBadRequestErrorDetailCode) Get

func (NullableBadRequestErrorDetailCode) IsSet

func (NullableBadRequestErrorDetailCode) MarshalJSON

func (v NullableBadRequestErrorDetailCode) MarshalJSON() ([]byte, error)

func (*NullableBadRequestErrorDetailCode) Set

func (*NullableBadRequestErrorDetailCode) UnmarshalJSON

func (v *NullableBadRequestErrorDetailCode) UnmarshalJSON(src []byte) error

func (*NullableBadRequestErrorDetailCode) Unset

type NullableBadRequestErrorDetailInnerError

type NullableBadRequestErrorDetailInnerError struct {
	// contains filtered or unexported fields
}

func (NullableBadRequestErrorDetailInnerError) Get

func (NullableBadRequestErrorDetailInnerError) IsSet

func (NullableBadRequestErrorDetailInnerError) MarshalJSON

func (v NullableBadRequestErrorDetailInnerError) MarshalJSON() ([]byte, error)

func (*NullableBadRequestErrorDetailInnerError) Set

func (*NullableBadRequestErrorDetailInnerError) UnmarshalJSON

func (v *NullableBadRequestErrorDetailInnerError) UnmarshalJSON(src []byte) error

func (*NullableBadRequestErrorDetailInnerError) 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 NullableDaVinciApplicationCollectionResponse

type NullableDaVinciApplicationCollectionResponse struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationCollectionResponse) Get

func (NullableDaVinciApplicationCollectionResponse) IsSet

func (NullableDaVinciApplicationCollectionResponse) MarshalJSON

func (*NullableDaVinciApplicationCollectionResponse) Set

func (*NullableDaVinciApplicationCollectionResponse) UnmarshalJSON

func (*NullableDaVinciApplicationCollectionResponse) Unset

type NullableDaVinciApplicationCollectionResponseEmbedded

type NullableDaVinciApplicationCollectionResponseEmbedded struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationCollectionResponseEmbedded) Get

func (NullableDaVinciApplicationCollectionResponseEmbedded) IsSet

func (NullableDaVinciApplicationCollectionResponseEmbedded) MarshalJSON

func (*NullableDaVinciApplicationCollectionResponseEmbedded) Set

func (*NullableDaVinciApplicationCollectionResponseEmbedded) UnmarshalJSON

func (*NullableDaVinciApplicationCollectionResponseEmbedded) Unset

type NullableDaVinciApplicationCollectionResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationCollectionResponseLinks) Get

func (NullableDaVinciApplicationCollectionResponseLinks) IsSet

func (NullableDaVinciApplicationCollectionResponseLinks) MarshalJSON

func (*NullableDaVinciApplicationCollectionResponseLinks) Set

func (*NullableDaVinciApplicationCollectionResponseLinks) UnmarshalJSON

func (*NullableDaVinciApplicationCollectionResponseLinks) Unset

type NullableDaVinciApplicationCreateRequest

type NullableDaVinciApplicationCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationCreateRequest) Get

func (NullableDaVinciApplicationCreateRequest) IsSet

func (NullableDaVinciApplicationCreateRequest) MarshalJSON

func (v NullableDaVinciApplicationCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableDaVinciApplicationCreateRequest) Set

func (*NullableDaVinciApplicationCreateRequest) UnmarshalJSON

func (v *NullableDaVinciApplicationCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableDaVinciApplicationCreateRequest) Unset

type NullableDaVinciApplicationReplaceRequest

type NullableDaVinciApplicationReplaceRequest struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationReplaceRequest) Get

func (NullableDaVinciApplicationReplaceRequest) IsSet

func (NullableDaVinciApplicationReplaceRequest) MarshalJSON

func (*NullableDaVinciApplicationReplaceRequest) Set

func (*NullableDaVinciApplicationReplaceRequest) UnmarshalJSON

func (v *NullableDaVinciApplicationReplaceRequest) UnmarshalJSON(src []byte) error

func (*NullableDaVinciApplicationReplaceRequest) Unset

type NullableDaVinciApplicationReplaceRequestOAuth

type NullableDaVinciApplicationReplaceRequestOAuth struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationReplaceRequestOAuth) Get

func (NullableDaVinciApplicationReplaceRequestOAuth) IsSet

func (NullableDaVinciApplicationReplaceRequestOAuth) MarshalJSON

func (*NullableDaVinciApplicationReplaceRequestOAuth) Set

func (*NullableDaVinciApplicationReplaceRequestOAuth) UnmarshalJSON

func (*NullableDaVinciApplicationReplaceRequestOAuth) Unset

type NullableDaVinciApplicationReplaceRequestOAuthGrantType

type NullableDaVinciApplicationReplaceRequestOAuthGrantType struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationReplaceRequestOAuthGrantType) Get

func (NullableDaVinciApplicationReplaceRequestOAuthGrantType) IsSet

func (NullableDaVinciApplicationReplaceRequestOAuthGrantType) MarshalJSON

func (*NullableDaVinciApplicationReplaceRequestOAuthGrantType) Set

func (*NullableDaVinciApplicationReplaceRequestOAuthGrantType) UnmarshalJSON

func (*NullableDaVinciApplicationReplaceRequestOAuthGrantType) Unset

type NullableDaVinciApplicationReplaceRequestOAuthScope

type NullableDaVinciApplicationReplaceRequestOAuthScope struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationReplaceRequestOAuthScope) Get

func (NullableDaVinciApplicationReplaceRequestOAuthScope) IsSet

func (NullableDaVinciApplicationReplaceRequestOAuthScope) MarshalJSON

func (*NullableDaVinciApplicationReplaceRequestOAuthScope) Set

func (*NullableDaVinciApplicationReplaceRequestOAuthScope) UnmarshalJSON

func (*NullableDaVinciApplicationReplaceRequestOAuthScope) Unset

type NullableDaVinciApplicationResponse

type NullableDaVinciApplicationResponse struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationResponse) Get

func (NullableDaVinciApplicationResponse) IsSet

func (NullableDaVinciApplicationResponse) MarshalJSON

func (v NullableDaVinciApplicationResponse) MarshalJSON() ([]byte, error)

func (*NullableDaVinciApplicationResponse) Set

func (*NullableDaVinciApplicationResponse) UnmarshalJSON

func (v *NullableDaVinciApplicationResponse) UnmarshalJSON(src []byte) error

func (*NullableDaVinciApplicationResponse) Unset

type NullableDaVinciApplicationResponseApiKey

type NullableDaVinciApplicationResponseApiKey struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationResponseApiKey) Get

func (NullableDaVinciApplicationResponseApiKey) IsSet

func (NullableDaVinciApplicationResponseApiKey) MarshalJSON

func (*NullableDaVinciApplicationResponseApiKey) Set

func (*NullableDaVinciApplicationResponseApiKey) UnmarshalJSON

func (v *NullableDaVinciApplicationResponseApiKey) UnmarshalJSON(src []byte) error

func (*NullableDaVinciApplicationResponseApiKey) Unset

type NullableDaVinciApplicationResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationResponseLinks) Get

func (NullableDaVinciApplicationResponseLinks) IsSet

func (NullableDaVinciApplicationResponseLinks) MarshalJSON

func (v NullableDaVinciApplicationResponseLinks) MarshalJSON() ([]byte, error)

func (*NullableDaVinciApplicationResponseLinks) Set

func (*NullableDaVinciApplicationResponseLinks) UnmarshalJSON

func (v *NullableDaVinciApplicationResponseLinks) UnmarshalJSON(src []byte) error

func (*NullableDaVinciApplicationResponseLinks) Unset

type NullableDaVinciApplicationResponseOAuth

type NullableDaVinciApplicationResponseOAuth struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationResponseOAuth) Get

func (NullableDaVinciApplicationResponseOAuth) IsSet

func (NullableDaVinciApplicationResponseOAuth) MarshalJSON

func (v NullableDaVinciApplicationResponseOAuth) MarshalJSON() ([]byte, error)

func (*NullableDaVinciApplicationResponseOAuth) Set

func (*NullableDaVinciApplicationResponseOAuth) UnmarshalJSON

func (v *NullableDaVinciApplicationResponseOAuth) UnmarshalJSON(src []byte) error

func (*NullableDaVinciApplicationResponseOAuth) Unset

type NullableDaVinciApplicationResponseOAuthGrantType

type NullableDaVinciApplicationResponseOAuthGrantType struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationResponseOAuthGrantType) Get

func (NullableDaVinciApplicationResponseOAuthGrantType) IsSet

func (NullableDaVinciApplicationResponseOAuthGrantType) MarshalJSON

func (*NullableDaVinciApplicationResponseOAuthGrantType) Set

func (*NullableDaVinciApplicationResponseOAuthGrantType) UnmarshalJSON

func (*NullableDaVinciApplicationResponseOAuthGrantType) Unset

type NullableDaVinciApplicationResponseOAuthScope

type NullableDaVinciApplicationResponseOAuthScope struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciApplicationResponseOAuthScope) Get

func (NullableDaVinciApplicationResponseOAuthScope) IsSet

func (NullableDaVinciApplicationResponseOAuthScope) MarshalJSON

func (*NullableDaVinciApplicationResponseOAuthScope) Set

func (*NullableDaVinciApplicationResponseOAuthScope) UnmarshalJSON

func (*NullableDaVinciApplicationResponseOAuthScope) Unset

type NullableDaVinciConnectorCollectionMinimalResponse

type NullableDaVinciConnectorCollectionMinimalResponse struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorCollectionMinimalResponse) Get

func (NullableDaVinciConnectorCollectionMinimalResponse) IsSet

func (NullableDaVinciConnectorCollectionMinimalResponse) MarshalJSON

func (*NullableDaVinciConnectorCollectionMinimalResponse) Set

func (*NullableDaVinciConnectorCollectionMinimalResponse) UnmarshalJSON

func (*NullableDaVinciConnectorCollectionMinimalResponse) Unset

type NullableDaVinciConnectorCollectionMinimalResponseEmbedded

type NullableDaVinciConnectorCollectionMinimalResponseEmbedded struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorCollectionMinimalResponseEmbedded) Get

func (NullableDaVinciConnectorCollectionMinimalResponseEmbedded) IsSet

func (NullableDaVinciConnectorCollectionMinimalResponseEmbedded) MarshalJSON

func (*NullableDaVinciConnectorCollectionMinimalResponseEmbedded) Set

func (*NullableDaVinciConnectorCollectionMinimalResponseEmbedded) UnmarshalJSON

func (*NullableDaVinciConnectorCollectionMinimalResponseEmbedded) Unset

type NullableDaVinciConnectorCollectionMinimalResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorCollectionMinimalResponseLinks) Get

func (NullableDaVinciConnectorCollectionMinimalResponseLinks) IsSet

func (NullableDaVinciConnectorCollectionMinimalResponseLinks) MarshalJSON

func (*NullableDaVinciConnectorCollectionMinimalResponseLinks) Set

func (*NullableDaVinciConnectorCollectionMinimalResponseLinks) UnmarshalJSON

func (*NullableDaVinciConnectorCollectionMinimalResponseLinks) Unset

type NullableDaVinciConnectorDetailsResponse

type NullableDaVinciConnectorDetailsResponse struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorDetailsResponse) Get

func (NullableDaVinciConnectorDetailsResponse) IsSet

func (NullableDaVinciConnectorDetailsResponse) MarshalJSON

func (v NullableDaVinciConnectorDetailsResponse) MarshalJSON() ([]byte, error)

func (*NullableDaVinciConnectorDetailsResponse) Set

func (*NullableDaVinciConnectorDetailsResponse) UnmarshalJSON

func (v *NullableDaVinciConnectorDetailsResponse) UnmarshalJSON(src []byte) error

func (*NullableDaVinciConnectorDetailsResponse) Unset

type NullableDaVinciConnectorDetailsResponseAccountConfigView

type NullableDaVinciConnectorDetailsResponseAccountConfigView struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorDetailsResponseAccountConfigView) Get

func (NullableDaVinciConnectorDetailsResponseAccountConfigView) IsSet

func (NullableDaVinciConnectorDetailsResponseAccountConfigView) MarshalJSON

func (*NullableDaVinciConnectorDetailsResponseAccountConfigView) Set

func (*NullableDaVinciConnectorDetailsResponseAccountConfigView) UnmarshalJSON

func (*NullableDaVinciConnectorDetailsResponseAccountConfigView) Unset

type NullableDaVinciConnectorDetailsResponseCredentialsView

type NullableDaVinciConnectorDetailsResponseCredentialsView struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorDetailsResponseCredentialsView) Get

func (NullableDaVinciConnectorDetailsResponseCredentialsView) IsSet

func (NullableDaVinciConnectorDetailsResponseCredentialsView) MarshalJSON

func (*NullableDaVinciConnectorDetailsResponseCredentialsView) Set

func (*NullableDaVinciConnectorDetailsResponseCredentialsView) UnmarshalJSON

func (*NullableDaVinciConnectorDetailsResponseCredentialsView) Unset

type NullableDaVinciConnectorDetailsResponseFlowSection

type NullableDaVinciConnectorDetailsResponseFlowSection struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorDetailsResponseFlowSection) Get

func (NullableDaVinciConnectorDetailsResponseFlowSection) IsSet

func (NullableDaVinciConnectorDetailsResponseFlowSection) MarshalJSON

func (*NullableDaVinciConnectorDetailsResponseFlowSection) Set

func (*NullableDaVinciConnectorDetailsResponseFlowSection) UnmarshalJSON

func (*NullableDaVinciConnectorDetailsResponseFlowSection) Unset

type NullableDaVinciConnectorDetailsResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorDetailsResponseLinks) Get

func (NullableDaVinciConnectorDetailsResponseLinks) IsSet

func (NullableDaVinciConnectorDetailsResponseLinks) MarshalJSON

func (*NullableDaVinciConnectorDetailsResponseLinks) Set

func (*NullableDaVinciConnectorDetailsResponseLinks) UnmarshalJSON

func (*NullableDaVinciConnectorDetailsResponseLinks) Unset

type NullableDaVinciConnectorDetailsResponseSection

type NullableDaVinciConnectorDetailsResponseSection struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorDetailsResponseSection) Get

func (NullableDaVinciConnectorDetailsResponseSection) IsSet

func (NullableDaVinciConnectorDetailsResponseSection) MarshalJSON

func (*NullableDaVinciConnectorDetailsResponseSection) Set

func (*NullableDaVinciConnectorDetailsResponseSection) UnmarshalJSON

func (*NullableDaVinciConnectorDetailsResponseSection) Unset

type NullableDaVinciConnectorInstanceCollectionResponse

type NullableDaVinciConnectorInstanceCollectionResponse struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorInstanceCollectionResponse) Get

func (NullableDaVinciConnectorInstanceCollectionResponse) IsSet

func (NullableDaVinciConnectorInstanceCollectionResponse) MarshalJSON

func (*NullableDaVinciConnectorInstanceCollectionResponse) Set

func (*NullableDaVinciConnectorInstanceCollectionResponse) UnmarshalJSON

func (*NullableDaVinciConnectorInstanceCollectionResponse) Unset

type NullableDaVinciConnectorInstanceCollectionResponseEmbedded

type NullableDaVinciConnectorInstanceCollectionResponseEmbedded struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorInstanceCollectionResponseEmbedded) Get

func (NullableDaVinciConnectorInstanceCollectionResponseEmbedded) IsSet

func (NullableDaVinciConnectorInstanceCollectionResponseEmbedded) MarshalJSON

func (*NullableDaVinciConnectorInstanceCollectionResponseEmbedded) Set

func (*NullableDaVinciConnectorInstanceCollectionResponseEmbedded) UnmarshalJSON

func (*NullableDaVinciConnectorInstanceCollectionResponseEmbedded) Unset

type NullableDaVinciConnectorInstanceCollectionResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorInstanceCollectionResponseLinks) Get

func (NullableDaVinciConnectorInstanceCollectionResponseLinks) IsSet

func (NullableDaVinciConnectorInstanceCollectionResponseLinks) MarshalJSON

func (*NullableDaVinciConnectorInstanceCollectionResponseLinks) Set

func (*NullableDaVinciConnectorInstanceCollectionResponseLinks) UnmarshalJSON

func (*NullableDaVinciConnectorInstanceCollectionResponseLinks) Unset

type NullableDaVinciConnectorInstanceCreateRequest

type NullableDaVinciConnectorInstanceCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorInstanceCreateRequest) Get

func (NullableDaVinciConnectorInstanceCreateRequest) IsSet

func (NullableDaVinciConnectorInstanceCreateRequest) MarshalJSON

func (*NullableDaVinciConnectorInstanceCreateRequest) Set

func (*NullableDaVinciConnectorInstanceCreateRequest) UnmarshalJSON

func (*NullableDaVinciConnectorInstanceCreateRequest) Unset

type NullableDaVinciConnectorInstanceReplaceRequest

type NullableDaVinciConnectorInstanceReplaceRequest struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorInstanceReplaceRequest) Get

func (NullableDaVinciConnectorInstanceReplaceRequest) IsSet

func (NullableDaVinciConnectorInstanceReplaceRequest) MarshalJSON

func (*NullableDaVinciConnectorInstanceReplaceRequest) Set

func (*NullableDaVinciConnectorInstanceReplaceRequest) UnmarshalJSON

func (*NullableDaVinciConnectorInstanceReplaceRequest) Unset

type NullableDaVinciConnectorInstanceResponse

type NullableDaVinciConnectorInstanceResponse struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorInstanceResponse) Get

func (NullableDaVinciConnectorInstanceResponse) IsSet

func (NullableDaVinciConnectorInstanceResponse) MarshalJSON

func (*NullableDaVinciConnectorInstanceResponse) Set

func (*NullableDaVinciConnectorInstanceResponse) UnmarshalJSON

func (v *NullableDaVinciConnectorInstanceResponse) UnmarshalJSON(src []byte) error

func (*NullableDaVinciConnectorInstanceResponse) Unset

type NullableDaVinciConnectorInstanceResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorInstanceResponseLinks) Get

func (NullableDaVinciConnectorInstanceResponseLinks) IsSet

func (NullableDaVinciConnectorInstanceResponseLinks) MarshalJSON

func (*NullableDaVinciConnectorInstanceResponseLinks) Set

func (*NullableDaVinciConnectorInstanceResponseLinks) UnmarshalJSON

func (*NullableDaVinciConnectorInstanceResponseLinks) Unset

type NullableDaVinciConnectorMinimalResponse

type NullableDaVinciConnectorMinimalResponse struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorMinimalResponse) Get

func (NullableDaVinciConnectorMinimalResponse) IsSet

func (NullableDaVinciConnectorMinimalResponse) MarshalJSON

func (v NullableDaVinciConnectorMinimalResponse) MarshalJSON() ([]byte, error)

func (*NullableDaVinciConnectorMinimalResponse) Set

func (*NullableDaVinciConnectorMinimalResponse) UnmarshalJSON

func (v *NullableDaVinciConnectorMinimalResponse) UnmarshalJSON(src []byte) error

func (*NullableDaVinciConnectorMinimalResponse) Unset

type NullableDaVinciConnectorMinimalResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorMinimalResponseLinks) Get

func (NullableDaVinciConnectorMinimalResponseLinks) IsSet

func (NullableDaVinciConnectorMinimalResponseLinks) MarshalJSON

func (*NullableDaVinciConnectorMinimalResponseLinks) Set

func (*NullableDaVinciConnectorMinimalResponseLinks) UnmarshalJSON

func (*NullableDaVinciConnectorMinimalResponseLinks) Unset

type NullableDaVinciConnectorMinimalResponseMetadata

type NullableDaVinciConnectorMinimalResponseMetadata struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorMinimalResponseMetadata) Get

func (NullableDaVinciConnectorMinimalResponseMetadata) IsSet

func (NullableDaVinciConnectorMinimalResponseMetadata) MarshalJSON

func (*NullableDaVinciConnectorMinimalResponseMetadata) Set

func (*NullableDaVinciConnectorMinimalResponseMetadata) UnmarshalJSON

func (*NullableDaVinciConnectorMinimalResponseMetadata) Unset

type NullableDaVinciConnectorMinimalResponseMetadataColors

type NullableDaVinciConnectorMinimalResponseMetadataColors struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorMinimalResponseMetadataColors) Get

func (NullableDaVinciConnectorMinimalResponseMetadataColors) IsSet

func (NullableDaVinciConnectorMinimalResponseMetadataColors) MarshalJSON

func (*NullableDaVinciConnectorMinimalResponseMetadataColors) Set

func (*NullableDaVinciConnectorMinimalResponseMetadataColors) UnmarshalJSON

func (*NullableDaVinciConnectorMinimalResponseMetadataColors) Unset

type NullableDaVinciConnectorMinimalResponseMetadataLogos

type NullableDaVinciConnectorMinimalResponseMetadataLogos struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorMinimalResponseMetadataLogos) Get

func (NullableDaVinciConnectorMinimalResponseMetadataLogos) IsSet

func (NullableDaVinciConnectorMinimalResponseMetadataLogos) MarshalJSON

func (*NullableDaVinciConnectorMinimalResponseMetadataLogos) Set

func (*NullableDaVinciConnectorMinimalResponseMetadataLogos) UnmarshalJSON

func (*NullableDaVinciConnectorMinimalResponseMetadataLogos) Unset

type NullableDaVinciConnectorMinimalResponseMetadataLogosCanvas

type NullableDaVinciConnectorMinimalResponseMetadataLogosCanvas struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorMinimalResponseMetadataLogosCanvas) Get

func (NullableDaVinciConnectorMinimalResponseMetadataLogosCanvas) IsSet

func (NullableDaVinciConnectorMinimalResponseMetadataLogosCanvas) MarshalJSON

func (*NullableDaVinciConnectorMinimalResponseMetadataLogosCanvas) Set

func (*NullableDaVinciConnectorMinimalResponseMetadataLogosCanvas) UnmarshalJSON

func (*NullableDaVinciConnectorMinimalResponseMetadataLogosCanvas) Unset

type NullableDaVinciConnectorMinimalResponseMetadataType

type NullableDaVinciConnectorMinimalResponseMetadataType struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciConnectorMinimalResponseMetadataType) Get

func (NullableDaVinciConnectorMinimalResponseMetadataType) IsSet

func (NullableDaVinciConnectorMinimalResponseMetadataType) MarshalJSON

func (*NullableDaVinciConnectorMinimalResponseMetadataType) Set

func (*NullableDaVinciConnectorMinimalResponseMetadataType) UnmarshalJSON

func (*NullableDaVinciConnectorMinimalResponseMetadataType) Unset

type NullableDaVinciFlowPolicyCollection

type NullableDaVinciFlowPolicyCollection struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCollection) Get

func (NullableDaVinciFlowPolicyCollection) IsSet

func (NullableDaVinciFlowPolicyCollection) MarshalJSON

func (v NullableDaVinciFlowPolicyCollection) MarshalJSON() ([]byte, error)

func (*NullableDaVinciFlowPolicyCollection) Set

func (*NullableDaVinciFlowPolicyCollection) UnmarshalJSON

func (v *NullableDaVinciFlowPolicyCollection) UnmarshalJSON(src []byte) error

func (*NullableDaVinciFlowPolicyCollection) Unset

type NullableDaVinciFlowPolicyCollectionEmbedded

type NullableDaVinciFlowPolicyCollectionEmbedded struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCollectionEmbedded) Get

func (NullableDaVinciFlowPolicyCollectionEmbedded) IsSet

func (NullableDaVinciFlowPolicyCollectionEmbedded) MarshalJSON

func (*NullableDaVinciFlowPolicyCollectionEmbedded) Set

func (*NullableDaVinciFlowPolicyCollectionEmbedded) UnmarshalJSON

func (v *NullableDaVinciFlowPolicyCollectionEmbedded) UnmarshalJSON(src []byte) error

func (*NullableDaVinciFlowPolicyCollectionEmbedded) Unset

type NullableDaVinciFlowPolicyCollectionLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCollectionLinks) Get

func (NullableDaVinciFlowPolicyCollectionLinks) IsSet

func (NullableDaVinciFlowPolicyCollectionLinks) MarshalJSON

func (*NullableDaVinciFlowPolicyCollectionLinks) Set

func (*NullableDaVinciFlowPolicyCollectionLinks) UnmarshalJSON

func (v *NullableDaVinciFlowPolicyCollectionLinks) UnmarshalJSON(src []byte) error

func (*NullableDaVinciFlowPolicyCollectionLinks) Unset

type NullableDaVinciFlowPolicyCreateRequest

type NullableDaVinciFlowPolicyCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCreateRequest) Get

func (NullableDaVinciFlowPolicyCreateRequest) IsSet

func (NullableDaVinciFlowPolicyCreateRequest) MarshalJSON

func (v NullableDaVinciFlowPolicyCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableDaVinciFlowPolicyCreateRequest) Set

func (*NullableDaVinciFlowPolicyCreateRequest) UnmarshalJSON

func (v *NullableDaVinciFlowPolicyCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableDaVinciFlowPolicyCreateRequest) Unset

type NullableDaVinciFlowPolicyCreateRequestFlowDistribution

type NullableDaVinciFlowPolicyCreateRequestFlowDistribution struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCreateRequestFlowDistribution) Get

func (NullableDaVinciFlowPolicyCreateRequestFlowDistribution) IsSet

func (NullableDaVinciFlowPolicyCreateRequestFlowDistribution) MarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestFlowDistribution) Set

func (*NullableDaVinciFlowPolicyCreateRequestFlowDistribution) UnmarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestFlowDistribution) Unset

type NullableDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode

type NullableDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) Get

func (NullableDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) IsSet

func (NullableDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) MarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) Set

func (*NullableDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) UnmarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestFlowDistributionSuccessNode) Unset

type NullableDaVinciFlowPolicyCreateRequestStatus

type NullableDaVinciFlowPolicyCreateRequestStatus struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCreateRequestStatus) Get

func (NullableDaVinciFlowPolicyCreateRequestStatus) IsSet

func (NullableDaVinciFlowPolicyCreateRequestStatus) MarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestStatus) Set

func (*NullableDaVinciFlowPolicyCreateRequestStatus) UnmarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestStatus) Unset

type NullableDaVinciFlowPolicyCreateRequestTrigger

type NullableDaVinciFlowPolicyCreateRequestTrigger struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCreateRequestTrigger) Get

func (NullableDaVinciFlowPolicyCreateRequestTrigger) IsSet

func (NullableDaVinciFlowPolicyCreateRequestTrigger) MarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestTrigger) Set

func (*NullableDaVinciFlowPolicyCreateRequestTrigger) UnmarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestTrigger) Unset

type NullableDaVinciFlowPolicyCreateRequestTriggerConfiguration

type NullableDaVinciFlowPolicyCreateRequestTriggerConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCreateRequestTriggerConfiguration) Get

func (NullableDaVinciFlowPolicyCreateRequestTriggerConfiguration) IsSet

func (NullableDaVinciFlowPolicyCreateRequestTriggerConfiguration) MarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestTriggerConfiguration) Set

func (*NullableDaVinciFlowPolicyCreateRequestTriggerConfiguration) UnmarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestTriggerConfiguration) Unset

type NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA

type NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) Get

func (NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) IsSet

func (NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) MarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) Set

func (*NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) UnmarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationMFA) Unset

type NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword

type NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) Get

func (NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) IsSet

func (NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) MarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) Set

func (*NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) UnmarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestTriggerConfigurationPassword) Unset

type NullableDaVinciFlowPolicyCreateRequestTriggerType

type NullableDaVinciFlowPolicyCreateRequestTriggerType struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyCreateRequestTriggerType) Get

func (NullableDaVinciFlowPolicyCreateRequestTriggerType) IsSet

func (NullableDaVinciFlowPolicyCreateRequestTriggerType) MarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestTriggerType) Set

func (*NullableDaVinciFlowPolicyCreateRequestTriggerType) UnmarshalJSON

func (*NullableDaVinciFlowPolicyCreateRequestTriggerType) Unset

type NullableDaVinciFlowPolicyEventsCollection

type NullableDaVinciFlowPolicyEventsCollection struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyEventsCollection) Get

func (NullableDaVinciFlowPolicyEventsCollection) IsSet

func (NullableDaVinciFlowPolicyEventsCollection) MarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollection) Set

func (*NullableDaVinciFlowPolicyEventsCollection) UnmarshalJSON

func (v *NullableDaVinciFlowPolicyEventsCollection) UnmarshalJSON(src []byte) error

func (*NullableDaVinciFlowPolicyEventsCollection) Unset

type NullableDaVinciFlowPolicyEventsCollectionEmbedded

type NullableDaVinciFlowPolicyEventsCollectionEmbedded struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyEventsCollectionEmbedded) Get

func (NullableDaVinciFlowPolicyEventsCollectionEmbedded) IsSet

func (NullableDaVinciFlowPolicyEventsCollectionEmbedded) MarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionEmbedded) Set

func (*NullableDaVinciFlowPolicyEventsCollectionEmbedded) UnmarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionEmbedded) Unset

type NullableDaVinciFlowPolicyEventsCollectionEmbeddedEvent

type NullableDaVinciFlowPolicyEventsCollectionEmbeddedEvent struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEvent) Get

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEvent) IsSet

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEvent) MarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEvent) Set

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEvent) UnmarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEvent) Unset

type NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment

type NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) Get

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) IsSet

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) MarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) Set

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) UnmarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEnvironment) Unset

type NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent

type NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) Get

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) IsSet

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) MarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) Set

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) UnmarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventEvent) Unset

type NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow

type NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) Get

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) IsSet

func (NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) MarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) Set

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) UnmarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionEmbeddedEventFlow) Unset

type NullableDaVinciFlowPolicyEventsCollectionLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyEventsCollectionLinks) Get

func (NullableDaVinciFlowPolicyEventsCollectionLinks) IsSet

func (NullableDaVinciFlowPolicyEventsCollectionLinks) MarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionLinks) Set

func (*NullableDaVinciFlowPolicyEventsCollectionLinks) UnmarshalJSON

func (*NullableDaVinciFlowPolicyEventsCollectionLinks) Unset

type NullableDaVinciFlowPolicyReplaceRequest

type NullableDaVinciFlowPolicyReplaceRequest struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyReplaceRequest) Get

func (NullableDaVinciFlowPolicyReplaceRequest) IsSet

func (NullableDaVinciFlowPolicyReplaceRequest) MarshalJSON

func (v NullableDaVinciFlowPolicyReplaceRequest) MarshalJSON() ([]byte, error)

func (*NullableDaVinciFlowPolicyReplaceRequest) Set

func (*NullableDaVinciFlowPolicyReplaceRequest) UnmarshalJSON

func (v *NullableDaVinciFlowPolicyReplaceRequest) UnmarshalJSON(src []byte) error

func (*NullableDaVinciFlowPolicyReplaceRequest) Unset

type NullableDaVinciFlowPolicyReplaceRequestFlowDistribution

type NullableDaVinciFlowPolicyReplaceRequestFlowDistribution struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyReplaceRequestFlowDistribution) Get

func (NullableDaVinciFlowPolicyReplaceRequestFlowDistribution) IsSet

func (NullableDaVinciFlowPolicyReplaceRequestFlowDistribution) MarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestFlowDistribution) Set

func (*NullableDaVinciFlowPolicyReplaceRequestFlowDistribution) UnmarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestFlowDistribution) Unset

type NullableDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode

type NullableDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) Get

func (NullableDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) IsSet

func (NullableDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) MarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) Set

func (*NullableDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) UnmarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestFlowDistributionSuccessNode) Unset

type NullableDaVinciFlowPolicyReplaceRequestStatus

type NullableDaVinciFlowPolicyReplaceRequestStatus struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyReplaceRequestStatus) Get

func (NullableDaVinciFlowPolicyReplaceRequestStatus) IsSet

func (NullableDaVinciFlowPolicyReplaceRequestStatus) MarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestStatus) Set

func (*NullableDaVinciFlowPolicyReplaceRequestStatus) UnmarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestStatus) Unset

type NullableDaVinciFlowPolicyReplaceRequestTrigger

type NullableDaVinciFlowPolicyReplaceRequestTrigger struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyReplaceRequestTrigger) Get

func (NullableDaVinciFlowPolicyReplaceRequestTrigger) IsSet

func (NullableDaVinciFlowPolicyReplaceRequestTrigger) MarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestTrigger) Set

func (*NullableDaVinciFlowPolicyReplaceRequestTrigger) UnmarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestTrigger) Unset

type NullableDaVinciFlowPolicyReplaceRequestTriggerConfiguration

type NullableDaVinciFlowPolicyReplaceRequestTriggerConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyReplaceRequestTriggerConfiguration) Get

func (NullableDaVinciFlowPolicyReplaceRequestTriggerConfiguration) IsSet

func (NullableDaVinciFlowPolicyReplaceRequestTriggerConfiguration) MarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerConfiguration) Set

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerConfiguration) UnmarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerConfiguration) Unset

type NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA

type NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) Get

func (NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) IsSet

func (NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) MarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) Set

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) UnmarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationMFA) Unset

type NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword

type NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) Get

func (NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) IsSet

func (NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) MarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) Set

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) UnmarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerConfigurationPassword) Unset

type NullableDaVinciFlowPolicyReplaceRequestTriggerType

type NullableDaVinciFlowPolicyReplaceRequestTriggerType struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyReplaceRequestTriggerType) Get

func (NullableDaVinciFlowPolicyReplaceRequestTriggerType) IsSet

func (NullableDaVinciFlowPolicyReplaceRequestTriggerType) MarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerType) Set

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerType) UnmarshalJSON

func (*NullableDaVinciFlowPolicyReplaceRequestTriggerType) Unset

type NullableDaVinciFlowPolicyResponse

type NullableDaVinciFlowPolicyResponse struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyResponse) Get

func (NullableDaVinciFlowPolicyResponse) IsSet

func (NullableDaVinciFlowPolicyResponse) MarshalJSON

func (v NullableDaVinciFlowPolicyResponse) MarshalJSON() ([]byte, error)

func (*NullableDaVinciFlowPolicyResponse) Set

func (*NullableDaVinciFlowPolicyResponse) UnmarshalJSON

func (v *NullableDaVinciFlowPolicyResponse) UnmarshalJSON(src []byte) error

func (*NullableDaVinciFlowPolicyResponse) Unset

type NullableDaVinciFlowPolicyResponseFlowDistribution

type NullableDaVinciFlowPolicyResponseFlowDistribution struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyResponseFlowDistribution) Get

func (NullableDaVinciFlowPolicyResponseFlowDistribution) IsSet

func (NullableDaVinciFlowPolicyResponseFlowDistribution) MarshalJSON

func (*NullableDaVinciFlowPolicyResponseFlowDistribution) Set

func (*NullableDaVinciFlowPolicyResponseFlowDistribution) UnmarshalJSON

func (*NullableDaVinciFlowPolicyResponseFlowDistribution) Unset

type NullableDaVinciFlowPolicyResponseFlowDistributionSuccessNode

type NullableDaVinciFlowPolicyResponseFlowDistributionSuccessNode struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyResponseFlowDistributionSuccessNode) Get

func (NullableDaVinciFlowPolicyResponseFlowDistributionSuccessNode) IsSet

func (NullableDaVinciFlowPolicyResponseFlowDistributionSuccessNode) MarshalJSON

func (*NullableDaVinciFlowPolicyResponseFlowDistributionSuccessNode) Set

func (*NullableDaVinciFlowPolicyResponseFlowDistributionSuccessNode) UnmarshalJSON

func (*NullableDaVinciFlowPolicyResponseFlowDistributionSuccessNode) Unset

type NullableDaVinciFlowPolicyResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyResponseLinks) Get

func (NullableDaVinciFlowPolicyResponseLinks) IsSet

func (NullableDaVinciFlowPolicyResponseLinks) MarshalJSON

func (v NullableDaVinciFlowPolicyResponseLinks) MarshalJSON() ([]byte, error)

func (*NullableDaVinciFlowPolicyResponseLinks) Set

func (*NullableDaVinciFlowPolicyResponseLinks) UnmarshalJSON

func (v *NullableDaVinciFlowPolicyResponseLinks) UnmarshalJSON(src []byte) error

func (*NullableDaVinciFlowPolicyResponseLinks) Unset

type NullableDaVinciFlowPolicyResponseStatus

type NullableDaVinciFlowPolicyResponseStatus struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyResponseStatus) Get

func (NullableDaVinciFlowPolicyResponseStatus) IsSet

func (NullableDaVinciFlowPolicyResponseStatus) MarshalJSON

func (v NullableDaVinciFlowPolicyResponseStatus) MarshalJSON() ([]byte, error)

func (*NullableDaVinciFlowPolicyResponseStatus) Set

func (*NullableDaVinciFlowPolicyResponseStatus) UnmarshalJSON

func (v *NullableDaVinciFlowPolicyResponseStatus) UnmarshalJSON(src []byte) error

func (*NullableDaVinciFlowPolicyResponseStatus) Unset

type NullableDaVinciFlowPolicyResponseTrigger

type NullableDaVinciFlowPolicyResponseTrigger struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyResponseTrigger) Get

func (NullableDaVinciFlowPolicyResponseTrigger) IsSet

func (NullableDaVinciFlowPolicyResponseTrigger) MarshalJSON

func (*NullableDaVinciFlowPolicyResponseTrigger) Set

func (*NullableDaVinciFlowPolicyResponseTrigger) UnmarshalJSON

func (v *NullableDaVinciFlowPolicyResponseTrigger) UnmarshalJSON(src []byte) error

func (*NullableDaVinciFlowPolicyResponseTrigger) Unset

type NullableDaVinciFlowPolicyResponseTriggerConfiguration

type NullableDaVinciFlowPolicyResponseTriggerConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyResponseTriggerConfiguration) Get

func (NullableDaVinciFlowPolicyResponseTriggerConfiguration) IsSet

func (NullableDaVinciFlowPolicyResponseTriggerConfiguration) MarshalJSON

func (*NullableDaVinciFlowPolicyResponseTriggerConfiguration) Set

func (*NullableDaVinciFlowPolicyResponseTriggerConfiguration) UnmarshalJSON

func (*NullableDaVinciFlowPolicyResponseTriggerConfiguration) Unset

type NullableDaVinciFlowPolicyResponseTriggerConfigurationMFA

type NullableDaVinciFlowPolicyResponseTriggerConfigurationMFA struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyResponseTriggerConfigurationMFA) Get

func (NullableDaVinciFlowPolicyResponseTriggerConfigurationMFA) IsSet

func (NullableDaVinciFlowPolicyResponseTriggerConfigurationMFA) MarshalJSON

func (*NullableDaVinciFlowPolicyResponseTriggerConfigurationMFA) Set

func (*NullableDaVinciFlowPolicyResponseTriggerConfigurationMFA) UnmarshalJSON

func (*NullableDaVinciFlowPolicyResponseTriggerConfigurationMFA) Unset

type NullableDaVinciFlowPolicyResponseTriggerConfigurationPassword

type NullableDaVinciFlowPolicyResponseTriggerConfigurationPassword struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciFlowPolicyResponseTriggerConfigurationPassword) Get

func (NullableDaVinciFlowPolicyResponseTriggerConfigurationPassword) IsSet

func (NullableDaVinciFlowPolicyResponseTriggerConfigurationPassword) MarshalJSON

func (*NullableDaVinciFlowPolicyResponseTriggerConfigurationPassword) Set

func (*NullableDaVinciFlowPolicyResponseTriggerConfigurationPassword) UnmarshalJSON

func (*NullableDaVinciFlowPolicyResponseTriggerConfigurationPassword) Unset

type NullableDaVinciVariableCollectionResponse

type NullableDaVinciVariableCollectionResponse struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableCollectionResponse) Get

func (NullableDaVinciVariableCollectionResponse) IsSet

func (NullableDaVinciVariableCollectionResponse) MarshalJSON

func (*NullableDaVinciVariableCollectionResponse) Set

func (*NullableDaVinciVariableCollectionResponse) UnmarshalJSON

func (v *NullableDaVinciVariableCollectionResponse) UnmarshalJSON(src []byte) error

func (*NullableDaVinciVariableCollectionResponse) Unset

type NullableDaVinciVariableCollectionResponseEmbedded

type NullableDaVinciVariableCollectionResponseEmbedded struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableCollectionResponseEmbedded) Get

func (NullableDaVinciVariableCollectionResponseEmbedded) IsSet

func (NullableDaVinciVariableCollectionResponseEmbedded) MarshalJSON

func (*NullableDaVinciVariableCollectionResponseEmbedded) Set

func (*NullableDaVinciVariableCollectionResponseEmbedded) UnmarshalJSON

func (*NullableDaVinciVariableCollectionResponseEmbedded) Unset

type NullableDaVinciVariableCollectionResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableCollectionResponseLinks) Get

func (NullableDaVinciVariableCollectionResponseLinks) IsSet

func (NullableDaVinciVariableCollectionResponseLinks) MarshalJSON

func (*NullableDaVinciVariableCollectionResponseLinks) Set

func (*NullableDaVinciVariableCollectionResponseLinks) UnmarshalJSON

func (*NullableDaVinciVariableCollectionResponseLinks) Unset

type NullableDaVinciVariableCreateRequest

type NullableDaVinciVariableCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableCreateRequest) Get

func (NullableDaVinciVariableCreateRequest) IsSet

func (NullableDaVinciVariableCreateRequest) MarshalJSON

func (v NullableDaVinciVariableCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableDaVinciVariableCreateRequest) Set

func (*NullableDaVinciVariableCreateRequest) UnmarshalJSON

func (v *NullableDaVinciVariableCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableDaVinciVariableCreateRequest) Unset

type NullableDaVinciVariableCreateRequestContext

type NullableDaVinciVariableCreateRequestContext struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableCreateRequestContext) Get

func (NullableDaVinciVariableCreateRequestContext) IsSet

func (NullableDaVinciVariableCreateRequestContext) MarshalJSON

func (*NullableDaVinciVariableCreateRequestContext) Set

func (*NullableDaVinciVariableCreateRequestContext) UnmarshalJSON

func (v *NullableDaVinciVariableCreateRequestContext) UnmarshalJSON(src []byte) error

func (*NullableDaVinciVariableCreateRequestContext) Unset

type NullableDaVinciVariableCreateRequestDataType

type NullableDaVinciVariableCreateRequestDataType struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableCreateRequestDataType) Get

func (NullableDaVinciVariableCreateRequestDataType) IsSet

func (NullableDaVinciVariableCreateRequestDataType) MarshalJSON

func (*NullableDaVinciVariableCreateRequestDataType) Set

func (*NullableDaVinciVariableCreateRequestDataType) UnmarshalJSON

func (*NullableDaVinciVariableCreateRequestDataType) Unset

type NullableDaVinciVariableCreateRequestValue

type NullableDaVinciVariableCreateRequestValue struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableCreateRequestValue) Get

func (NullableDaVinciVariableCreateRequestValue) IsSet

func (NullableDaVinciVariableCreateRequestValue) MarshalJSON

func (*NullableDaVinciVariableCreateRequestValue) Set

func (*NullableDaVinciVariableCreateRequestValue) UnmarshalJSON

func (v *NullableDaVinciVariableCreateRequestValue) UnmarshalJSON(src []byte) error

func (*NullableDaVinciVariableCreateRequestValue) Unset

type NullableDaVinciVariableReplaceRequest

type NullableDaVinciVariableReplaceRequest struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableReplaceRequest) Get

func (NullableDaVinciVariableReplaceRequest) IsSet

func (NullableDaVinciVariableReplaceRequest) MarshalJSON

func (v NullableDaVinciVariableReplaceRequest) MarshalJSON() ([]byte, error)

func (*NullableDaVinciVariableReplaceRequest) Set

func (*NullableDaVinciVariableReplaceRequest) UnmarshalJSON

func (v *NullableDaVinciVariableReplaceRequest) UnmarshalJSON(src []byte) error

func (*NullableDaVinciVariableReplaceRequest) Unset

type NullableDaVinciVariableReplaceRequestContext

type NullableDaVinciVariableReplaceRequestContext struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableReplaceRequestContext) Get

func (NullableDaVinciVariableReplaceRequestContext) IsSet

func (NullableDaVinciVariableReplaceRequestContext) MarshalJSON

func (*NullableDaVinciVariableReplaceRequestContext) Set

func (*NullableDaVinciVariableReplaceRequestContext) UnmarshalJSON

func (*NullableDaVinciVariableReplaceRequestContext) Unset

type NullableDaVinciVariableReplaceRequestDataType

type NullableDaVinciVariableReplaceRequestDataType struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableReplaceRequestDataType) Get

func (NullableDaVinciVariableReplaceRequestDataType) IsSet

func (NullableDaVinciVariableReplaceRequestDataType) MarshalJSON

func (*NullableDaVinciVariableReplaceRequestDataType) Set

func (*NullableDaVinciVariableReplaceRequestDataType) UnmarshalJSON

func (*NullableDaVinciVariableReplaceRequestDataType) Unset

type NullableDaVinciVariableReplaceRequestValue

type NullableDaVinciVariableReplaceRequestValue struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableReplaceRequestValue) Get

func (NullableDaVinciVariableReplaceRequestValue) IsSet

func (NullableDaVinciVariableReplaceRequestValue) MarshalJSON

func (*NullableDaVinciVariableReplaceRequestValue) Set

func (*NullableDaVinciVariableReplaceRequestValue) UnmarshalJSON

func (v *NullableDaVinciVariableReplaceRequestValue) UnmarshalJSON(src []byte) error

func (*NullableDaVinciVariableReplaceRequestValue) Unset

type NullableDaVinciVariableResponse

type NullableDaVinciVariableResponse struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableResponse) Get

func (NullableDaVinciVariableResponse) IsSet

func (NullableDaVinciVariableResponse) MarshalJSON

func (v NullableDaVinciVariableResponse) MarshalJSON() ([]byte, error)

func (*NullableDaVinciVariableResponse) Set

func (*NullableDaVinciVariableResponse) UnmarshalJSON

func (v *NullableDaVinciVariableResponse) UnmarshalJSON(src []byte) error

func (*NullableDaVinciVariableResponse) Unset

type NullableDaVinciVariableResponseDataType

type NullableDaVinciVariableResponseDataType struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableResponseDataType) Get

func (NullableDaVinciVariableResponseDataType) IsSet

func (NullableDaVinciVariableResponseDataType) MarshalJSON

func (v NullableDaVinciVariableResponseDataType) MarshalJSON() ([]byte, error)

func (*NullableDaVinciVariableResponseDataType) Set

func (*NullableDaVinciVariableResponseDataType) UnmarshalJSON

func (v *NullableDaVinciVariableResponseDataType) UnmarshalJSON(src []byte) error

func (*NullableDaVinciVariableResponseDataType) Unset

type NullableDaVinciVariableResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableResponseLinks) Get

func (NullableDaVinciVariableResponseLinks) IsSet

func (NullableDaVinciVariableResponseLinks) MarshalJSON

func (v NullableDaVinciVariableResponseLinks) MarshalJSON() ([]byte, error)

func (*NullableDaVinciVariableResponseLinks) Set

func (*NullableDaVinciVariableResponseLinks) UnmarshalJSON

func (v *NullableDaVinciVariableResponseLinks) UnmarshalJSON(src []byte) error

func (*NullableDaVinciVariableResponseLinks) Unset

type NullableDaVinciVariableResponseValue

type NullableDaVinciVariableResponseValue struct {
	// contains filtered or unexported fields
}

func (NullableDaVinciVariableResponseValue) Get

func (NullableDaVinciVariableResponseValue) IsSet

func (NullableDaVinciVariableResponseValue) MarshalJSON

func (v NullableDaVinciVariableResponseValue) MarshalJSON() ([]byte, error)

func (*NullableDaVinciVariableResponseValue) Set

func (*NullableDaVinciVariableResponseValue) UnmarshalJSON

func (v *NullableDaVinciVariableResponseValue) UnmarshalJSON(src []byte) error

func (*NullableDaVinciVariableResponseValue) Unset

type NullableDirectoryTotalIdentitiesCountCollectionResponse

type NullableDirectoryTotalIdentitiesCountCollectionResponse struct {
	// contains filtered or unexported fields
}

func (NullableDirectoryTotalIdentitiesCountCollectionResponse) Get

func (NullableDirectoryTotalIdentitiesCountCollectionResponse) IsSet

func (NullableDirectoryTotalIdentitiesCountCollectionResponse) MarshalJSON

func (*NullableDirectoryTotalIdentitiesCountCollectionResponse) Set

func (*NullableDirectoryTotalIdentitiesCountCollectionResponse) UnmarshalJSON

func (*NullableDirectoryTotalIdentitiesCountCollectionResponse) Unset

type NullableDirectoryTotalIdentitiesCountCollectionResponseEmbedded

type NullableDirectoryTotalIdentitiesCountCollectionResponseEmbedded struct {
	// contains filtered or unexported fields
}

func (NullableDirectoryTotalIdentitiesCountCollectionResponseEmbedded) Get

func (NullableDirectoryTotalIdentitiesCountCollectionResponseEmbedded) IsSet

func (NullableDirectoryTotalIdentitiesCountCollectionResponseEmbedded) MarshalJSON

func (*NullableDirectoryTotalIdentitiesCountCollectionResponseEmbedded) Set

func (*NullableDirectoryTotalIdentitiesCountCollectionResponseEmbedded) UnmarshalJSON

func (*NullableDirectoryTotalIdentitiesCountCollectionResponseEmbedded) Unset

type NullableDirectoryTotalIdentitiesCountCollectionResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableDirectoryTotalIdentitiesCountCollectionResponseLinks) Get

func (NullableDirectoryTotalIdentitiesCountCollectionResponseLinks) IsSet

func (NullableDirectoryTotalIdentitiesCountCollectionResponseLinks) MarshalJSON

func (*NullableDirectoryTotalIdentitiesCountCollectionResponseLinks) Set

func (*NullableDirectoryTotalIdentitiesCountCollectionResponseLinks) UnmarshalJSON

func (*NullableDirectoryTotalIdentitiesCountCollectionResponseLinks) Unset

type NullableDirectoryTotalIdentitiesCountResponse

type NullableDirectoryTotalIdentitiesCountResponse struct {
	// contains filtered or unexported fields
}

func (NullableDirectoryTotalIdentitiesCountResponse) Get

func (NullableDirectoryTotalIdentitiesCountResponse) IsSet

func (NullableDirectoryTotalIdentitiesCountResponse) MarshalJSON

func (*NullableDirectoryTotalIdentitiesCountResponse) Set

func (*NullableDirectoryTotalIdentitiesCountResponse) UnmarshalJSON

func (*NullableDirectoryTotalIdentitiesCountResponse) Unset

type NullableEnvironmentAPILimit

type NullableEnvironmentAPILimit struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentAPILimit

func NewNullableEnvironmentAPILimit(val *EnvironmentAPILimit) *NullableEnvironmentAPILimit

func (NullableEnvironmentAPILimit) Get

func (NullableEnvironmentAPILimit) IsSet

func (NullableEnvironmentAPILimit) MarshalJSON

func (v NullableEnvironmentAPILimit) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentAPILimit) Set

func (*NullableEnvironmentAPILimit) UnmarshalJSON

func (v *NullableEnvironmentAPILimit) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentAPILimit) Unset

func (v *NullableEnvironmentAPILimit) Unset()

type NullableEnvironmentBillOfMaterials

type NullableEnvironmentBillOfMaterials struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentBillOfMaterials) Get

func (NullableEnvironmentBillOfMaterials) IsSet

func (NullableEnvironmentBillOfMaterials) MarshalJSON

func (v NullableEnvironmentBillOfMaterials) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentBillOfMaterials) Set

func (*NullableEnvironmentBillOfMaterials) UnmarshalJSON

func (v *NullableEnvironmentBillOfMaterials) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentBillOfMaterials) Unset

type NullableEnvironmentBillOfMaterialsProduct

type NullableEnvironmentBillOfMaterialsProduct struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentBillOfMaterialsProduct) Get

func (NullableEnvironmentBillOfMaterialsProduct) IsSet

func (NullableEnvironmentBillOfMaterialsProduct) MarshalJSON

func (*NullableEnvironmentBillOfMaterialsProduct) Set

func (*NullableEnvironmentBillOfMaterialsProduct) UnmarshalJSON

func (v *NullableEnvironmentBillOfMaterialsProduct) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentBillOfMaterialsProduct) Unset

type NullableEnvironmentBillOfMaterialsProductBookmark

type NullableEnvironmentBillOfMaterialsProductBookmark struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentBillOfMaterialsProductBookmark) Get

func (NullableEnvironmentBillOfMaterialsProductBookmark) IsSet

func (NullableEnvironmentBillOfMaterialsProductBookmark) MarshalJSON

func (*NullableEnvironmentBillOfMaterialsProductBookmark) Set

func (*NullableEnvironmentBillOfMaterialsProductBookmark) UnmarshalJSON

func (*NullableEnvironmentBillOfMaterialsProductBookmark) Unset

type NullableEnvironmentBillOfMaterialsProductConsole

type NullableEnvironmentBillOfMaterialsProductConsole struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentBillOfMaterialsProductConsole) Get

func (NullableEnvironmentBillOfMaterialsProductConsole) IsSet

func (NullableEnvironmentBillOfMaterialsProductConsole) MarshalJSON

func (*NullableEnvironmentBillOfMaterialsProductConsole) Set

func (*NullableEnvironmentBillOfMaterialsProductConsole) UnmarshalJSON

func (*NullableEnvironmentBillOfMaterialsProductConsole) Unset

type NullableEnvironmentBillOfMaterialsProductType

type NullableEnvironmentBillOfMaterialsProductType struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentBillOfMaterialsProductType) Get

func (NullableEnvironmentBillOfMaterialsProductType) IsSet

func (NullableEnvironmentBillOfMaterialsProductType) MarshalJSON

func (*NullableEnvironmentBillOfMaterialsProductType) Set

func (*NullableEnvironmentBillOfMaterialsProductType) UnmarshalJSON

func (*NullableEnvironmentBillOfMaterialsProductType) Unset

type NullableEnvironmentBillOfMaterialsReplaceRequest

type NullableEnvironmentBillOfMaterialsReplaceRequest struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentBillOfMaterialsReplaceRequest) Get

func (NullableEnvironmentBillOfMaterialsReplaceRequest) IsSet

func (NullableEnvironmentBillOfMaterialsReplaceRequest) MarshalJSON

func (*NullableEnvironmentBillOfMaterialsReplaceRequest) Set

func (*NullableEnvironmentBillOfMaterialsReplaceRequest) UnmarshalJSON

func (*NullableEnvironmentBillOfMaterialsReplaceRequest) Unset

type NullableEnvironmentBillOfMaterialsResponse

type NullableEnvironmentBillOfMaterialsResponse struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentBillOfMaterialsResponse) Get

func (NullableEnvironmentBillOfMaterialsResponse) IsSet

func (NullableEnvironmentBillOfMaterialsResponse) MarshalJSON

func (*NullableEnvironmentBillOfMaterialsResponse) Set

func (*NullableEnvironmentBillOfMaterialsResponse) UnmarshalJSON

func (v *NullableEnvironmentBillOfMaterialsResponse) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentBillOfMaterialsResponse) Unset

type NullableEnvironmentBillOfMaterialsSolutionType

type NullableEnvironmentBillOfMaterialsSolutionType struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentBillOfMaterialsSolutionType) Get

func (NullableEnvironmentBillOfMaterialsSolutionType) IsSet

func (NullableEnvironmentBillOfMaterialsSolutionType) MarshalJSON

func (*NullableEnvironmentBillOfMaterialsSolutionType) Set

func (*NullableEnvironmentBillOfMaterialsSolutionType) UnmarshalJSON

func (*NullableEnvironmentBillOfMaterialsSolutionType) Unset

type NullableEnvironmentCapabilities

type NullableEnvironmentCapabilities struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentCapabilities) Get

func (NullableEnvironmentCapabilities) IsSet

func (NullableEnvironmentCapabilities) MarshalJSON

func (v NullableEnvironmentCapabilities) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentCapabilities) Set

func (*NullableEnvironmentCapabilities) UnmarshalJSON

func (v *NullableEnvironmentCapabilities) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentCapabilities) Unset

type NullableEnvironmentCapabilitiesLinks struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentCapabilitiesLinks) Get

func (NullableEnvironmentCapabilitiesLinks) IsSet

func (NullableEnvironmentCapabilitiesLinks) MarshalJSON

func (v NullableEnvironmentCapabilitiesLinks) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentCapabilitiesLinks) Set

func (*NullableEnvironmentCapabilitiesLinks) UnmarshalJSON

func (v *NullableEnvironmentCapabilitiesLinks) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentCapabilitiesLinks) Unset

type NullableEnvironmentCreateRequest

type NullableEnvironmentCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentCreateRequest) Get

func (NullableEnvironmentCreateRequest) IsSet

func (NullableEnvironmentCreateRequest) MarshalJSON

func (v NullableEnvironmentCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentCreateRequest) Set

func (*NullableEnvironmentCreateRequest) UnmarshalJSON

func (v *NullableEnvironmentCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentCreateRequest) Unset

type NullableEnvironmentLicense

type NullableEnvironmentLicense struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentLicense

func NewNullableEnvironmentLicense(val *EnvironmentLicense) *NullableEnvironmentLicense

func (NullableEnvironmentLicense) Get

func (NullableEnvironmentLicense) IsSet

func (v NullableEnvironmentLicense) IsSet() bool

func (NullableEnvironmentLicense) MarshalJSON

func (v NullableEnvironmentLicense) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentLicense) Set

func (*NullableEnvironmentLicense) UnmarshalJSON

func (v *NullableEnvironmentLicense) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentLicense) Unset

func (v *NullableEnvironmentLicense) Unset()

type NullableEnvironmentLicenseQuantities

type NullableEnvironmentLicenseQuantities struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentLicenseQuantities) Get

func (NullableEnvironmentLicenseQuantities) IsSet

func (NullableEnvironmentLicenseQuantities) MarshalJSON

func (v NullableEnvironmentLicenseQuantities) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentLicenseQuantities) Set

func (*NullableEnvironmentLicenseQuantities) UnmarshalJSON

func (v *NullableEnvironmentLicenseQuantities) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentLicenseQuantities) Unset

type NullableEnvironmentRegionCode

type NullableEnvironmentRegionCode struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentRegionCode) Get

func (NullableEnvironmentRegionCode) IsSet

func (NullableEnvironmentRegionCode) MarshalJSON

func (v NullableEnvironmentRegionCode) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentRegionCode) Set

func (*NullableEnvironmentRegionCode) UnmarshalJSON

func (v *NullableEnvironmentRegionCode) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentRegionCode) Unset

func (v *NullableEnvironmentRegionCode) Unset()

type NullableEnvironmentReplaceRequest

type NullableEnvironmentReplaceRequest struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentReplaceRequest) Get

func (NullableEnvironmentReplaceRequest) IsSet

func (NullableEnvironmentReplaceRequest) MarshalJSON

func (v NullableEnvironmentReplaceRequest) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentReplaceRequest) Set

func (*NullableEnvironmentReplaceRequest) UnmarshalJSON

func (v *NullableEnvironmentReplaceRequest) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentReplaceRequest) Unset

type NullableEnvironmentResponse

type NullableEnvironmentResponse struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentResponse

func NewNullableEnvironmentResponse(val *EnvironmentResponse) *NullableEnvironmentResponse

func (NullableEnvironmentResponse) Get

func (NullableEnvironmentResponse) IsSet

func (NullableEnvironmentResponse) MarshalJSON

func (v NullableEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentResponse) Set

func (*NullableEnvironmentResponse) UnmarshalJSON

func (v *NullableEnvironmentResponse) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentResponse) Unset

func (v *NullableEnvironmentResponse) Unset()
type NullableEnvironmentResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentResponseLinks) Get

func (NullableEnvironmentResponseLinks) IsSet

func (NullableEnvironmentResponseLinks) MarshalJSON

func (v NullableEnvironmentResponseLinks) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentResponseLinks) Set

func (*NullableEnvironmentResponseLinks) UnmarshalJSON

func (v *NullableEnvironmentResponseLinks) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentResponseLinks) Unset

type NullableEnvironmentStatusValue

type NullableEnvironmentStatusValue struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentStatusValue) Get

func (NullableEnvironmentStatusValue) IsSet

func (NullableEnvironmentStatusValue) MarshalJSON

func (v NullableEnvironmentStatusValue) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentStatusValue) Set

func (*NullableEnvironmentStatusValue) UnmarshalJSON

func (v *NullableEnvironmentStatusValue) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentStatusValue) Unset

func (v *NullableEnvironmentStatusValue) Unset()

type NullableEnvironmentTypeValue

type NullableEnvironmentTypeValue struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentTypeValue

func NewNullableEnvironmentTypeValue(val *EnvironmentTypeValue) *NullableEnvironmentTypeValue

func (NullableEnvironmentTypeValue) Get

func (NullableEnvironmentTypeValue) IsSet

func (NullableEnvironmentTypeValue) MarshalJSON

func (v NullableEnvironmentTypeValue) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentTypeValue) Set

func (*NullableEnvironmentTypeValue) UnmarshalJSON

func (v *NullableEnvironmentTypeValue) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentTypeValue) Unset

func (v *NullableEnvironmentTypeValue) Unset()

type NullableEnvironmentsCollectionResponse

type NullableEnvironmentsCollectionResponse struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentsCollectionResponse) Get

func (NullableEnvironmentsCollectionResponse) IsSet

func (NullableEnvironmentsCollectionResponse) MarshalJSON

func (v NullableEnvironmentsCollectionResponse) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentsCollectionResponse) Set

func (*NullableEnvironmentsCollectionResponse) UnmarshalJSON

func (v *NullableEnvironmentsCollectionResponse) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentsCollectionResponse) Unset

type NullableEnvironmentsCollectionResponseEmbedded

type NullableEnvironmentsCollectionResponseEmbedded struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentsCollectionResponseEmbedded) Get

func (NullableEnvironmentsCollectionResponseEmbedded) IsSet

func (NullableEnvironmentsCollectionResponseEmbedded) MarshalJSON

func (*NullableEnvironmentsCollectionResponseEmbedded) Set

func (*NullableEnvironmentsCollectionResponseEmbedded) UnmarshalJSON

func (*NullableEnvironmentsCollectionResponseEmbedded) Unset

type NullableEnvironmentsCollectionResponseLinks struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentsCollectionResponseLinks) Get

func (NullableEnvironmentsCollectionResponseLinks) IsSet

func (NullableEnvironmentsCollectionResponseLinks) MarshalJSON

func (*NullableEnvironmentsCollectionResponseLinks) Set

func (*NullableEnvironmentsCollectionResponseLinks) UnmarshalJSON

func (v *NullableEnvironmentsCollectionResponseLinks) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentsCollectionResponseLinks) 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 NullableForbiddenError

type NullableForbiddenError struct {
	// contains filtered or unexported fields
}

func NewNullableForbiddenError

func NewNullableForbiddenError(val *ForbiddenError) *NullableForbiddenError

func (NullableForbiddenError) Get

func (NullableForbiddenError) IsSet

func (v NullableForbiddenError) IsSet() bool

func (NullableForbiddenError) MarshalJSON

func (v NullableForbiddenError) MarshalJSON() ([]byte, error)

func (*NullableForbiddenError) Set

func (*NullableForbiddenError) UnmarshalJSON

func (v *NullableForbiddenError) UnmarshalJSON(src []byte) error

func (*NullableForbiddenError) Unset

func (v *NullableForbiddenError) Unset()

type NullableForbiddenErrorCode

type NullableForbiddenErrorCode struct {
	// contains filtered or unexported fields
}

func NewNullableForbiddenErrorCode

func NewNullableForbiddenErrorCode(val *ForbiddenErrorCode) *NullableForbiddenErrorCode

func (NullableForbiddenErrorCode) Get

func (NullableForbiddenErrorCode) IsSet

func (v NullableForbiddenErrorCode) IsSet() bool

func (NullableForbiddenErrorCode) MarshalJSON

func (v NullableForbiddenErrorCode) MarshalJSON() ([]byte, error)

func (*NullableForbiddenErrorCode) Set

func (*NullableForbiddenErrorCode) UnmarshalJSON

func (v *NullableForbiddenErrorCode) UnmarshalJSON(src []byte) error

func (*NullableForbiddenErrorCode) Unset

func (v *NullableForbiddenErrorCode) Unset()

type NullableForbiddenErrorDetail

type NullableForbiddenErrorDetail struct {
	// contains filtered or unexported fields
}

func NewNullableForbiddenErrorDetail

func NewNullableForbiddenErrorDetail(val *ForbiddenErrorDetail) *NullableForbiddenErrorDetail

func (NullableForbiddenErrorDetail) Get

func (NullableForbiddenErrorDetail) IsSet

func (NullableForbiddenErrorDetail) MarshalJSON

func (v NullableForbiddenErrorDetail) MarshalJSON() ([]byte, error)

func (*NullableForbiddenErrorDetail) Set

func (*NullableForbiddenErrorDetail) UnmarshalJSON

func (v *NullableForbiddenErrorDetail) UnmarshalJSON(src []byte) error

func (*NullableForbiddenErrorDetail) Unset

func (v *NullableForbiddenErrorDetail) Unset()

type NullableForbiddenErrorDetailCode

type NullableForbiddenErrorDetailCode struct {
	// contains filtered or unexported fields
}

func (NullableForbiddenErrorDetailCode) Get

func (NullableForbiddenErrorDetailCode) IsSet

func (NullableForbiddenErrorDetailCode) MarshalJSON

func (v NullableForbiddenErrorDetailCode) MarshalJSON() ([]byte, error)

func (*NullableForbiddenErrorDetailCode) Set

func (*NullableForbiddenErrorDetailCode) UnmarshalJSON

func (v *NullableForbiddenErrorDetailCode) UnmarshalJSON(src []byte) error

func (*NullableForbiddenErrorDetailCode) Unset

type NullableForbiddenErrorDetailInnerError

type NullableForbiddenErrorDetailInnerError struct {
	// contains filtered or unexported fields
}

func (NullableForbiddenErrorDetailInnerError) Get

func (NullableForbiddenErrorDetailInnerError) IsSet

func (NullableForbiddenErrorDetailInnerError) MarshalJSON

func (v NullableForbiddenErrorDetailInnerError) MarshalJSON() ([]byte, error)

func (*NullableForbiddenErrorDetailInnerError) Set

func (*NullableForbiddenErrorDetailInnerError) UnmarshalJSON

func (v *NullableForbiddenErrorDetailInnerError) UnmarshalJSON(src []byte) error

func (*NullableForbiddenErrorDetailInnerError) Unset

type NullableGeneralError

type NullableGeneralError struct {
	// contains filtered or unexported fields
}

func NewNullableGeneralError

func NewNullableGeneralError(val *GeneralError) *NullableGeneralError

func (NullableGeneralError) Get

func (NullableGeneralError) IsSet

func (v NullableGeneralError) IsSet() bool

func (NullableGeneralError) MarshalJSON

func (v NullableGeneralError) MarshalJSON() ([]byte, error)

func (*NullableGeneralError) Set

func (v *NullableGeneralError) Set(val *GeneralError)

func (*NullableGeneralError) UnmarshalJSON

func (v *NullableGeneralError) UnmarshalJSON(src []byte) error

func (*NullableGeneralError) Unset

func (v *NullableGeneralError) Unset()

type NullableGeneralErrorDetail

type NullableGeneralErrorDetail struct {
	// contains filtered or unexported fields
}

func NewNullableGeneralErrorDetail

func NewNullableGeneralErrorDetail(val *GeneralErrorDetail) *NullableGeneralErrorDetail

func (NullableGeneralErrorDetail) Get

func (NullableGeneralErrorDetail) IsSet

func (v NullableGeneralErrorDetail) IsSet() bool

func (NullableGeneralErrorDetail) MarshalJSON

func (v NullableGeneralErrorDetail) MarshalJSON() ([]byte, error)

func (*NullableGeneralErrorDetail) Set

func (*NullableGeneralErrorDetail) UnmarshalJSON

func (v *NullableGeneralErrorDetail) UnmarshalJSON(src []byte) error

func (*NullableGeneralErrorDetail) Unset

func (v *NullableGeneralErrorDetail) 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 NullableInternalServerError

type NullableInternalServerError struct {
	// contains filtered or unexported fields
}

func NewNullableInternalServerError

func NewNullableInternalServerError(val *InternalServerError) *NullableInternalServerError

func (NullableInternalServerError) Get

func (NullableInternalServerError) IsSet

func (NullableInternalServerError) MarshalJSON

func (v NullableInternalServerError) MarshalJSON() ([]byte, error)

func (*NullableInternalServerError) Set

func (*NullableInternalServerError) UnmarshalJSON

func (v *NullableInternalServerError) UnmarshalJSON(src []byte) error

func (*NullableInternalServerError) Unset

func (v *NullableInternalServerError) Unset()

type NullableInternalServerErrorCode

type NullableInternalServerErrorCode struct {
	// contains filtered or unexported fields
}

func (NullableInternalServerErrorCode) Get

func (NullableInternalServerErrorCode) IsSet

func (NullableInternalServerErrorCode) MarshalJSON

func (v NullableInternalServerErrorCode) MarshalJSON() ([]byte, error)

func (*NullableInternalServerErrorCode) Set

func (*NullableInternalServerErrorCode) UnmarshalJSON

func (v *NullableInternalServerErrorCode) UnmarshalJSON(src []byte) error

func (*NullableInternalServerErrorCode) Unset

type NullableInternalServerErrorDetail

type NullableInternalServerErrorDetail struct {
	// contains filtered or unexported fields
}

func (NullableInternalServerErrorDetail) Get

func (NullableInternalServerErrorDetail) IsSet

func (NullableInternalServerErrorDetail) MarshalJSON

func (v NullableInternalServerErrorDetail) MarshalJSON() ([]byte, error)

func (*NullableInternalServerErrorDetail) Set

func (*NullableInternalServerErrorDetail) UnmarshalJSON

func (v *NullableInternalServerErrorDetail) UnmarshalJSON(src []byte) error

func (*NullableInternalServerErrorDetail) Unset

type NullableJSONHALLink struct {
	// contains filtered or unexported fields
}
func NewNullableJSONHALLink(val *JSONHALLink) *NullableJSONHALLink

func (NullableJSONHALLink) Get

func (NullableJSONHALLink) IsSet

func (v NullableJSONHALLink) IsSet() bool

func (NullableJSONHALLink) MarshalJSON

func (v NullableJSONHALLink) MarshalJSON() ([]byte, error)

func (*NullableJSONHALLink) Set

func (v *NullableJSONHALLink) Set(val *JSONHALLink)

func (*NullableJSONHALLink) UnmarshalJSON

func (v *NullableJSONHALLink) UnmarshalJSON(src []byte) error

func (*NullableJSONHALLink) Unset

func (v *NullableJSONHALLink) Unset()

type NullableNotFoundError

type NullableNotFoundError struct {
	// contains filtered or unexported fields
}

func NewNullableNotFoundError

func NewNullableNotFoundError(val *NotFoundError) *NullableNotFoundError

func (NullableNotFoundError) Get

func (NullableNotFoundError) IsSet

func (v NullableNotFoundError) IsSet() bool

func (NullableNotFoundError) MarshalJSON

func (v NullableNotFoundError) MarshalJSON() ([]byte, error)

func (*NullableNotFoundError) Set

func (v *NullableNotFoundError) Set(val *NotFoundError)

func (*NullableNotFoundError) UnmarshalJSON

func (v *NullableNotFoundError) UnmarshalJSON(src []byte) error

func (*NullableNotFoundError) Unset

func (v *NullableNotFoundError) Unset()

type NullableNotFoundErrorCode

type NullableNotFoundErrorCode struct {
	// contains filtered or unexported fields
}

func NewNullableNotFoundErrorCode

func NewNullableNotFoundErrorCode(val *NotFoundErrorCode) *NullableNotFoundErrorCode

func (NullableNotFoundErrorCode) Get

func (NullableNotFoundErrorCode) IsSet

func (v NullableNotFoundErrorCode) IsSet() bool

func (NullableNotFoundErrorCode) MarshalJSON

func (v NullableNotFoundErrorCode) MarshalJSON() ([]byte, error)

func (*NullableNotFoundErrorCode) Set

func (*NullableNotFoundErrorCode) UnmarshalJSON

func (v *NullableNotFoundErrorCode) UnmarshalJSON(src []byte) error

func (*NullableNotFoundErrorCode) Unset

func (v *NullableNotFoundErrorCode) Unset()

type NullableNotFoundErrorDetail

type NullableNotFoundErrorDetail struct {
	// contains filtered or unexported fields
}

func NewNullableNotFoundErrorDetail

func NewNullableNotFoundErrorDetail(val *NotFoundErrorDetail) *NullableNotFoundErrorDetail

func (NullableNotFoundErrorDetail) Get

func (NullableNotFoundErrorDetail) IsSet

func (NullableNotFoundErrorDetail) MarshalJSON

func (v NullableNotFoundErrorDetail) MarshalJSON() ([]byte, error)

func (*NullableNotFoundErrorDetail) Set

func (*NullableNotFoundErrorDetail) UnmarshalJSON

func (v *NullableNotFoundErrorDetail) UnmarshalJSON(src []byte) error

func (*NullableNotFoundErrorDetail) Unset

func (v *NullableNotFoundErrorDetail) Unset()

type NullableResourceRelationshipDaVinci

type NullableResourceRelationshipDaVinci struct {
	// contains filtered or unexported fields
}

func (NullableResourceRelationshipDaVinci) Get

func (NullableResourceRelationshipDaVinci) IsSet

func (NullableResourceRelationshipDaVinci) MarshalJSON

func (v NullableResourceRelationshipDaVinci) MarshalJSON() ([]byte, error)

func (*NullableResourceRelationshipDaVinci) Set

func (*NullableResourceRelationshipDaVinci) UnmarshalJSON

func (v *NullableResourceRelationshipDaVinci) UnmarshalJSON(src []byte) error

func (*NullableResourceRelationshipDaVinci) Unset

type NullableResourceRelationshipDaVinciReadOnly

type NullableResourceRelationshipDaVinciReadOnly struct {
	// contains filtered or unexported fields
}

func (NullableResourceRelationshipDaVinciReadOnly) Get

func (NullableResourceRelationshipDaVinciReadOnly) IsSet

func (NullableResourceRelationshipDaVinciReadOnly) MarshalJSON

func (*NullableResourceRelationshipDaVinciReadOnly) Set

func (*NullableResourceRelationshipDaVinciReadOnly) UnmarshalJSON

func (v *NullableResourceRelationshipDaVinciReadOnly) UnmarshalJSON(src []byte) error

func (*NullableResourceRelationshipDaVinciReadOnly) Unset

type NullableResourceRelationshipGeneric

type NullableResourceRelationshipGeneric struct {
	// contains filtered or unexported fields
}

func (NullableResourceRelationshipGeneric) Get

func (NullableResourceRelationshipGeneric) IsSet

func (NullableResourceRelationshipGeneric) MarshalJSON

func (v NullableResourceRelationshipGeneric) MarshalJSON() ([]byte, error)

func (*NullableResourceRelationshipGeneric) Set

func (*NullableResourceRelationshipGeneric) UnmarshalJSON

func (v *NullableResourceRelationshipGeneric) UnmarshalJSON(src []byte) error

func (*NullableResourceRelationshipGeneric) Unset

type NullableResourceRelationshipReadOnly

type NullableResourceRelationshipReadOnly struct {
	// contains filtered or unexported fields
}

func (NullableResourceRelationshipReadOnly) Get

func (NullableResourceRelationshipReadOnly) IsSet

func (NullableResourceRelationshipReadOnly) MarshalJSON

func (v NullableResourceRelationshipReadOnly) MarshalJSON() ([]byte, error)

func (*NullableResourceRelationshipReadOnly) Set

func (*NullableResourceRelationshipReadOnly) UnmarshalJSON

func (v *NullableResourceRelationshipReadOnly) UnmarshalJSON(src []byte) error

func (*NullableResourceRelationshipReadOnly) 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 NullableTooManyRequestsError

type NullableTooManyRequestsError struct {
	// contains filtered or unexported fields
}

func NewNullableTooManyRequestsError

func NewNullableTooManyRequestsError(val *TooManyRequestsError) *NullableTooManyRequestsError

func (NullableTooManyRequestsError) Get

func (NullableTooManyRequestsError) IsSet

func (NullableTooManyRequestsError) MarshalJSON

func (v NullableTooManyRequestsError) MarshalJSON() ([]byte, error)

func (*NullableTooManyRequestsError) Set

func (*NullableTooManyRequestsError) UnmarshalJSON

func (v *NullableTooManyRequestsError) UnmarshalJSON(src []byte) error

func (*NullableTooManyRequestsError) Unset

func (v *NullableTooManyRequestsError) Unset()

type NullableTooManyRequestsErrorCode

type NullableTooManyRequestsErrorCode struct {
	// contains filtered or unexported fields
}

func (NullableTooManyRequestsErrorCode) Get

func (NullableTooManyRequestsErrorCode) IsSet

func (NullableTooManyRequestsErrorCode) MarshalJSON

func (v NullableTooManyRequestsErrorCode) MarshalJSON() ([]byte, error)

func (*NullableTooManyRequestsErrorCode) Set

func (*NullableTooManyRequestsErrorCode) UnmarshalJSON

func (v *NullableTooManyRequestsErrorCode) UnmarshalJSON(src []byte) error

func (*NullableTooManyRequestsErrorCode) Unset

type NullableTooManyRequestsErrorDetail

type NullableTooManyRequestsErrorDetail struct {
	// contains filtered or unexported fields
}

func (NullableTooManyRequestsErrorDetail) Get

func (NullableTooManyRequestsErrorDetail) IsSet

func (NullableTooManyRequestsErrorDetail) MarshalJSON

func (v NullableTooManyRequestsErrorDetail) MarshalJSON() ([]byte, error)

func (*NullableTooManyRequestsErrorDetail) Set

func (*NullableTooManyRequestsErrorDetail) UnmarshalJSON

func (v *NullableTooManyRequestsErrorDetail) UnmarshalJSON(src []byte) error

func (*NullableTooManyRequestsErrorDetail) Unset

type NullableTooManyRequestsErrorDetailCode

type NullableTooManyRequestsErrorDetailCode struct {
	// contains filtered or unexported fields
}

func (NullableTooManyRequestsErrorDetailCode) Get

func (NullableTooManyRequestsErrorDetailCode) IsSet

func (NullableTooManyRequestsErrorDetailCode) MarshalJSON

func (v NullableTooManyRequestsErrorDetailCode) MarshalJSON() ([]byte, error)

func (*NullableTooManyRequestsErrorDetailCode) Set

func (*NullableTooManyRequestsErrorDetailCode) UnmarshalJSON

func (v *NullableTooManyRequestsErrorDetailCode) UnmarshalJSON(src []byte) error

func (*NullableTooManyRequestsErrorDetailCode) Unset

type NullableTooManyRequestsErrorDetailInnerError

type NullableTooManyRequestsErrorDetailInnerError struct {
	// contains filtered or unexported fields
}

func (NullableTooManyRequestsErrorDetailInnerError) Get

func (NullableTooManyRequestsErrorDetailInnerError) IsSet

func (NullableTooManyRequestsErrorDetailInnerError) MarshalJSON

func (*NullableTooManyRequestsErrorDetailInnerError) Set

func (*NullableTooManyRequestsErrorDetailInnerError) UnmarshalJSON

func (*NullableTooManyRequestsErrorDetailInnerError) Unset

type NullableUnauthorizedError

type NullableUnauthorizedError struct {
	// contains filtered or unexported fields
}

func NewNullableUnauthorizedError

func NewNullableUnauthorizedError(val *UnauthorizedError) *NullableUnauthorizedError

func (NullableUnauthorizedError) Get

func (NullableUnauthorizedError) IsSet

func (v NullableUnauthorizedError) IsSet() bool

func (NullableUnauthorizedError) MarshalJSON

func (v NullableUnauthorizedError) MarshalJSON() ([]byte, error)

func (*NullableUnauthorizedError) Set

func (*NullableUnauthorizedError) UnmarshalJSON

func (v *NullableUnauthorizedError) UnmarshalJSON(src []byte) error

func (*NullableUnauthorizedError) Unset

func (v *NullableUnauthorizedError) Unset()

type NullableUnauthorizedErrorCode

type NullableUnauthorizedErrorCode struct {
	// contains filtered or unexported fields
}

func (NullableUnauthorizedErrorCode) Get

func (NullableUnauthorizedErrorCode) IsSet

func (NullableUnauthorizedErrorCode) MarshalJSON

func (v NullableUnauthorizedErrorCode) MarshalJSON() ([]byte, error)

func (*NullableUnauthorizedErrorCode) Set

func (*NullableUnauthorizedErrorCode) UnmarshalJSON

func (v *NullableUnauthorizedErrorCode) UnmarshalJSON(src []byte) error

func (*NullableUnauthorizedErrorCode) Unset

func (v *NullableUnauthorizedErrorCode) Unset()

type NullableUnauthorizedErrorDetail

type NullableUnauthorizedErrorDetail struct {
	// contains filtered or unexported fields
}

func (NullableUnauthorizedErrorDetail) Get

func (NullableUnauthorizedErrorDetail) IsSet

func (NullableUnauthorizedErrorDetail) MarshalJSON

func (v NullableUnauthorizedErrorDetail) MarshalJSON() ([]byte, error)

func (*NullableUnauthorizedErrorDetail) Set

func (*NullableUnauthorizedErrorDetail) UnmarshalJSON

func (v *NullableUnauthorizedErrorDetail) UnmarshalJSON(src []byte) error

func (*NullableUnauthorizedErrorDetail) Unset

type NullableUnauthorizedErrorDetailCode

type NullableUnauthorizedErrorDetailCode struct {
	// contains filtered or unexported fields
}

func (NullableUnauthorizedErrorDetailCode) Get

func (NullableUnauthorizedErrorDetailCode) IsSet

func (NullableUnauthorizedErrorDetailCode) MarshalJSON

func (v NullableUnauthorizedErrorDetailCode) MarshalJSON() ([]byte, error)

func (*NullableUnauthorizedErrorDetailCode) Set

func (*NullableUnauthorizedErrorDetailCode) UnmarshalJSON

func (v *NullableUnauthorizedErrorDetailCode) UnmarshalJSON(src []byte) error

func (*NullableUnauthorizedErrorDetailCode) Unset

type NullableUnsupportedMediaTypeError

type NullableUnsupportedMediaTypeError struct {
	// contains filtered or unexported fields
}

func (NullableUnsupportedMediaTypeError) Get

func (NullableUnsupportedMediaTypeError) IsSet

func (NullableUnsupportedMediaTypeError) MarshalJSON

func (v NullableUnsupportedMediaTypeError) MarshalJSON() ([]byte, error)

func (*NullableUnsupportedMediaTypeError) Set

func (*NullableUnsupportedMediaTypeError) UnmarshalJSON

func (v *NullableUnsupportedMediaTypeError) UnmarshalJSON(src []byte) error

func (*NullableUnsupportedMediaTypeError) Unset

type NullableUnsupportedMediaTypeErrorCode

type NullableUnsupportedMediaTypeErrorCode struct {
	// contains filtered or unexported fields
}

func (NullableUnsupportedMediaTypeErrorCode) Get

func (NullableUnsupportedMediaTypeErrorCode) IsSet

func (NullableUnsupportedMediaTypeErrorCode) MarshalJSON

func (v NullableUnsupportedMediaTypeErrorCode) MarshalJSON() ([]byte, error)

func (*NullableUnsupportedMediaTypeErrorCode) Set

func (*NullableUnsupportedMediaTypeErrorCode) UnmarshalJSON

func (v *NullableUnsupportedMediaTypeErrorCode) UnmarshalJSON(src []byte) error

func (*NullableUnsupportedMediaTypeErrorCode) Unset

type NullableUnsupportedMediaTypeErrorDetail

type NullableUnsupportedMediaTypeErrorDetail struct {
	// contains filtered or unexported fields
}

func (NullableUnsupportedMediaTypeErrorDetail) Get

func (NullableUnsupportedMediaTypeErrorDetail) IsSet

func (NullableUnsupportedMediaTypeErrorDetail) MarshalJSON

func (v NullableUnsupportedMediaTypeErrorDetail) MarshalJSON() ([]byte, error)

func (*NullableUnsupportedMediaTypeErrorDetail) Set

func (*NullableUnsupportedMediaTypeErrorDetail) UnmarshalJSON

func (v *NullableUnsupportedMediaTypeErrorDetail) UnmarshalJSON(src []byte) error

func (*NullableUnsupportedMediaTypeErrorDetail) Unset

type PagedCursor

type PagedCursor[T MappedNullable] struct {
	Data         *T
	HTTPResponse *http.Response
}

Paging

type PagedIterator

type PagedIterator[T MappedNullable] iter.Seq2[PagedCursor[T], error]

type ResourceRelationshipDaVinci

type ResourceRelationshipDaVinci struct {
	Id                   string `json:"id" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	AdditionalProperties map[string]interface{}
}

ResourceRelationshipDaVinci struct for ResourceRelationshipDaVinci

func NewResourceRelationshipDaVinci

func NewResourceRelationshipDaVinci(id string) *ResourceRelationshipDaVinci

NewResourceRelationshipDaVinci instantiates a new ResourceRelationshipDaVinci 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 NewResourceRelationshipDaVinciWithDefaults

func NewResourceRelationshipDaVinciWithDefaults() *ResourceRelationshipDaVinci

NewResourceRelationshipDaVinciWithDefaults instantiates a new ResourceRelationshipDaVinci 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 (*ResourceRelationshipDaVinci) GetId

GetId returns the Id field value

func (*ResourceRelationshipDaVinci) GetIdOk

func (o *ResourceRelationshipDaVinci) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (ResourceRelationshipDaVinci) LogValue

func (o ResourceRelationshipDaVinci) LogValue() slog.Value

func (ResourceRelationshipDaVinci) MarshalJSON

func (o ResourceRelationshipDaVinci) MarshalJSON() ([]byte, error)

func (*ResourceRelationshipDaVinci) SetId

func (o *ResourceRelationshipDaVinci) SetId(v string)

SetId sets field value

func (ResourceRelationshipDaVinci) ToMap

func (o ResourceRelationshipDaVinci) ToMap() (map[string]interface{}, error)

func (*ResourceRelationshipDaVinci) UnmarshalJSON

func (o *ResourceRelationshipDaVinci) UnmarshalJSON(data []byte) (err error)

type ResourceRelationshipDaVinciReadOnly

type ResourceRelationshipDaVinciReadOnly struct {
	Id                   string `json:"id" validate:"regexp=^(?=\\\\S)[\\\\p{L}\\\\p{M}\\\\p{N}\\\\p{So}\\/.'_ -]*(?!.*((<)|(\\\\$\\\\{)))"`
	AdditionalProperties map[string]interface{}
}

ResourceRelationshipDaVinciReadOnly struct for ResourceRelationshipDaVinciReadOnly

func NewResourceRelationshipDaVinciReadOnly

func NewResourceRelationshipDaVinciReadOnly(id string) *ResourceRelationshipDaVinciReadOnly

NewResourceRelationshipDaVinciReadOnly instantiates a new ResourceRelationshipDaVinciReadOnly 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 NewResourceRelationshipDaVinciReadOnlyWithDefaults

func NewResourceRelationshipDaVinciReadOnlyWithDefaults() *ResourceRelationshipDaVinciReadOnly

NewResourceRelationshipDaVinciReadOnlyWithDefaults instantiates a new ResourceRelationshipDaVinciReadOnly 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 (*ResourceRelationshipDaVinciReadOnly) GetId

GetId returns the Id field value

func (*ResourceRelationshipDaVinciReadOnly) GetIdOk

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (ResourceRelationshipDaVinciReadOnly) LogValue

func (ResourceRelationshipDaVinciReadOnly) MarshalJSON

func (o ResourceRelationshipDaVinciReadOnly) MarshalJSON() ([]byte, error)

func (*ResourceRelationshipDaVinciReadOnly) SetId

SetId sets field value

func (ResourceRelationshipDaVinciReadOnly) ToMap

func (o ResourceRelationshipDaVinciReadOnly) ToMap() (map[string]interface{}, error)

func (*ResourceRelationshipDaVinciReadOnly) UnmarshalJSON

func (o *ResourceRelationshipDaVinciReadOnly) UnmarshalJSON(data []byte) (err error)

type ResourceRelationshipGeneric

type ResourceRelationshipGeneric struct {
	Id                   *string `json:"id,omitempty"`
	AdditionalProperties map[string]interface{}
}

ResourceRelationshipGeneric struct for ResourceRelationshipGeneric

func NewResourceRelationshipGeneric

func NewResourceRelationshipGeneric() *ResourceRelationshipGeneric

NewResourceRelationshipGeneric instantiates a new ResourceRelationshipGeneric 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 NewResourceRelationshipGenericWithDefaults

func NewResourceRelationshipGenericWithDefaults() *ResourceRelationshipGeneric

NewResourceRelationshipGenericWithDefaults instantiates a new ResourceRelationshipGeneric 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 (*ResourceRelationshipGeneric) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*ResourceRelationshipGeneric) GetIdOk

func (o *ResourceRelationshipGeneric) 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 (*ResourceRelationshipGeneric) HasId

func (o *ResourceRelationshipGeneric) HasId() bool

HasId returns a boolean if a field has been set.

func (ResourceRelationshipGeneric) LogValue

func (o ResourceRelationshipGeneric) LogValue() slog.Value

func (ResourceRelationshipGeneric) MarshalJSON

func (o ResourceRelationshipGeneric) MarshalJSON() ([]byte, error)

func (*ResourceRelationshipGeneric) SetId

func (o *ResourceRelationshipGeneric) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (ResourceRelationshipGeneric) ToMap

func (o ResourceRelationshipGeneric) ToMap() (map[string]interface{}, error)

func (*ResourceRelationshipGeneric) UnmarshalJSON

func (o *ResourceRelationshipGeneric) UnmarshalJSON(data []byte) (err error)

type ResourceRelationshipReadOnly

type ResourceRelationshipReadOnly struct {
	Id                   uuid.UUID `json:"id"`
	AdditionalProperties map[string]interface{}
}

ResourceRelationshipReadOnly struct for ResourceRelationshipReadOnly

func NewResourceRelationshipReadOnly

func NewResourceRelationshipReadOnly(id uuid.UUID) *ResourceRelationshipReadOnly

NewResourceRelationshipReadOnly instantiates a new ResourceRelationshipReadOnly 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 NewResourceRelationshipReadOnlyWithDefaults

func NewResourceRelationshipReadOnlyWithDefaults() *ResourceRelationshipReadOnly

NewResourceRelationshipReadOnlyWithDefaults instantiates a new ResourceRelationshipReadOnly 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 (*ResourceRelationshipReadOnly) GetId

GetId returns the Id field value

func (*ResourceRelationshipReadOnly) GetIdOk

func (o *ResourceRelationshipReadOnly) GetIdOk() (*uuid.UUID, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (ResourceRelationshipReadOnly) LogValue

func (ResourceRelationshipReadOnly) MarshalJSON

func (o ResourceRelationshipReadOnly) MarshalJSON() ([]byte, error)

func (*ResourceRelationshipReadOnly) SetId

SetId sets field value

func (ResourceRelationshipReadOnly) ToMap

func (o ResourceRelationshipReadOnly) ToMap() (map[string]interface{}, error)

func (*ResourceRelationshipReadOnly) UnmarshalJSON

func (o *ResourceRelationshipReadOnly) UnmarshalJSON(data []byte) (err 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 TooManyRequestsError

type TooManyRequestsError struct {
	Id                   uuid.UUID                    `json:"id"`
	Code                 TooManyRequestsErrorCode     `json:"code"`
	Message              string                       `json:"message"`
	Details              []TooManyRequestsErrorDetail `json:"details,omitempty"`
	AdditionalProperties map[string]interface{}
}

TooManyRequestsError struct for TooManyRequestsError

func NewTooManyRequestsError

func NewTooManyRequestsError(id uuid.UUID, code TooManyRequestsErrorCode, message string) *TooManyRequestsError

NewTooManyRequestsError instantiates a new TooManyRequestsError 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 NewTooManyRequestsErrorWithDefaults

func NewTooManyRequestsErrorWithDefaults() *TooManyRequestsError

NewTooManyRequestsErrorWithDefaults instantiates a new TooManyRequestsError 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 (TooManyRequestsError) Error

func (o TooManyRequestsError) Error() string

func (*TooManyRequestsError) GetCode

GetCode returns the Code field value

func (*TooManyRequestsError) GetCodeOk

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*TooManyRequestsError) GetDetails

GetDetails returns the Details field value if set, zero value otherwise.

func (*TooManyRequestsError) GetDetailsOk

func (o *TooManyRequestsError) GetDetailsOk() ([]TooManyRequestsErrorDetail, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TooManyRequestsError) GetId

func (o *TooManyRequestsError) GetId() uuid.UUID

GetId returns the Id field value

func (*TooManyRequestsError) GetIdOk

func (o *TooManyRequestsError) GetIdOk() (*uuid.UUID, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*TooManyRequestsError) GetMessage

func (o *TooManyRequestsError) GetMessage() string

GetMessage returns the Message field value

func (*TooManyRequestsError) GetMessageOk

func (o *TooManyRequestsError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*TooManyRequestsError) HasDetails

func (o *TooManyRequestsError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (TooManyRequestsError) LogValue

func (o TooManyRequestsError) LogValue() slog.Value

func (TooManyRequestsError) MarshalJSON

func (o TooManyRequestsError) MarshalJSON() ([]byte, error)

func (*TooManyRequestsError) SetCode

SetCode sets field value

func (*TooManyRequestsError) SetDetails

SetDetails gets a reference to the given []TooManyRequestsErrorDetail and assigns it to the Details field.

func (*TooManyRequestsError) SetId

func (o *TooManyRequestsError) SetId(v uuid.UUID)

SetId sets field value

func (*TooManyRequestsError) SetMessage

func (o *TooManyRequestsError) SetMessage(v string)

SetMessage sets field value

func (TooManyRequestsError) ToMap

func (o TooManyRequestsError) ToMap() (map[string]interface{}, error)

func (*TooManyRequestsError) UnmarshalJSON

func (o *TooManyRequestsError) UnmarshalJSON(data []byte) (err error)

type TooManyRequestsErrorCode

type TooManyRequestsErrorCode string

TooManyRequestsErrorCode the model 'TooManyRequestsErrorCode'

const (
	TOOMANYREQUESTSERRORCODE_REQUEST_LIMITED TooManyRequestsErrorCode = "REQUEST_LIMITED"
)

List of Too_Many_Requests_Error_Code

func NewTooManyRequestsErrorCodeFromValue

func NewTooManyRequestsErrorCodeFromValue(v string) (*TooManyRequestsErrorCode, error)

NewTooManyRequestsErrorCodeFromValue returns a pointer to a valid TooManyRequestsErrorCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TooManyRequestsErrorCode) IsValid

func (v TooManyRequestsErrorCode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TooManyRequestsErrorCode) Ptr

Ptr returns reference to Too_Many_Requests_Error_Code value

func (*TooManyRequestsErrorCode) UnmarshalJSON

func (v *TooManyRequestsErrorCode) UnmarshalJSON(src []byte) error

type TooManyRequestsErrorDetail

type TooManyRequestsErrorDetail struct {
	Code                 TooManyRequestsErrorDetailCode        `json:"code"`
	Message              string                                `json:"message"`
	InnerError           *TooManyRequestsErrorDetailInnerError `json:"innerError,omitempty"`
	Target               *string                               `json:"target,omitempty"`
	AdditionalProperties map[string]interface{}
}

TooManyRequestsErrorDetail struct for TooManyRequestsErrorDetail

func NewTooManyRequestsErrorDetail

func NewTooManyRequestsErrorDetail(code TooManyRequestsErrorDetailCode, message string) *TooManyRequestsErrorDetail

NewTooManyRequestsErrorDetail instantiates a new TooManyRequestsErrorDetail 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 NewTooManyRequestsErrorDetailWithDefaults

func NewTooManyRequestsErrorDetailWithDefaults() *TooManyRequestsErrorDetail

NewTooManyRequestsErrorDetailWithDefaults instantiates a new TooManyRequestsErrorDetail 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 (*TooManyRequestsErrorDetail) GetCode

GetCode returns the Code field value

func (*TooManyRequestsErrorDetail) GetCodeOk

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*TooManyRequestsErrorDetail) GetInnerError

GetInnerError returns the InnerError field value if set, zero value otherwise.

func (*TooManyRequestsErrorDetail) GetInnerErrorOk

GetInnerErrorOk returns a tuple with the InnerError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TooManyRequestsErrorDetail) GetMessage

func (o *TooManyRequestsErrorDetail) GetMessage() string

GetMessage returns the Message field value

func (*TooManyRequestsErrorDetail) GetMessageOk

func (o *TooManyRequestsErrorDetail) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*TooManyRequestsErrorDetail) GetTarget

func (o *TooManyRequestsErrorDetail) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*TooManyRequestsErrorDetail) GetTargetOk

func (o *TooManyRequestsErrorDetail) GetTargetOk() (*string, 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 (*TooManyRequestsErrorDetail) HasInnerError

func (o *TooManyRequestsErrorDetail) HasInnerError() bool

HasInnerError returns a boolean if a field has been set.

func (*TooManyRequestsErrorDetail) HasTarget

func (o *TooManyRequestsErrorDetail) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (TooManyRequestsErrorDetail) LogValue

func (o TooManyRequestsErrorDetail) LogValue() slog.Value

func (TooManyRequestsErrorDetail) MarshalJSON

func (o TooManyRequestsErrorDetail) MarshalJSON() ([]byte, error)

func (*TooManyRequestsErrorDetail) SetCode

SetCode sets field value

func (*TooManyRequestsErrorDetail) SetInnerError

SetInnerError gets a reference to the given TooManyRequestsErrorDetailInnerError and assigns it to the InnerError field.

func (*TooManyRequestsErrorDetail) SetMessage

func (o *TooManyRequestsErrorDetail) SetMessage(v string)

SetMessage sets field value

func (*TooManyRequestsErrorDetail) SetTarget

func (o *TooManyRequestsErrorDetail) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (TooManyRequestsErrorDetail) ToMap

func (o TooManyRequestsErrorDetail) ToMap() (map[string]interface{}, error)

func (*TooManyRequestsErrorDetail) UnmarshalJSON

func (o *TooManyRequestsErrorDetail) UnmarshalJSON(data []byte) (err error)

type TooManyRequestsErrorDetailCode

type TooManyRequestsErrorDetailCode string

TooManyRequestsErrorDetailCode the model 'TooManyRequestsErrorDetailCode'

const (
	TOOMANYREQUESTSERRORDETAILCODE_LIMIT_EXCEEDED TooManyRequestsErrorDetailCode = "LIMIT_EXCEEDED"
	TOOMANYREQUESTSERRORDETAILCODE_QUOTA_EXCEEDED TooManyRequestsErrorDetailCode = "QUOTA_EXCEEDED"
)

List of Too_Many_Requests_Error_Detail_Code

func NewTooManyRequestsErrorDetailCodeFromValue

func NewTooManyRequestsErrorDetailCodeFromValue(v string) (*TooManyRequestsErrorDetailCode, error)

NewTooManyRequestsErrorDetailCodeFromValue returns a pointer to a valid TooManyRequestsErrorDetailCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TooManyRequestsErrorDetailCode) IsValid

IsValid return true if the value is valid for the enum, false otherwise

func (TooManyRequestsErrorDetailCode) Ptr

Ptr returns reference to Too_Many_Requests_Error_Detail_Code value

func (*TooManyRequestsErrorDetailCode) UnmarshalJSON

func (v *TooManyRequestsErrorDetailCode) UnmarshalJSON(src []byte) error

type TooManyRequestsErrorDetailInnerError

type TooManyRequestsErrorDetailInnerError struct {
	QuotaLimit           *float32   `json:"quotaLimit,omitempty"`
	QuotaResetTime       *time.Time `json:"quotaResetTime,omitempty"`
	RetryAfter           *time.Time `json:"retryAfter,omitempty"`
	AdditionalProperties map[string]interface{}
}

TooManyRequestsErrorDetailInnerError struct for TooManyRequestsErrorDetailInnerError

func NewTooManyRequestsErrorDetailInnerError

func NewTooManyRequestsErrorDetailInnerError() *TooManyRequestsErrorDetailInnerError

NewTooManyRequestsErrorDetailInnerError instantiates a new TooManyRequestsErrorDetailInnerError 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 NewTooManyRequestsErrorDetailInnerErrorWithDefaults

func NewTooManyRequestsErrorDetailInnerErrorWithDefaults() *TooManyRequestsErrorDetailInnerError

NewTooManyRequestsErrorDetailInnerErrorWithDefaults instantiates a new TooManyRequestsErrorDetailInnerError 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 (*TooManyRequestsErrorDetailInnerError) GetQuotaLimit

func (o *TooManyRequestsErrorDetailInnerError) GetQuotaLimit() float32

GetQuotaLimit returns the QuotaLimit field value if set, zero value otherwise.

func (*TooManyRequestsErrorDetailInnerError) GetQuotaLimitOk

func (o *TooManyRequestsErrorDetailInnerError) GetQuotaLimitOk() (*float32, bool)

GetQuotaLimitOk returns a tuple with the QuotaLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TooManyRequestsErrorDetailInnerError) GetQuotaResetTime

func (o *TooManyRequestsErrorDetailInnerError) GetQuotaResetTime() time.Time

GetQuotaResetTime returns the QuotaResetTime field value if set, zero value otherwise.

func (*TooManyRequestsErrorDetailInnerError) GetQuotaResetTimeOk

func (o *TooManyRequestsErrorDetailInnerError) GetQuotaResetTimeOk() (*time.Time, bool)

GetQuotaResetTimeOk returns a tuple with the QuotaResetTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TooManyRequestsErrorDetailInnerError) GetRetryAfter

func (o *TooManyRequestsErrorDetailInnerError) GetRetryAfter() time.Time

GetRetryAfter returns the RetryAfter field value if set, zero value otherwise.

func (*TooManyRequestsErrorDetailInnerError) GetRetryAfterOk

func (o *TooManyRequestsErrorDetailInnerError) GetRetryAfterOk() (*time.Time, bool)

GetRetryAfterOk returns a tuple with the RetryAfter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TooManyRequestsErrorDetailInnerError) HasQuotaLimit

func (o *TooManyRequestsErrorDetailInnerError) HasQuotaLimit() bool

HasQuotaLimit returns a boolean if a field has been set.

func (*TooManyRequestsErrorDetailInnerError) HasQuotaResetTime

func (o *TooManyRequestsErrorDetailInnerError) HasQuotaResetTime() bool

HasQuotaResetTime returns a boolean if a field has been set.

func (*TooManyRequestsErrorDetailInnerError) HasRetryAfter

func (o *TooManyRequestsErrorDetailInnerError) HasRetryAfter() bool

HasRetryAfter returns a boolean if a field has been set.

func (TooManyRequestsErrorDetailInnerError) LogValue

func (TooManyRequestsErrorDetailInnerError) MarshalJSON

func (o TooManyRequestsErrorDetailInnerError) MarshalJSON() ([]byte, error)

func (*TooManyRequestsErrorDetailInnerError) SetQuotaLimit

func (o *TooManyRequestsErrorDetailInnerError) SetQuotaLimit(v float32)

SetQuotaLimit gets a reference to the given float32 and assigns it to the QuotaLimit field.

func (*TooManyRequestsErrorDetailInnerError) SetQuotaResetTime

func (o *TooManyRequestsErrorDetailInnerError) SetQuotaResetTime(v time.Time)

SetQuotaResetTime gets a reference to the given time.Time and assigns it to the QuotaResetTime field.

func (*TooManyRequestsErrorDetailInnerError) SetRetryAfter

func (o *TooManyRequestsErrorDetailInnerError) SetRetryAfter(v time.Time)

SetRetryAfter gets a reference to the given time.Time and assigns it to the RetryAfter field.

func (TooManyRequestsErrorDetailInnerError) ToMap

func (o TooManyRequestsErrorDetailInnerError) ToMap() (map[string]interface{}, error)

func (*TooManyRequestsErrorDetailInnerError) UnmarshalJSON

func (o *TooManyRequestsErrorDetailInnerError) UnmarshalJSON(data []byte) (err error)

type UnauthorizedError

type UnauthorizedError struct {
	Id                   uuid.UUID                 `json:"id"`
	Code                 UnauthorizedErrorCode     `json:"code"`
	Message              string                    `json:"message"`
	Details              []UnauthorizedErrorDetail `json:"details,omitempty"`
	AdditionalProperties map[string]interface{}
}

UnauthorizedError struct for UnauthorizedError

func NewUnauthorizedError

func NewUnauthorizedError(id uuid.UUID, code UnauthorizedErrorCode, message string) *UnauthorizedError

NewUnauthorizedError instantiates a new UnauthorizedError 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 NewUnauthorizedErrorWithDefaults

func NewUnauthorizedErrorWithDefaults() *UnauthorizedError

NewUnauthorizedErrorWithDefaults instantiates a new UnauthorizedError 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 (UnauthorizedError) Error

func (o UnauthorizedError) Error() string

func (*UnauthorizedError) GetCode

GetCode returns the Code field value

func (*UnauthorizedError) GetCodeOk

func (o *UnauthorizedError) GetCodeOk() (*UnauthorizedErrorCode, bool)

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*UnauthorizedError) GetDetails

func (o *UnauthorizedError) GetDetails() []UnauthorizedErrorDetail

GetDetails returns the Details field value if set, zero value otherwise.

func (*UnauthorizedError) GetDetailsOk

func (o *UnauthorizedError) GetDetailsOk() ([]UnauthorizedErrorDetail, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UnauthorizedError) GetId

func (o *UnauthorizedError) GetId() uuid.UUID

GetId returns the Id field value

func (*UnauthorizedError) GetIdOk

func (o *UnauthorizedError) GetIdOk() (*uuid.UUID, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UnauthorizedError) GetMessage

func (o *UnauthorizedError) GetMessage() string

GetMessage returns the Message field value

func (*UnauthorizedError) GetMessageOk

func (o *UnauthorizedError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*UnauthorizedError) HasDetails

func (o *UnauthorizedError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (UnauthorizedError) LogValue

func (o UnauthorizedError) LogValue() slog.Value

func (UnauthorizedError) MarshalJSON

func (o UnauthorizedError) MarshalJSON() ([]byte, error)

func (*UnauthorizedError) SetCode

SetCode sets field value

func (*UnauthorizedError) SetDetails

func (o *UnauthorizedError) SetDetails(v []UnauthorizedErrorDetail)

SetDetails gets a reference to the given []UnauthorizedErrorDetail and assigns it to the Details field.

func (*UnauthorizedError) SetId

func (o *UnauthorizedError) SetId(v uuid.UUID)

SetId sets field value

func (*UnauthorizedError) SetMessage

func (o *UnauthorizedError) SetMessage(v string)

SetMessage sets field value

func (UnauthorizedError) ToMap

func (o UnauthorizedError) ToMap() (map[string]interface{}, error)

func (*UnauthorizedError) UnmarshalJSON

func (o *UnauthorizedError) UnmarshalJSON(data []byte) (err error)

type UnauthorizedErrorCode

type UnauthorizedErrorCode string

UnauthorizedErrorCode the model 'UnauthorizedErrorCode'

const (
	UNAUTHORIZEDERRORCODE_ACCESS_FAILED UnauthorizedErrorCode = "ACCESS_FAILED"
)

List of Unauthorized_Error_Code

func NewUnauthorizedErrorCodeFromValue

func NewUnauthorizedErrorCodeFromValue(v string) (*UnauthorizedErrorCode, error)

NewUnauthorizedErrorCodeFromValue returns a pointer to a valid UnauthorizedErrorCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (UnauthorizedErrorCode) IsValid

func (v UnauthorizedErrorCode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (UnauthorizedErrorCode) Ptr

Ptr returns reference to Unauthorized_Error_Code value

func (*UnauthorizedErrorCode) UnmarshalJSON

func (v *UnauthorizedErrorCode) UnmarshalJSON(src []byte) error

type UnauthorizedErrorDetail

type UnauthorizedErrorDetail struct {
	Code                 UnauthorizedErrorDetailCode `json:"code"`
	Message              string                      `json:"message"`
	InnerError           map[string]interface{}      `json:"innerError,omitempty"`
	Target               *string                     `json:"target,omitempty"`
	AdditionalProperties map[string]interface{}
}

UnauthorizedErrorDetail struct for UnauthorizedErrorDetail

func NewUnauthorizedErrorDetail

func NewUnauthorizedErrorDetail(code UnauthorizedErrorDetailCode, message string) *UnauthorizedErrorDetail

NewUnauthorizedErrorDetail instantiates a new UnauthorizedErrorDetail 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 NewUnauthorizedErrorDetailWithDefaults

func NewUnauthorizedErrorDetailWithDefaults() *UnauthorizedErrorDetail

NewUnauthorizedErrorDetailWithDefaults instantiates a new UnauthorizedErrorDetail 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 (*UnauthorizedErrorDetail) GetCode

GetCode returns the Code field value

func (*UnauthorizedErrorDetail) GetCodeOk

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*UnauthorizedErrorDetail) GetInnerError

func (o *UnauthorizedErrorDetail) GetInnerError() map[string]interface{}

GetInnerError returns the InnerError field value if set, zero value otherwise.

func (*UnauthorizedErrorDetail) GetInnerErrorOk

func (o *UnauthorizedErrorDetail) GetInnerErrorOk() (map[string]interface{}, bool)

GetInnerErrorOk returns a tuple with the InnerError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UnauthorizedErrorDetail) GetMessage

func (o *UnauthorizedErrorDetail) GetMessage() string

GetMessage returns the Message field value

func (*UnauthorizedErrorDetail) GetMessageOk

func (o *UnauthorizedErrorDetail) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*UnauthorizedErrorDetail) GetTarget

func (o *UnauthorizedErrorDetail) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*UnauthorizedErrorDetail) GetTargetOk

func (o *UnauthorizedErrorDetail) GetTargetOk() (*string, 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 (*UnauthorizedErrorDetail) HasInnerError

func (o *UnauthorizedErrorDetail) HasInnerError() bool

HasInnerError returns a boolean if a field has been set.

func (*UnauthorizedErrorDetail) HasTarget

func (o *UnauthorizedErrorDetail) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (UnauthorizedErrorDetail) LogValue

func (o UnauthorizedErrorDetail) LogValue() slog.Value

func (UnauthorizedErrorDetail) MarshalJSON

func (o UnauthorizedErrorDetail) MarshalJSON() ([]byte, error)

func (*UnauthorizedErrorDetail) SetCode

SetCode sets field value

func (*UnauthorizedErrorDetail) SetInnerError

func (o *UnauthorizedErrorDetail) SetInnerError(v map[string]interface{})

SetInnerError gets a reference to the given map[string]interface{} and assigns it to the InnerError field.

func (*UnauthorizedErrorDetail) SetMessage

func (o *UnauthorizedErrorDetail) SetMessage(v string)

SetMessage sets field value

func (*UnauthorizedErrorDetail) SetTarget

func (o *UnauthorizedErrorDetail) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (UnauthorizedErrorDetail) ToMap

func (o UnauthorizedErrorDetail) ToMap() (map[string]interface{}, error)

func (*UnauthorizedErrorDetail) UnmarshalJSON

func (o *UnauthorizedErrorDetail) UnmarshalJSON(data []byte) (err error)

type UnauthorizedErrorDetailCode

type UnauthorizedErrorDetailCode string

UnauthorizedErrorDetailCode the model 'UnauthorizedErrorDetailCode'

const (
	UNAUTHORIZEDERRORDETAILCODE_INSUFFICIENT_PERMISSIONS UnauthorizedErrorDetailCode = "INSUFFICIENT_PERMISSIONS"
	UNAUTHORIZEDERRORDETAILCODE_INVALID_TOKEN            UnauthorizedErrorDetailCode = "INVALID_TOKEN"
)

List of Unauthorized_Error_Detail_Code

func NewUnauthorizedErrorDetailCodeFromValue

func NewUnauthorizedErrorDetailCodeFromValue(v string) (*UnauthorizedErrorDetailCode, error)

NewUnauthorizedErrorDetailCodeFromValue returns a pointer to a valid UnauthorizedErrorDetailCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (UnauthorizedErrorDetailCode) IsValid

func (v UnauthorizedErrorDetailCode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (UnauthorizedErrorDetailCode) Ptr

Ptr returns reference to Unauthorized_Error_Detail_Code value

func (*UnauthorizedErrorDetailCode) UnmarshalJSON

func (v *UnauthorizedErrorDetailCode) UnmarshalJSON(src []byte) error

type UnsupportedMediaTypeError

type UnsupportedMediaTypeError struct {
	Id                   uuid.UUID                         `json:"id"`
	Code                 UnsupportedMediaTypeErrorCode     `json:"code"`
	Message              string                            `json:"message"`
	Details              []UnsupportedMediaTypeErrorDetail `json:"details,omitempty"`
	AdditionalProperties map[string]interface{}
}

UnsupportedMediaTypeError struct for UnsupportedMediaTypeError

func NewUnsupportedMediaTypeError

func NewUnsupportedMediaTypeError(id uuid.UUID, code UnsupportedMediaTypeErrorCode, message string) *UnsupportedMediaTypeError

NewUnsupportedMediaTypeError instantiates a new UnsupportedMediaTypeError 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 NewUnsupportedMediaTypeErrorWithDefaults

func NewUnsupportedMediaTypeErrorWithDefaults() *UnsupportedMediaTypeError

NewUnsupportedMediaTypeErrorWithDefaults instantiates a new UnsupportedMediaTypeError 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 (UnsupportedMediaTypeError) Error

func (*UnsupportedMediaTypeError) GetCode

GetCode returns the Code field value

func (*UnsupportedMediaTypeError) GetCodeOk

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*UnsupportedMediaTypeError) GetDetails

GetDetails returns the Details field value if set, zero value otherwise.

func (*UnsupportedMediaTypeError) GetDetailsOk

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UnsupportedMediaTypeError) GetId

func (o *UnsupportedMediaTypeError) GetId() uuid.UUID

GetId returns the Id field value

func (*UnsupportedMediaTypeError) GetIdOk

func (o *UnsupportedMediaTypeError) GetIdOk() (*uuid.UUID, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UnsupportedMediaTypeError) GetMessage

func (o *UnsupportedMediaTypeError) GetMessage() string

GetMessage returns the Message field value

func (*UnsupportedMediaTypeError) GetMessageOk

func (o *UnsupportedMediaTypeError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*UnsupportedMediaTypeError) HasDetails

func (o *UnsupportedMediaTypeError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (UnsupportedMediaTypeError) LogValue

func (o UnsupportedMediaTypeError) LogValue() slog.Value

func (UnsupportedMediaTypeError) MarshalJSON

func (o UnsupportedMediaTypeError) MarshalJSON() ([]byte, error)

func (*UnsupportedMediaTypeError) SetCode

SetCode sets field value

func (*UnsupportedMediaTypeError) SetDetails

SetDetails gets a reference to the given []UnsupportedMediaTypeErrorDetail and assigns it to the Details field.

func (*UnsupportedMediaTypeError) SetId

func (o *UnsupportedMediaTypeError) SetId(v uuid.UUID)

SetId sets field value

func (*UnsupportedMediaTypeError) SetMessage

func (o *UnsupportedMediaTypeError) SetMessage(v string)

SetMessage sets field value

func (UnsupportedMediaTypeError) ToMap

func (o UnsupportedMediaTypeError) ToMap() (map[string]interface{}, error)

func (*UnsupportedMediaTypeError) UnmarshalJSON

func (o *UnsupportedMediaTypeError) UnmarshalJSON(data []byte) (err error)

type UnsupportedMediaTypeErrorCode

type UnsupportedMediaTypeErrorCode string

UnsupportedMediaTypeErrorCode the model 'UnsupportedMediaTypeErrorCode'

const (
	UNSUPPORTEDMEDIATYPEERRORCODE_INVALID_REQUEST UnsupportedMediaTypeErrorCode = "INVALID_REQUEST"
)

List of Unsupported_Media_Type_Error_Code

func NewUnsupportedMediaTypeErrorCodeFromValue

func NewUnsupportedMediaTypeErrorCodeFromValue(v string) (*UnsupportedMediaTypeErrorCode, error)

NewUnsupportedMediaTypeErrorCodeFromValue returns a pointer to a valid UnsupportedMediaTypeErrorCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (UnsupportedMediaTypeErrorCode) IsValid

func (v UnsupportedMediaTypeErrorCode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (UnsupportedMediaTypeErrorCode) Ptr

Ptr returns reference to Unsupported_Media_Type_Error_Code value

func (*UnsupportedMediaTypeErrorCode) UnmarshalJSON

func (v *UnsupportedMediaTypeErrorCode) UnmarshalJSON(src []byte) error

type UnsupportedMediaTypeErrorDetail

type UnsupportedMediaTypeErrorDetail struct {
	Code                 string                 `json:"code"`
	Message              string                 `json:"message"`
	InnerError           map[string]interface{} `json:"innerError,omitempty"`
	Target               *string                `json:"target,omitempty"`
	AdditionalProperties map[string]interface{}
}

UnsupportedMediaTypeErrorDetail struct for UnsupportedMediaTypeErrorDetail

func NewUnsupportedMediaTypeErrorDetail

func NewUnsupportedMediaTypeErrorDetail(code string, message string) *UnsupportedMediaTypeErrorDetail

NewUnsupportedMediaTypeErrorDetail instantiates a new UnsupportedMediaTypeErrorDetail 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 NewUnsupportedMediaTypeErrorDetailWithDefaults

func NewUnsupportedMediaTypeErrorDetailWithDefaults() *UnsupportedMediaTypeErrorDetail

NewUnsupportedMediaTypeErrorDetailWithDefaults instantiates a new UnsupportedMediaTypeErrorDetail 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 (*UnsupportedMediaTypeErrorDetail) GetCode

GetCode returns the Code field value

func (*UnsupportedMediaTypeErrorDetail) GetCodeOk

func (o *UnsupportedMediaTypeErrorDetail) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*UnsupportedMediaTypeErrorDetail) GetInnerError

func (o *UnsupportedMediaTypeErrorDetail) GetInnerError() map[string]interface{}

GetInnerError returns the InnerError field value if set, zero value otherwise.

func (*UnsupportedMediaTypeErrorDetail) GetInnerErrorOk

func (o *UnsupportedMediaTypeErrorDetail) GetInnerErrorOk() (map[string]interface{}, bool)

GetInnerErrorOk returns a tuple with the InnerError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UnsupportedMediaTypeErrorDetail) GetMessage

func (o *UnsupportedMediaTypeErrorDetail) GetMessage() string

GetMessage returns the Message field value

func (*UnsupportedMediaTypeErrorDetail) GetMessageOk

func (o *UnsupportedMediaTypeErrorDetail) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*UnsupportedMediaTypeErrorDetail) GetTarget

func (o *UnsupportedMediaTypeErrorDetail) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*UnsupportedMediaTypeErrorDetail) GetTargetOk

func (o *UnsupportedMediaTypeErrorDetail) GetTargetOk() (*string, 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 (*UnsupportedMediaTypeErrorDetail) HasInnerError

func (o *UnsupportedMediaTypeErrorDetail) HasInnerError() bool

HasInnerError returns a boolean if a field has been set.

func (*UnsupportedMediaTypeErrorDetail) HasTarget

func (o *UnsupportedMediaTypeErrorDetail) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (UnsupportedMediaTypeErrorDetail) LogValue

func (UnsupportedMediaTypeErrorDetail) MarshalJSON

func (o UnsupportedMediaTypeErrorDetail) MarshalJSON() ([]byte, error)

func (*UnsupportedMediaTypeErrorDetail) SetCode

SetCode sets field value

func (*UnsupportedMediaTypeErrorDetail) SetInnerError

func (o *UnsupportedMediaTypeErrorDetail) SetInnerError(v map[string]interface{})

SetInnerError gets a reference to the given map[string]interface{} and assigns it to the InnerError field.

func (*UnsupportedMediaTypeErrorDetail) SetMessage

func (o *UnsupportedMediaTypeErrorDetail) SetMessage(v string)

SetMessage sets field value

func (*UnsupportedMediaTypeErrorDetail) SetTarget

func (o *UnsupportedMediaTypeErrorDetail) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (UnsupportedMediaTypeErrorDetail) ToMap

func (o UnsupportedMediaTypeErrorDetail) ToMap() (map[string]interface{}, error)

func (*UnsupportedMediaTypeErrorDetail) UnmarshalJSON

func (o *UnsupportedMediaTypeErrorDetail) UnmarshalJSON(data []byte) (err error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL