clientapi

package
v1.3.4 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedAccessGroupStatusEnumValues = []AccessGroupStatus{
	"Success",
	"Failure",
	"Warning",
}

All allowed values of AccessGroupStatus enum

View Source
var AllowedAccessRequestTemplateTypeClientModelEnumValues = []AccessRequestTemplateTypeClientModel{
	"IntegrationRequest",
}

All allowed values of AccessRequestTemplateTypeClientModel enum

View Source
var AllowedAccessRequestsScopeModelEnumValues = []AccessRequestsScopeModel{
	"MyRequests",
	"MyTasks",
	"MyHistoricTasks",
	"MyDelegatedRequests",
}

All allowed values of AccessRequestsScopeModel enum

View Source
var AllowedAnalyticClientTypeClientModelEnumValues = []AnalyticClientTypeClientModel{
	"CLI",
}

All allowed values of AnalyticClientTypeClientModel enum

View Source
var AllowedClientChallengeLogicalRelationEnumValues = []ClientChallengeLogicalRelation{
	"AnyOf",
	"AllOf",
}

All allowed values of ClientChallengeLogicalRelation enum

View Source
var AllowedClientChallengeStatusEnumValues = []ClientChallengeStatus{
	"Approved",
	"Rejected",
	"Pending",
}

All allowed values of ClientChallengeStatus enum

View Source
var AllowedResourceFilterTypeEnumValues = []ResourceFilterType{
	"id",
	"search_term",
}

All allowed values of ResourceFilterType enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	AccessAssistantAPI *AccessAssistantAPIService

	AccessGroupsAPI *AccessGroupsAPIService

	AccessRequestTemplatesAPI *AccessRequestTemplatesAPIService

	AccessRequestsAPI *AccessRequestsAPIService

	AccessSessionsAPI *AccessSessionsAPIService

	AccountsAPI *AccountsAPIService

	AnalyticsAPI *AnalyticsAPIService

	FiltersAPI *FiltersAPIService

	InventoryAPI *InventoryAPIService

	MCPServerAPI *MCPServerAPIService

	UserSessionAPI *UserSessionAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Apono API v1.0.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AccessAssistantAPIService added in v1.2.2

type AccessAssistantAPIService service

AccessAssistantAPIService AccessAssistantAPI service

func (*AccessAssistantAPIService) DeleteAssistantConversation added in v1.2.2

DeleteAssistantConversation Delete conversation

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

func (*AccessAssistantAPIService) DeleteAssistantConversationExecute added in v1.2.2

func (a *AccessAssistantAPIService) DeleteAssistantConversationExecute(r ApiDeleteAssistantConversationRequest) (*http.Response, error)

Execute executes the request

func (*AccessAssistantAPIService) GetAssistantConversation added in v1.2.2

GetAssistantConversation Get conversation

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

func (*AccessAssistantAPIService) GetAssistantConversationExecute added in v1.2.2

Execute executes the request

@return AssistantConversationClientModel

func (*AccessAssistantAPIService) GetAssistantConversationHistory added in v1.2.2

GetAssistantConversationHistory Get conversation history

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

func (*AccessAssistantAPIService) GetAssistantConversationHistoryExecute added in v1.2.2

Execute executes the request

@return PaginatedClientResponseModelAssistantMessageClientModel

func (*AccessAssistantAPIService) ListAssistantConversations added in v1.2.2

ListAssistantConversations List all conversations

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

func (*AccessAssistantAPIService) ListAssistantConversationsExecute added in v1.2.2

Execute executes the request

@return PaginatedClientResponseModelAssistantConversationClientModel

func (*AccessAssistantAPIService) SendMessageToAssistant added in v1.2.2

SendMessageToAssistant Send Message to assistant

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

func (*AccessAssistantAPIService) SendMessageToAssistantExecute added in v1.2.2

Execute executes the request

@return AssistantMessageResponseClientModel

func (*AccessAssistantAPIService) SubmitAssistantMessageFeedback added in v1.2.2

func (a *AccessAssistantAPIService) SubmitAssistantMessageFeedback(ctx context.Context, id string, messageId string) ApiSubmitAssistantMessageFeedbackRequest

SubmitAssistantMessageFeedback Submit conversation message feedback

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

func (*AccessAssistantAPIService) SubmitAssistantMessageFeedbackExecute added in v1.2.2

Execute executes the request

@return MessageResponse

type AccessDetailsClientModel

type AccessDetailsClientModel struct {
	Plain               string `json:"plain"`
	Markdown            string `json:"markdown"`
	CanResetCredentials bool   `json:"can_reset_credentials"`
}

AccessDetailsClientModel struct for AccessDetailsClientModel

func NewAccessDetailsClientModel

func NewAccessDetailsClientModel(plain string, markdown string, canResetCredentials bool) *AccessDetailsClientModel

NewAccessDetailsClientModel instantiates a new AccessDetailsClientModel 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 NewAccessDetailsClientModelWithDefaults

func NewAccessDetailsClientModelWithDefaults() *AccessDetailsClientModel

NewAccessDetailsClientModelWithDefaults instantiates a new AccessDetailsClientModel 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 (*AccessDetailsClientModel) GetCanResetCredentials

func (o *AccessDetailsClientModel) GetCanResetCredentials() bool

GetCanResetCredentials returns the CanResetCredentials field value

func (*AccessDetailsClientModel) GetCanResetCredentialsOk

func (o *AccessDetailsClientModel) GetCanResetCredentialsOk() (*bool, bool)

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

func (*AccessDetailsClientModel) GetMarkdown

func (o *AccessDetailsClientModel) GetMarkdown() string

GetMarkdown returns the Markdown field value

func (*AccessDetailsClientModel) GetMarkdownOk

func (o *AccessDetailsClientModel) GetMarkdownOk() (*string, bool)

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

func (*AccessDetailsClientModel) GetPlain

func (o *AccessDetailsClientModel) GetPlain() string

GetPlain returns the Plain field value

func (*AccessDetailsClientModel) GetPlainOk

func (o *AccessDetailsClientModel) GetPlainOk() (*string, bool)

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

func (AccessDetailsClientModel) MarshalJSON

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

func (*AccessDetailsClientModel) SetCanResetCredentials

func (o *AccessDetailsClientModel) SetCanResetCredentials(v bool)

SetCanResetCredentials sets field value

func (*AccessDetailsClientModel) SetMarkdown

func (o *AccessDetailsClientModel) SetMarkdown(v string)

SetMarkdown sets field value

func (*AccessDetailsClientModel) SetPlain

func (o *AccessDetailsClientModel) SetPlain(v string)

SetPlain sets field value

func (AccessDetailsClientModel) ToMap

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

func (*AccessDetailsClientModel) UnmarshalJSON

func (o *AccessDetailsClientModel) UnmarshalJSON(bytes []byte) (err error)
type AccessDetailsClientModelLink struct {
	Url   string `json:"url"`
	Label string `json:"label"`
}

AccessDetailsClientModelLink struct for AccessDetailsClientModelLink

func NewAccessDetailsClientModelLink(url string, label string) *AccessDetailsClientModelLink

NewAccessDetailsClientModelLink instantiates a new AccessDetailsClientModelLink 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 NewAccessDetailsClientModelLinkWithDefaults

func NewAccessDetailsClientModelLinkWithDefaults() *AccessDetailsClientModelLink

NewAccessDetailsClientModelLinkWithDefaults instantiates a new AccessDetailsClientModelLink 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 (*AccessDetailsClientModelLink) GetLabel

func (o *AccessDetailsClientModelLink) GetLabel() string

GetLabel returns the Label field value

func (*AccessDetailsClientModelLink) GetLabelOk

func (o *AccessDetailsClientModelLink) GetLabelOk() (*string, bool)

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

func (*AccessDetailsClientModelLink) GetUrl

GetUrl returns the Url field value

func (*AccessDetailsClientModelLink) GetUrlOk

func (o *AccessDetailsClientModelLink) GetUrlOk() (*string, bool)

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

func (AccessDetailsClientModelLink) MarshalJSON

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

func (*AccessDetailsClientModelLink) SetLabel

func (o *AccessDetailsClientModelLink) SetLabel(v string)

SetLabel sets field value

func (*AccessDetailsClientModelLink) SetUrl

func (o *AccessDetailsClientModelLink) SetUrl(v string)

SetUrl sets field value

func (AccessDetailsClientModelLink) ToMap

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

func (*AccessDetailsClientModelLink) UnmarshalJSON

func (o *AccessDetailsClientModelLink) UnmarshalJSON(bytes []byte) (err error)

type AccessGroupClientModel

type AccessGroupClientModel struct {
	Integration       IntegrationClientModel       `json:"integration"`
	ResourceTypes     []ResourceTypeClientModel    `json:"resource_types"`
	Id                string                       `json:"id"`
	HasNewCredentials bool                         `json:"has_new_credentials"`
	Status            AccessGroupStatusClientModel `json:"status"`
}

AccessGroupClientModel struct for AccessGroupClientModel

func NewAccessGroupClientModel

func NewAccessGroupClientModel(integration IntegrationClientModel, resourceTypes []ResourceTypeClientModel, id string, hasNewCredentials bool, status AccessGroupStatusClientModel) *AccessGroupClientModel

NewAccessGroupClientModel instantiates a new AccessGroupClientModel 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 NewAccessGroupClientModelWithDefaults

func NewAccessGroupClientModelWithDefaults() *AccessGroupClientModel

NewAccessGroupClientModelWithDefaults instantiates a new AccessGroupClientModel 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 (*AccessGroupClientModel) GetHasNewCredentials

func (o *AccessGroupClientModel) GetHasNewCredentials() bool

GetHasNewCredentials returns the HasNewCredentials field value

func (*AccessGroupClientModel) GetHasNewCredentialsOk

func (o *AccessGroupClientModel) GetHasNewCredentialsOk() (*bool, bool)

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

func (*AccessGroupClientModel) GetId

func (o *AccessGroupClientModel) GetId() string

GetId returns the Id field value

func (*AccessGroupClientModel) GetIdOk

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

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

func (*AccessGroupClientModel) GetIntegration

func (o *AccessGroupClientModel) GetIntegration() IntegrationClientModel

GetIntegration returns the Integration field value

func (*AccessGroupClientModel) GetIntegrationOk

func (o *AccessGroupClientModel) GetIntegrationOk() (*IntegrationClientModel, bool)

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

func (*AccessGroupClientModel) GetResourceTypes

func (o *AccessGroupClientModel) GetResourceTypes() []ResourceTypeClientModel

GetResourceTypes returns the ResourceTypes field value

func (*AccessGroupClientModel) GetResourceTypesOk

func (o *AccessGroupClientModel) GetResourceTypesOk() ([]ResourceTypeClientModel, bool)

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

func (*AccessGroupClientModel) GetStatus

GetStatus returns the Status field value

func (*AccessGroupClientModel) GetStatusOk

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

func (AccessGroupClientModel) MarshalJSON

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

func (*AccessGroupClientModel) SetHasNewCredentials

func (o *AccessGroupClientModel) SetHasNewCredentials(v bool)

SetHasNewCredentials sets field value

func (*AccessGroupClientModel) SetId

func (o *AccessGroupClientModel) SetId(v string)

SetId sets field value

func (*AccessGroupClientModel) SetIntegration

func (o *AccessGroupClientModel) SetIntegration(v IntegrationClientModel)

SetIntegration sets field value

func (*AccessGroupClientModel) SetResourceTypes

func (o *AccessGroupClientModel) SetResourceTypes(v []ResourceTypeClientModel)

SetResourceTypes sets field value

func (*AccessGroupClientModel) SetStatus

SetStatus sets field value

func (AccessGroupClientModel) ToMap

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

func (*AccessGroupClientModel) UnmarshalJSON

func (o *AccessGroupClientModel) UnmarshalJSON(bytes []byte) (err error)

type AccessGroupStatus

type AccessGroupStatus string

AccessGroupStatus the model 'AccessGroupStatus'

const (
	ACCESSGROUPSTATUS_SUCCESS AccessGroupStatus = "Success"
	ACCESSGROUPSTATUS_FAILURE AccessGroupStatus = "Failure"
	ACCESSGROUPSTATUS_WARNING AccessGroupStatus = "Warning"
)

List of AccessGroupStatus

func NewAccessGroupStatusFromValue

func NewAccessGroupStatusFromValue(v string) (*AccessGroupStatus, error)

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

func (AccessGroupStatus) IsValid

func (v AccessGroupStatus) IsValid() bool

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

func (AccessGroupStatus) Ptr

Ptr returns reference to AccessGroupStatus value

func (*AccessGroupStatus) UnmarshalJSON

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

type AccessGroupStatusClientModel

type AccessGroupStatusClientModel struct {
	Status  AccessGroupStatus `json:"status"`
	Message NullableString    `json:"message,omitempty"`
}

AccessGroupStatusClientModel struct for AccessGroupStatusClientModel

func NewAccessGroupStatusClientModel

func NewAccessGroupStatusClientModel(status AccessGroupStatus) *AccessGroupStatusClientModel

NewAccessGroupStatusClientModel instantiates a new AccessGroupStatusClientModel 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 NewAccessGroupStatusClientModelWithDefaults

func NewAccessGroupStatusClientModelWithDefaults() *AccessGroupStatusClientModel

NewAccessGroupStatusClientModelWithDefaults instantiates a new AccessGroupStatusClientModel 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 (*AccessGroupStatusClientModel) GetMessage

func (o *AccessGroupStatusClientModel) GetMessage() string

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

func (*AccessGroupStatusClientModel) GetMessageOk

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

func (*AccessGroupStatusClientModel) GetStatus

GetStatus returns the Status field value

func (*AccessGroupStatusClientModel) GetStatusOk

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

func (*AccessGroupStatusClientModel) HasMessage

func (o *AccessGroupStatusClientModel) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (AccessGroupStatusClientModel) MarshalJSON

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

func (*AccessGroupStatusClientModel) SetMessage

func (o *AccessGroupStatusClientModel) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*AccessGroupStatusClientModel) SetMessageNil

func (o *AccessGroupStatusClientModel) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccessGroupStatusClientModel) SetStatus

SetStatus sets field value

func (AccessGroupStatusClientModel) ToMap

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

func (*AccessGroupStatusClientModel) UnmarshalJSON

func (o *AccessGroupStatusClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*AccessGroupStatusClientModel) UnsetMessage

func (o *AccessGroupStatusClientModel) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

type AccessGroupsAPIService

type AccessGroupsAPIService service

AccessGroupsAPIService AccessGroupsAPI service

func (*AccessGroupsAPIService) GetAccessGroupDetails

GetAccessGroupDetails Get access group details

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

func (*AccessGroupsAPIService) GetAccessGroupDetailsExecute

Execute executes the request

@return AccessDetailsClientModel

func (*AccessGroupsAPIService) GetAccessGroupUnits

GetAccessGroupUnits Get access group units

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

func (*AccessGroupsAPIService) GetAccessGroupUnitsExecute

Execute executes the request

@return PaginatedClientResponseModelAccessUnitClientModel

func (*AccessGroupsAPIService) ResetAccessGroupCredentials

func (a *AccessGroupsAPIService) ResetAccessGroupCredentials(ctx context.Context, id string) ApiResetAccessGroupCredentialsRequest

ResetAccessGroupCredentials Reset access group credentials

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

func (*AccessGroupsAPIService) ResetAccessGroupCredentialsExecute

func (a *AccessGroupsAPIService) ResetAccessGroupCredentialsExecute(r ApiResetAccessGroupCredentialsRequest) (*MessageResponse, *http.Response, error)

Execute executes the request

@return MessageResponse

type AccessRequestClientModel

type AccessRequestClientModel struct {
	Id                    string                                    `json:"id"`
	Requestor             UserClientModel                           `json:"requestor"`
	Grantee               NullableAccessRequestClientModelGrantee   `json:"grantee,omitempty"`
	CreationTime          float64                                   `json:"creation_time"`
	RevocationTime        NullableFloat64                           `json:"revocation_time,omitempty"`
	Status                RequestStatusClientModel                  `json:"status"`
	Justification         NullableString                            `json:"justification,omitempty"`
	AccessGroups          []AccessGroupClientModel                  `json:"access_groups"`
	Bundle                NullableAccessRequestClientModelBundle    `json:"bundle,omitempty"`
	Challenge             NullableAccessRequestClientModelChallenge `json:"challenge,omitempty"`
	DurationInSec         NullableInt32                             `json:"duration_in_sec,omitempty"`
	CustomFields          map[string]string                         `json:"custom_fields,omitempty"`
	RequireApproverReason NullableBool                              `json:"require_approver_reason,omitempty"`
	Favorite              NullableBool                              `json:"favorite,omitempty"`
}

AccessRequestClientModel struct for AccessRequestClientModel

func NewAccessRequestClientModel

func NewAccessRequestClientModel(id string, requestor UserClientModel, creationTime float64, status RequestStatusClientModel, accessGroups []AccessGroupClientModel) *AccessRequestClientModel

NewAccessRequestClientModel instantiates a new AccessRequestClientModel 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 NewAccessRequestClientModelWithDefaults

func NewAccessRequestClientModelWithDefaults() *AccessRequestClientModel

NewAccessRequestClientModelWithDefaults instantiates a new AccessRequestClientModel 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 (*AccessRequestClientModel) GetAccessGroups

func (o *AccessRequestClientModel) GetAccessGroups() []AccessGroupClientModel

GetAccessGroups returns the AccessGroups field value

func (*AccessRequestClientModel) GetAccessGroupsOk

func (o *AccessRequestClientModel) GetAccessGroupsOk() ([]AccessGroupClientModel, bool)

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

func (*AccessRequestClientModel) GetBundle

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

func (*AccessRequestClientModel) GetBundleOk

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

func (*AccessRequestClientModel) GetChallenge

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

func (*AccessRequestClientModel) GetChallengeOk

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

func (*AccessRequestClientModel) GetCreationTime

func (o *AccessRequestClientModel) GetCreationTime() float64

GetCreationTime returns the CreationTime field value

func (*AccessRequestClientModel) GetCreationTimeOk

func (o *AccessRequestClientModel) GetCreationTimeOk() (*float64, bool)

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

func (*AccessRequestClientModel) GetCustomFields added in v1.2.2

func (o *AccessRequestClientModel) GetCustomFields() map[string]string

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

func (*AccessRequestClientModel) GetCustomFieldsOk added in v1.2.2

func (o *AccessRequestClientModel) GetCustomFieldsOk() (*map[string]string, bool)

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

func (*AccessRequestClientModel) GetDurationInSec added in v1.1.0

func (o *AccessRequestClientModel) GetDurationInSec() int32

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

func (*AccessRequestClientModel) GetDurationInSecOk added in v1.1.0

func (o *AccessRequestClientModel) GetDurationInSecOk() (*int32, bool)

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

func (*AccessRequestClientModel) GetFavorite added in v1.2.2

func (o *AccessRequestClientModel) GetFavorite() bool

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

func (*AccessRequestClientModel) GetFavoriteOk added in v1.2.2

func (o *AccessRequestClientModel) GetFavoriteOk() (*bool, bool)

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

func (*AccessRequestClientModel) GetGrantee added in v1.3.0

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

func (*AccessRequestClientModel) GetGranteeOk added in v1.3.0

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

func (*AccessRequestClientModel) GetId

func (o *AccessRequestClientModel) GetId() string

GetId returns the Id field value

func (*AccessRequestClientModel) GetIdOk

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

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

func (*AccessRequestClientModel) GetJustification

func (o *AccessRequestClientModel) GetJustification() string

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

func (*AccessRequestClientModel) GetJustificationOk

func (o *AccessRequestClientModel) GetJustificationOk() (*string, bool)

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

func (*AccessRequestClientModel) GetRequestor

func (o *AccessRequestClientModel) GetRequestor() UserClientModel

GetRequestor returns the Requestor field value

func (*AccessRequestClientModel) GetRequestorOk

func (o *AccessRequestClientModel) GetRequestorOk() (*UserClientModel, bool)

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

func (*AccessRequestClientModel) GetRequireApproverReason added in v1.2.2

func (o *AccessRequestClientModel) GetRequireApproverReason() bool

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

func (*AccessRequestClientModel) GetRequireApproverReasonOk added in v1.2.2

func (o *AccessRequestClientModel) GetRequireApproverReasonOk() (*bool, bool)

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

func (*AccessRequestClientModel) GetRevocationTime

func (o *AccessRequestClientModel) GetRevocationTime() float64

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

func (*AccessRequestClientModel) GetRevocationTimeOk

func (o *AccessRequestClientModel) GetRevocationTimeOk() (*float64, bool)

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

func (*AccessRequestClientModel) GetStatus

GetStatus returns the Status field value

func (*AccessRequestClientModel) GetStatusOk

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

func (*AccessRequestClientModel) HasBundle

func (o *AccessRequestClientModel) HasBundle() bool

HasBundle returns a boolean if a field has been set.

func (*AccessRequestClientModel) HasChallenge

func (o *AccessRequestClientModel) HasChallenge() bool

HasChallenge returns a boolean if a field has been set.

func (*AccessRequestClientModel) HasCustomFields added in v1.2.2

func (o *AccessRequestClientModel) HasCustomFields() bool

HasCustomFields returns a boolean if a field has been set.

func (*AccessRequestClientModel) HasDurationInSec added in v1.1.0

func (o *AccessRequestClientModel) HasDurationInSec() bool

HasDurationInSec returns a boolean if a field has been set.

func (*AccessRequestClientModel) HasFavorite added in v1.2.2

func (o *AccessRequestClientModel) HasFavorite() bool

HasFavorite returns a boolean if a field has been set.

func (*AccessRequestClientModel) HasGrantee added in v1.3.0

func (o *AccessRequestClientModel) HasGrantee() bool

HasGrantee returns a boolean if a field has been set.

func (*AccessRequestClientModel) HasJustification

func (o *AccessRequestClientModel) HasJustification() bool

HasJustification returns a boolean if a field has been set.

func (*AccessRequestClientModel) HasRequireApproverReason added in v1.2.2

func (o *AccessRequestClientModel) HasRequireApproverReason() bool

HasRequireApproverReason returns a boolean if a field has been set.

func (*AccessRequestClientModel) HasRevocationTime

func (o *AccessRequestClientModel) HasRevocationTime() bool

HasRevocationTime returns a boolean if a field has been set.

func (AccessRequestClientModel) MarshalJSON

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

func (*AccessRequestClientModel) SetAccessGroups

func (o *AccessRequestClientModel) SetAccessGroups(v []AccessGroupClientModel)

SetAccessGroups sets field value

func (*AccessRequestClientModel) SetBundle

SetBundle gets a reference to the given NullableAccessRequestClientModelBundle and assigns it to the Bundle field.

func (*AccessRequestClientModel) SetBundleNil

func (o *AccessRequestClientModel) SetBundleNil()

SetBundleNil sets the value for Bundle to be an explicit nil

func (*AccessRequestClientModel) SetChallenge

SetChallenge gets a reference to the given NullableAccessRequestClientModelChallenge and assigns it to the Challenge field.

func (*AccessRequestClientModel) SetChallengeNil

func (o *AccessRequestClientModel) SetChallengeNil()

SetChallengeNil sets the value for Challenge to be an explicit nil

func (*AccessRequestClientModel) SetCreationTime

func (o *AccessRequestClientModel) SetCreationTime(v float64)

SetCreationTime sets field value

func (*AccessRequestClientModel) SetCustomFields added in v1.2.2

func (o *AccessRequestClientModel) SetCustomFields(v map[string]string)

SetCustomFields gets a reference to the given map[string]string and assigns it to the CustomFields field.

func (*AccessRequestClientModel) SetDurationInSec added in v1.1.0

func (o *AccessRequestClientModel) SetDurationInSec(v int32)

SetDurationInSec gets a reference to the given NullableInt32 and assigns it to the DurationInSec field.

func (*AccessRequestClientModel) SetDurationInSecNil added in v1.1.0

func (o *AccessRequestClientModel) SetDurationInSecNil()

SetDurationInSecNil sets the value for DurationInSec to be an explicit nil

func (*AccessRequestClientModel) SetFavorite added in v1.2.2

func (o *AccessRequestClientModel) SetFavorite(v bool)

SetFavorite gets a reference to the given NullableBool and assigns it to the Favorite field.

func (*AccessRequestClientModel) SetFavoriteNil added in v1.2.2

func (o *AccessRequestClientModel) SetFavoriteNil()

SetFavoriteNil sets the value for Favorite to be an explicit nil

func (*AccessRequestClientModel) SetGrantee added in v1.3.0

SetGrantee gets a reference to the given NullableAccessRequestClientModelGrantee and assigns it to the Grantee field.

func (*AccessRequestClientModel) SetGranteeNil added in v1.3.0

func (o *AccessRequestClientModel) SetGranteeNil()

SetGranteeNil sets the value for Grantee to be an explicit nil

func (*AccessRequestClientModel) SetId

func (o *AccessRequestClientModel) SetId(v string)

SetId sets field value

func (*AccessRequestClientModel) SetJustification

func (o *AccessRequestClientModel) SetJustification(v string)

SetJustification gets a reference to the given NullableString and assigns it to the Justification field.

func (*AccessRequestClientModel) SetJustificationNil

func (o *AccessRequestClientModel) SetJustificationNil()

SetJustificationNil sets the value for Justification to be an explicit nil

func (*AccessRequestClientModel) SetRequestor

func (o *AccessRequestClientModel) SetRequestor(v UserClientModel)

SetRequestor sets field value

func (*AccessRequestClientModel) SetRequireApproverReason added in v1.2.2

func (o *AccessRequestClientModel) SetRequireApproverReason(v bool)

SetRequireApproverReason gets a reference to the given NullableBool and assigns it to the RequireApproverReason field.

func (*AccessRequestClientModel) SetRequireApproverReasonNil added in v1.2.2

func (o *AccessRequestClientModel) SetRequireApproverReasonNil()

SetRequireApproverReasonNil sets the value for RequireApproverReason to be an explicit nil

func (*AccessRequestClientModel) SetRevocationTime

func (o *AccessRequestClientModel) SetRevocationTime(v float64)

SetRevocationTime gets a reference to the given NullableFloat64 and assigns it to the RevocationTime field.

func (*AccessRequestClientModel) SetRevocationTimeNil

func (o *AccessRequestClientModel) SetRevocationTimeNil()

SetRevocationTimeNil sets the value for RevocationTime to be an explicit nil

func (*AccessRequestClientModel) SetStatus

SetStatus sets field value

func (AccessRequestClientModel) ToMap

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

func (*AccessRequestClientModel) UnmarshalJSON

func (o *AccessRequestClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*AccessRequestClientModel) UnsetBundle

func (o *AccessRequestClientModel) UnsetBundle()

UnsetBundle ensures that no value is present for Bundle, not even an explicit nil

func (*AccessRequestClientModel) UnsetChallenge

func (o *AccessRequestClientModel) UnsetChallenge()

UnsetChallenge ensures that no value is present for Challenge, not even an explicit nil

func (*AccessRequestClientModel) UnsetDurationInSec added in v1.1.0

func (o *AccessRequestClientModel) UnsetDurationInSec()

UnsetDurationInSec ensures that no value is present for DurationInSec, not even an explicit nil

func (*AccessRequestClientModel) UnsetFavorite added in v1.2.2

func (o *AccessRequestClientModel) UnsetFavorite()

UnsetFavorite ensures that no value is present for Favorite, not even an explicit nil

func (*AccessRequestClientModel) UnsetGrantee added in v1.3.0

func (o *AccessRequestClientModel) UnsetGrantee()

UnsetGrantee ensures that no value is present for Grantee, not even an explicit nil

func (*AccessRequestClientModel) UnsetJustification

func (o *AccessRequestClientModel) UnsetJustification()

UnsetJustification ensures that no value is present for Justification, not even an explicit nil

func (*AccessRequestClientModel) UnsetRequireApproverReason added in v1.2.2

func (o *AccessRequestClientModel) UnsetRequireApproverReason()

UnsetRequireApproverReason ensures that no value is present for RequireApproverReason, not even an explicit nil

func (*AccessRequestClientModel) UnsetRevocationTime

func (o *AccessRequestClientModel) UnsetRevocationTime()

UnsetRevocationTime ensures that no value is present for RevocationTime, not even an explicit nil

type AccessRequestClientModelBundle

type AccessRequestClientModelBundle struct {
	Id   string `json:"id"`
	Name string `json:"name"`
}

AccessRequestClientModelBundle struct for AccessRequestClientModelBundle

func NewAccessRequestClientModelBundle

func NewAccessRequestClientModelBundle(id string, name string) *AccessRequestClientModelBundle

NewAccessRequestClientModelBundle instantiates a new AccessRequestClientModelBundle 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 NewAccessRequestClientModelBundleWithDefaults

func NewAccessRequestClientModelBundleWithDefaults() *AccessRequestClientModelBundle

NewAccessRequestClientModelBundleWithDefaults instantiates a new AccessRequestClientModelBundle 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 (*AccessRequestClientModelBundle) GetId

GetId returns the Id field value

func (*AccessRequestClientModelBundle) GetIdOk

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

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

func (*AccessRequestClientModelBundle) GetName

GetName returns the Name field value

func (*AccessRequestClientModelBundle) GetNameOk

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

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

func (AccessRequestClientModelBundle) MarshalJSON

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

func (*AccessRequestClientModelBundle) SetId

SetId sets field value

func (*AccessRequestClientModelBundle) SetName

func (o *AccessRequestClientModelBundle) SetName(v string)

SetName sets field value

func (AccessRequestClientModelBundle) ToMap

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

func (*AccessRequestClientModelBundle) UnmarshalJSON

func (o *AccessRequestClientModelBundle) UnmarshalJSON(bytes []byte) (err error)

type AccessRequestClientModelChallenge

type AccessRequestClientModelChallenge struct {
	LogicalRelation ClientChallengeLogicalRelation `json:"logical_relation"`
	Approvers       []ChallengeApproverClientModel `json:"approvers"`
}

AccessRequestClientModelChallenge struct for AccessRequestClientModelChallenge

func NewAccessRequestClientModelChallenge

func NewAccessRequestClientModelChallenge(logicalRelation ClientChallengeLogicalRelation, approvers []ChallengeApproverClientModel) *AccessRequestClientModelChallenge

NewAccessRequestClientModelChallenge instantiates a new AccessRequestClientModelChallenge 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 NewAccessRequestClientModelChallengeWithDefaults

func NewAccessRequestClientModelChallengeWithDefaults() *AccessRequestClientModelChallenge

NewAccessRequestClientModelChallengeWithDefaults instantiates a new AccessRequestClientModelChallenge 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 (*AccessRequestClientModelChallenge) GetApprovers

GetApprovers returns the Approvers field value

func (*AccessRequestClientModelChallenge) GetApproversOk

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

func (*AccessRequestClientModelChallenge) GetLogicalRelation

GetLogicalRelation returns the LogicalRelation field value

func (*AccessRequestClientModelChallenge) GetLogicalRelationOk

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

func (AccessRequestClientModelChallenge) MarshalJSON

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

func (*AccessRequestClientModelChallenge) SetApprovers

SetApprovers sets field value

func (*AccessRequestClientModelChallenge) SetLogicalRelation

SetLogicalRelation sets field value

func (AccessRequestClientModelChallenge) ToMap

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

func (*AccessRequestClientModelChallenge) UnmarshalJSON

func (o *AccessRequestClientModelChallenge) UnmarshalJSON(bytes []byte) (err error)

type AccessRequestClientModelGrantee added in v1.3.0

type AccessRequestClientModelGrantee struct {
	Id          string `json:"id"`
	SourceId    string `json:"source_id"`
	DisplayName string `json:"display_name"`
	Type        string `json:"type"`
}

AccessRequestClientModelGrantee struct for AccessRequestClientModelGrantee

func NewAccessRequestClientModelGrantee added in v1.3.0

func NewAccessRequestClientModelGrantee(id string, sourceId string, displayName string, type_ string) *AccessRequestClientModelGrantee

NewAccessRequestClientModelGrantee instantiates a new AccessRequestClientModelGrantee 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 NewAccessRequestClientModelGranteeWithDefaults added in v1.3.0

func NewAccessRequestClientModelGranteeWithDefaults() *AccessRequestClientModelGrantee

NewAccessRequestClientModelGranteeWithDefaults instantiates a new AccessRequestClientModelGrantee 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 (*AccessRequestClientModelGrantee) GetDisplayName added in v1.3.0

func (o *AccessRequestClientModelGrantee) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*AccessRequestClientModelGrantee) GetDisplayNameOk added in v1.3.0

func (o *AccessRequestClientModelGrantee) GetDisplayNameOk() (*string, bool)

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

func (*AccessRequestClientModelGrantee) GetId added in v1.3.0

GetId returns the Id field value

func (*AccessRequestClientModelGrantee) GetIdOk added in v1.3.0

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

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

func (*AccessRequestClientModelGrantee) GetSourceId added in v1.3.0

func (o *AccessRequestClientModelGrantee) GetSourceId() string

GetSourceId returns the SourceId field value

func (*AccessRequestClientModelGrantee) GetSourceIdOk added in v1.3.0

func (o *AccessRequestClientModelGrantee) GetSourceIdOk() (*string, bool)

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

func (*AccessRequestClientModelGrantee) GetType added in v1.3.0

GetType returns the Type field value

func (*AccessRequestClientModelGrantee) GetTypeOk added in v1.3.0

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

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

func (AccessRequestClientModelGrantee) MarshalJSON added in v1.3.0

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

func (*AccessRequestClientModelGrantee) SetDisplayName added in v1.3.0

func (o *AccessRequestClientModelGrantee) SetDisplayName(v string)

SetDisplayName sets field value

func (*AccessRequestClientModelGrantee) SetId added in v1.3.0

SetId sets field value

func (*AccessRequestClientModelGrantee) SetSourceId added in v1.3.0

func (o *AccessRequestClientModelGrantee) SetSourceId(v string)

SetSourceId sets field value

func (*AccessRequestClientModelGrantee) SetType added in v1.3.0

SetType sets field value

func (AccessRequestClientModelGrantee) ToMap added in v1.3.0

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

func (*AccessRequestClientModelGrantee) UnmarshalJSON added in v1.3.0

func (o *AccessRequestClientModelGrantee) UnmarshalJSON(bytes []byte) (err error)

type AccessRequestSubmittedClientResponse added in v1.0.3

type AccessRequestSubmittedClientResponse struct {
	RequestIds []string       `json:"request_ids"`
	Message    NullableString `json:"message,omitempty"`
}

AccessRequestSubmittedClientResponse struct for AccessRequestSubmittedClientResponse

func NewAccessRequestSubmittedClientResponse added in v1.0.3

func NewAccessRequestSubmittedClientResponse(requestIds []string) *AccessRequestSubmittedClientResponse

NewAccessRequestSubmittedClientResponse instantiates a new AccessRequestSubmittedClientResponse 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 NewAccessRequestSubmittedClientResponseWithDefaults added in v1.0.3

func NewAccessRequestSubmittedClientResponseWithDefaults() *AccessRequestSubmittedClientResponse

NewAccessRequestSubmittedClientResponseWithDefaults instantiates a new AccessRequestSubmittedClientResponse 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 (*AccessRequestSubmittedClientResponse) GetMessage added in v1.0.3

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

func (*AccessRequestSubmittedClientResponse) GetMessageOk added in v1.0.3

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

func (*AccessRequestSubmittedClientResponse) GetRequestIds added in v1.0.3

func (o *AccessRequestSubmittedClientResponse) GetRequestIds() []string

GetRequestIds returns the RequestIds field value

func (*AccessRequestSubmittedClientResponse) GetRequestIdsOk added in v1.0.3

func (o *AccessRequestSubmittedClientResponse) GetRequestIdsOk() ([]string, bool)

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

func (*AccessRequestSubmittedClientResponse) HasMessage added in v1.0.3

HasMessage returns a boolean if a field has been set.

func (AccessRequestSubmittedClientResponse) MarshalJSON added in v1.0.3

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

func (*AccessRequestSubmittedClientResponse) SetMessage added in v1.0.3

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*AccessRequestSubmittedClientResponse) SetMessageNil added in v1.0.3

func (o *AccessRequestSubmittedClientResponse) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccessRequestSubmittedClientResponse) SetRequestIds added in v1.0.3

func (o *AccessRequestSubmittedClientResponse) SetRequestIds(v []string)

SetRequestIds sets field value

func (AccessRequestSubmittedClientResponse) ToMap added in v1.0.3

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

func (*AccessRequestSubmittedClientResponse) UnmarshalJSON added in v1.0.3

func (o *AccessRequestSubmittedClientResponse) UnmarshalJSON(bytes []byte) (err error)

func (*AccessRequestSubmittedClientResponse) UnsetMessage added in v1.0.3

func (o *AccessRequestSubmittedClientResponse) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

type AccessRequestTemplateClientModel

type AccessRequestTemplateClientModel struct {
	Id            string                               `json:"id"`
	Name          string                               `json:"name"`
	Type          AccessRequestTemplateTypeClientModel `json:"type"`
	Integrations  []IntegrationClientModel             `json:"integrations"`
	ResourceTypes []ResourceTypeClientModel            `json:"resource_types"`
	Resources     []ResourceClientModel                `json:"resources"`
	Permissions   []PermissionClientModel              `json:"permissions"`
	CreateDate    float64                              `json:"create_date"`
}

AccessRequestTemplateClientModel struct for AccessRequestTemplateClientModel

func NewAccessRequestTemplateClientModel

func NewAccessRequestTemplateClientModel(id string, name string, type_ AccessRequestTemplateTypeClientModel, integrations []IntegrationClientModel, resourceTypes []ResourceTypeClientModel, resources []ResourceClientModel, permissions []PermissionClientModel, createDate float64) *AccessRequestTemplateClientModel

NewAccessRequestTemplateClientModel instantiates a new AccessRequestTemplateClientModel 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 NewAccessRequestTemplateClientModelWithDefaults

func NewAccessRequestTemplateClientModelWithDefaults() *AccessRequestTemplateClientModel

NewAccessRequestTemplateClientModelWithDefaults instantiates a new AccessRequestTemplateClientModel 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 (*AccessRequestTemplateClientModel) GetCreateDate

func (o *AccessRequestTemplateClientModel) GetCreateDate() float64

GetCreateDate returns the CreateDate field value

func (*AccessRequestTemplateClientModel) GetCreateDateOk

func (o *AccessRequestTemplateClientModel) GetCreateDateOk() (*float64, bool)

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

func (*AccessRequestTemplateClientModel) GetId

GetId returns the Id field value

func (*AccessRequestTemplateClientModel) GetIdOk

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

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

func (*AccessRequestTemplateClientModel) GetIntegrations

GetIntegrations returns the Integrations field value

func (*AccessRequestTemplateClientModel) GetIntegrationsOk

func (o *AccessRequestTemplateClientModel) GetIntegrationsOk() ([]IntegrationClientModel, bool)

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

func (*AccessRequestTemplateClientModel) GetName

GetName returns the Name field value

func (*AccessRequestTemplateClientModel) GetNameOk

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

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

func (*AccessRequestTemplateClientModel) GetPermissions

GetPermissions returns the Permissions field value

func (*AccessRequestTemplateClientModel) GetPermissionsOk

func (o *AccessRequestTemplateClientModel) GetPermissionsOk() ([]PermissionClientModel, bool)

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

func (*AccessRequestTemplateClientModel) GetResourceTypes

GetResourceTypes returns the ResourceTypes field value

func (*AccessRequestTemplateClientModel) GetResourceTypesOk

func (o *AccessRequestTemplateClientModel) GetResourceTypesOk() ([]ResourceTypeClientModel, bool)

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

func (*AccessRequestTemplateClientModel) GetResources

GetResources returns the Resources field value

func (*AccessRequestTemplateClientModel) GetResourcesOk

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

func (*AccessRequestTemplateClientModel) GetType

GetType returns the Type field value

func (*AccessRequestTemplateClientModel) GetTypeOk

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

func (AccessRequestTemplateClientModel) MarshalJSON

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

func (*AccessRequestTemplateClientModel) SetCreateDate

func (o *AccessRequestTemplateClientModel) SetCreateDate(v float64)

SetCreateDate sets field value

func (*AccessRequestTemplateClientModel) SetId

SetId sets field value

func (*AccessRequestTemplateClientModel) SetIntegrations

SetIntegrations sets field value

func (*AccessRequestTemplateClientModel) SetName

SetName sets field value

func (*AccessRequestTemplateClientModel) SetPermissions

SetPermissions sets field value

func (*AccessRequestTemplateClientModel) SetResourceTypes

SetResourceTypes sets field value

func (*AccessRequestTemplateClientModel) SetResources

SetResources sets field value

func (*AccessRequestTemplateClientModel) SetType

SetType sets field value

func (AccessRequestTemplateClientModel) ToMap

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

func (*AccessRequestTemplateClientModel) UnmarshalJSON

func (o *AccessRequestTemplateClientModel) UnmarshalJSON(bytes []byte) (err error)

type AccessRequestTemplateTypeClientModel

type AccessRequestTemplateTypeClientModel string

AccessRequestTemplateTypeClientModel the model 'AccessRequestTemplateTypeClientModel'

const (
	ACCESSREQUESTTEMPLATETYPECLIENTMODEL_INTEGRATION_REQUEST AccessRequestTemplateTypeClientModel = "IntegrationRequest"
)

List of AccessRequestTemplateTypeClientModel

func NewAccessRequestTemplateTypeClientModelFromValue

func NewAccessRequestTemplateTypeClientModelFromValue(v string) (*AccessRequestTemplateTypeClientModel, error)

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

func (AccessRequestTemplateTypeClientModel) IsValid

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

func (AccessRequestTemplateTypeClientModel) Ptr

Ptr returns reference to AccessRequestTemplateTypeClientModel value

func (*AccessRequestTemplateTypeClientModel) UnmarshalJSON

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

type AccessRequestTemplatesAPIService

type AccessRequestTemplatesAPIService service

AccessRequestTemplatesAPIService AccessRequestTemplatesAPI service

func (*AccessRequestTemplatesAPIService) CreateAccessRequestTemplate

CreateAccessRequestTemplate Create access request template

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

func (*AccessRequestTemplatesAPIService) CreateAccessRequestTemplateExecute

Execute executes the request

@return AccessRequestTemplateClientModel

func (*AccessRequestTemplatesAPIService) DeleteAccessRequestTemplate

DeleteAccessRequestTemplate Delete access request template

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

func (*AccessRequestTemplatesAPIService) DeleteAccessRequestTemplateExecute

Execute executes the request

@return MessageResponse

func (*AccessRequestTemplatesAPIService) GetAccessRequestTemplate

GetAccessRequestTemplate Get access request template by ID

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

func (*AccessRequestTemplatesAPIService) GetAccessRequestTemplateExecute

Execute executes the request

@return AccessRequestTemplateClientModel

func (*AccessRequestTemplatesAPIService) ListAccessRequestTemplates

ListAccessRequestTemplates List access request templates

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

func (*AccessRequestTemplatesAPIService) ListAccessRequestTemplatesExecute

Execute executes the request

@return PaginatedClientResponseModelAccessRequestTemplateClientModel

func (*AccessRequestTemplatesAPIService) UpdateAccessRequestTemplate

UpdateAccessRequestTemplate Update access request template

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

func (*AccessRequestTemplatesAPIService) UpdateAccessRequestTemplateExecute

Execute executes the request

@return AccessRequestTemplateClientModel

type AccessRequestUnitClientModel added in v1.3.0

type AccessRequestUnitClientModel struct {
	Id          string                  `json:"id"`
	AccessUnits []AccessUnitClientModel `json:"access_units"`
}

AccessRequestUnitClientModel struct for AccessRequestUnitClientModel

func NewAccessRequestUnitClientModel added in v1.3.0

func NewAccessRequestUnitClientModel(id string, accessUnits []AccessUnitClientModel) *AccessRequestUnitClientModel

NewAccessRequestUnitClientModel instantiates a new AccessRequestUnitClientModel 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 NewAccessRequestUnitClientModelWithDefaults added in v1.3.0

func NewAccessRequestUnitClientModelWithDefaults() *AccessRequestUnitClientModel

NewAccessRequestUnitClientModelWithDefaults instantiates a new AccessRequestUnitClientModel 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 (*AccessRequestUnitClientModel) GetAccessUnits added in v1.3.0

GetAccessUnits returns the AccessUnits field value

func (*AccessRequestUnitClientModel) GetAccessUnitsOk added in v1.3.0

func (o *AccessRequestUnitClientModel) GetAccessUnitsOk() ([]AccessUnitClientModel, bool)

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

func (*AccessRequestUnitClientModel) GetId added in v1.3.0

GetId returns the Id field value

func (*AccessRequestUnitClientModel) GetIdOk added in v1.3.0

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

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

func (AccessRequestUnitClientModel) MarshalJSON added in v1.3.0

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

func (*AccessRequestUnitClientModel) SetAccessUnits added in v1.3.0

func (o *AccessRequestUnitClientModel) SetAccessUnits(v []AccessUnitClientModel)

SetAccessUnits sets field value

func (*AccessRequestUnitClientModel) SetId added in v1.3.0

SetId sets field value

func (AccessRequestUnitClientModel) ToMap added in v1.3.0

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

func (*AccessRequestUnitClientModel) UnmarshalJSON added in v1.3.0

func (o *AccessRequestUnitClientModel) UnmarshalJSON(bytes []byte) (err error)

type AccessRequestsAPIService

type AccessRequestsAPIService service

AccessRequestsAPIService AccessRequestsAPI service

func (*AccessRequestsAPIService) ApproveAccessRequest

ApproveAccessRequest Approve access request

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

func (*AccessRequestsAPIService) ApproveAccessRequestExecute

Execute executes the request

@return MessageResponse

func (*AccessRequestsAPIService) CreateUserAccessRequest

CreateUserAccessRequest Create user access request

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

func (*AccessRequestsAPIService) CreateUserAccessRequestExecute

Execute executes the request

@return AccessRequestSubmittedClientResponse

func (*AccessRequestsAPIService) DryRunCreateUserAccessRequest added in v1.0.3

DryRunCreateUserAccessRequest Create user access request - dry run

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

func (*AccessRequestsAPIService) DryRunCreateUserAccessRequestExecute added in v1.0.3

Execute executes the request

@return DryRunClientResponse

func (*AccessRequestsAPIService) GetAccessRequest

GetAccessRequest Get access request

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

func (*AccessRequestsAPIService) GetAccessRequestExecute

Execute executes the request

@return AccessRequestClientModel

func (*AccessRequestsAPIService) ListAccessRequests

ListAccessRequests List access requests

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

func (*AccessRequestsAPIService) ListAccessRequestsExecute

Execute executes the request

@return PaginatedClientResponseModelAccessRequestClientModel

func (*AccessRequestsAPIService) ListAccessRequestsUnits added in v1.3.0

ListAccessRequestsUnits list access requests units by request IDs or friendly IDs

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

func (*AccessRequestsAPIService) ListAccessRequestsUnitsExecute added in v1.3.0

Execute executes the request

@return []AccessRequestUnitClientModel

func (*AccessRequestsAPIService) PassMfaForAccessRequests added in v1.2.2

PassMfaForAccessRequests Method for PassMfaForAccessRequests

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

func (*AccessRequestsAPIService) PassMfaForAccessRequestsExecute added in v1.2.2

Execute executes the request

@return PassMfaClientResponse

func (*AccessRequestsAPIService) RejectAccessRequest

RejectAccessRequest Reject access request

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

func (*AccessRequestsAPIService) RejectAccessRequestExecute

Execute executes the request

@return MessageResponse

func (*AccessRequestsAPIService) RequestAgainAccessRequest

RequestAgainAccessRequest request again access request

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

func (*AccessRequestsAPIService) RequestAgainAccessRequestExecute

Execute executes the request

@return AccessRequestSubmittedClientResponse

func (*AccessRequestsAPIService) RevokeAccessRequest

RevokeAccessRequest Revoke access request

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

func (*AccessRequestsAPIService) RevokeAccessRequestExecute

Execute executes the request

@return MessageResponse

func (*AccessRequestsAPIService) UpdateFavoriteState added in v1.2.2

UpdateFavoriteState Update access request favorite state

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

func (*AccessRequestsAPIService) UpdateFavoriteStateExecute added in v1.2.2

Execute executes the request

@return AccessRequestClientModel

type AccessRequestsAffectedByMfa added in v1.2.2

type AccessRequestsAffectedByMfa struct {
	Total             int32    `json:"total"`
	AccessRequestsIds []string `json:"access_requests_ids"`
}

AccessRequestsAffectedByMfa struct for AccessRequestsAffectedByMfa

func NewAccessRequestsAffectedByMfa added in v1.2.2

func NewAccessRequestsAffectedByMfa(total int32, accessRequestsIds []string) *AccessRequestsAffectedByMfa

NewAccessRequestsAffectedByMfa instantiates a new AccessRequestsAffectedByMfa 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 NewAccessRequestsAffectedByMfaWithDefaults added in v1.2.2

func NewAccessRequestsAffectedByMfaWithDefaults() *AccessRequestsAffectedByMfa

NewAccessRequestsAffectedByMfaWithDefaults instantiates a new AccessRequestsAffectedByMfa 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 (*AccessRequestsAffectedByMfa) GetAccessRequestsIds added in v1.2.2

func (o *AccessRequestsAffectedByMfa) GetAccessRequestsIds() []string

GetAccessRequestsIds returns the AccessRequestsIds field value

func (*AccessRequestsAffectedByMfa) GetAccessRequestsIdsOk added in v1.2.2

func (o *AccessRequestsAffectedByMfa) GetAccessRequestsIdsOk() ([]string, bool)

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

func (*AccessRequestsAffectedByMfa) GetTotal added in v1.2.2

func (o *AccessRequestsAffectedByMfa) GetTotal() int32

GetTotal returns the Total field value

func (*AccessRequestsAffectedByMfa) GetTotalOk added in v1.2.2

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

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

func (AccessRequestsAffectedByMfa) MarshalJSON added in v1.2.2

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

func (*AccessRequestsAffectedByMfa) SetAccessRequestsIds added in v1.2.2

func (o *AccessRequestsAffectedByMfa) SetAccessRequestsIds(v []string)

SetAccessRequestsIds sets field value

func (*AccessRequestsAffectedByMfa) SetTotal added in v1.2.2

func (o *AccessRequestsAffectedByMfa) SetTotal(v int32)

SetTotal sets field value

func (AccessRequestsAffectedByMfa) ToMap added in v1.2.2

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

func (*AccessRequestsAffectedByMfa) UnmarshalJSON added in v1.2.2

func (o *AccessRequestsAffectedByMfa) UnmarshalJSON(bytes []byte) (err error)

type AccessRequestsScopeModel

type AccessRequestsScopeModel string

AccessRequestsScopeModel the model 'AccessRequestsScopeModel'

const (
	ACCESSREQUESTSSCOPEMODEL_MY_REQUESTS           AccessRequestsScopeModel = "MyRequests"
	ACCESSREQUESTSSCOPEMODEL_MY_TASKS              AccessRequestsScopeModel = "MyTasks"
	ACCESSREQUESTSSCOPEMODEL_MY_HISTORIC_TASKS     AccessRequestsScopeModel = "MyHistoricTasks"
	ACCESSREQUESTSSCOPEMODEL_MY_DELEGATED_REQUESTS AccessRequestsScopeModel = "MyDelegatedRequests"
)

List of AccessRequestsScopeModel

func NewAccessRequestsScopeModelFromValue

func NewAccessRequestsScopeModelFromValue(v string) (*AccessRequestsScopeModel, error)

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

func (AccessRequestsScopeModel) IsValid

func (v AccessRequestsScopeModel) IsValid() bool

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

func (AccessRequestsScopeModel) Ptr

Ptr returns reference to AccessRequestsScopeModel value

func (*AccessRequestsScopeModel) UnmarshalJSON

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

type AccessSessionClientModel

type AccessSessionClientModel struct {
	Id                   string                                      `json:"id"`
	Name                 string                                      `json:"name"`
	Type                 SessionTypeClientModel                      `json:"type"`
	Integration          IntegrationClientModel                      `json:"integration"`
	Credentials          NullableAccessSessionClientModelCredentials `json:"credentials,omitempty"`
	ConnectionMethods    []string                                    `json:"connection_methods"`
	Status               string                                      `json:"status"`
	HasMoreAccessUnits   bool                                        `json:"has_more_access_units"`
	HasLinkAccessDetails NullableBool                                `json:"has_link_access_details,omitempty"`
}

AccessSessionClientModel struct for AccessSessionClientModel

func NewAccessSessionClientModel

func NewAccessSessionClientModel(id string, name string, type_ SessionTypeClientModel, integration IntegrationClientModel, connectionMethods []string, status string, hasMoreAccessUnits bool) *AccessSessionClientModel

NewAccessSessionClientModel instantiates a new AccessSessionClientModel 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 NewAccessSessionClientModelWithDefaults

func NewAccessSessionClientModelWithDefaults() *AccessSessionClientModel

NewAccessSessionClientModelWithDefaults instantiates a new AccessSessionClientModel 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 (*AccessSessionClientModel) GetConnectionMethods

func (o *AccessSessionClientModel) GetConnectionMethods() []string

GetConnectionMethods returns the ConnectionMethods field value

func (*AccessSessionClientModel) GetConnectionMethodsOk

func (o *AccessSessionClientModel) GetConnectionMethodsOk() ([]string, bool)

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

func (*AccessSessionClientModel) GetCredentials

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

func (*AccessSessionClientModel) GetCredentialsOk

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

func (*AccessSessionClientModel) GetHasLinkAccessDetails added in v1.2.2

func (o *AccessSessionClientModel) GetHasLinkAccessDetails() bool

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

func (*AccessSessionClientModel) GetHasLinkAccessDetailsOk added in v1.2.2

func (o *AccessSessionClientModel) GetHasLinkAccessDetailsOk() (*bool, bool)

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

func (*AccessSessionClientModel) GetHasMoreAccessUnits added in v1.0.3

func (o *AccessSessionClientModel) GetHasMoreAccessUnits() bool

GetHasMoreAccessUnits returns the HasMoreAccessUnits field value

func (*AccessSessionClientModel) GetHasMoreAccessUnitsOk added in v1.0.3

func (o *AccessSessionClientModel) GetHasMoreAccessUnitsOk() (*bool, bool)

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

func (*AccessSessionClientModel) GetId

func (o *AccessSessionClientModel) GetId() string

GetId returns the Id field value

func (*AccessSessionClientModel) GetIdOk

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

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

func (*AccessSessionClientModel) GetIntegration

GetIntegration returns the Integration field value

func (*AccessSessionClientModel) GetIntegrationOk

func (o *AccessSessionClientModel) GetIntegrationOk() (*IntegrationClientModel, bool)

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

func (*AccessSessionClientModel) GetName

func (o *AccessSessionClientModel) GetName() string

GetName returns the Name field value

func (*AccessSessionClientModel) GetNameOk

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

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

func (*AccessSessionClientModel) GetStatus added in v1.0.3

func (o *AccessSessionClientModel) GetStatus() string

GetStatus returns the Status field value

func (*AccessSessionClientModel) GetStatusOk added in v1.0.3

func (o *AccessSessionClientModel) GetStatusOk() (*string, bool)

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

func (*AccessSessionClientModel) GetType

GetType returns the Type field value

func (*AccessSessionClientModel) GetTypeOk

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

func (*AccessSessionClientModel) HasCredentials

func (o *AccessSessionClientModel) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*AccessSessionClientModel) HasHasLinkAccessDetails added in v1.2.2

func (o *AccessSessionClientModel) HasHasLinkAccessDetails() bool

HasHasLinkAccessDetails returns a boolean if a field has been set.

func (AccessSessionClientModel) MarshalJSON

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

func (*AccessSessionClientModel) SetConnectionMethods

func (o *AccessSessionClientModel) SetConnectionMethods(v []string)

SetConnectionMethods sets field value

func (*AccessSessionClientModel) SetCredentials

SetCredentials gets a reference to the given NullableAccessSessionClientModelCredentials and assigns it to the Credentials field.

func (*AccessSessionClientModel) SetCredentialsNil

func (o *AccessSessionClientModel) SetCredentialsNil()

SetCredentialsNil sets the value for Credentials to be an explicit nil

func (*AccessSessionClientModel) SetHasLinkAccessDetails added in v1.2.2

func (o *AccessSessionClientModel) SetHasLinkAccessDetails(v bool)

SetHasLinkAccessDetails gets a reference to the given NullableBool and assigns it to the HasLinkAccessDetails field.

func (*AccessSessionClientModel) SetHasLinkAccessDetailsNil added in v1.2.2

func (o *AccessSessionClientModel) SetHasLinkAccessDetailsNil()

SetHasLinkAccessDetailsNil sets the value for HasLinkAccessDetails to be an explicit nil

func (*AccessSessionClientModel) SetHasMoreAccessUnits added in v1.0.3

func (o *AccessSessionClientModel) SetHasMoreAccessUnits(v bool)

SetHasMoreAccessUnits sets field value

func (*AccessSessionClientModel) SetId

func (o *AccessSessionClientModel) SetId(v string)

SetId sets field value

func (*AccessSessionClientModel) SetIntegration

func (o *AccessSessionClientModel) SetIntegration(v IntegrationClientModel)

SetIntegration sets field value

func (*AccessSessionClientModel) SetName

func (o *AccessSessionClientModel) SetName(v string)

SetName sets field value

func (*AccessSessionClientModel) SetStatus added in v1.0.3

func (o *AccessSessionClientModel) SetStatus(v string)

SetStatus sets field value

func (*AccessSessionClientModel) SetType

SetType sets field value

func (AccessSessionClientModel) ToMap

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

func (*AccessSessionClientModel) UnmarshalJSON

func (o *AccessSessionClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*AccessSessionClientModel) UnsetCredentials

func (o *AccessSessionClientModel) UnsetCredentials()

UnsetCredentials ensures that no value is present for Credentials, not even an explicit nil

func (*AccessSessionClientModel) UnsetHasLinkAccessDetails added in v1.2.2

func (o *AccessSessionClientModel) UnsetHasLinkAccessDetails()

UnsetHasLinkAccessDetails ensures that no value is present for HasLinkAccessDetails, not even an explicit nil

type AccessSessionClientModelCredentials

type AccessSessionClientModelCredentials struct {
	Id       string `json:"id"`
	Status   string `json:"status"`
	CanReset bool   `json:"can_reset"`
}

AccessSessionClientModelCredentials struct for AccessSessionClientModelCredentials

func NewAccessSessionClientModelCredentials

func NewAccessSessionClientModelCredentials(id string, status string, canReset bool) *AccessSessionClientModelCredentials

NewAccessSessionClientModelCredentials instantiates a new AccessSessionClientModelCredentials 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 NewAccessSessionClientModelCredentialsWithDefaults

func NewAccessSessionClientModelCredentialsWithDefaults() *AccessSessionClientModelCredentials

NewAccessSessionClientModelCredentialsWithDefaults instantiates a new AccessSessionClientModelCredentials 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 (*AccessSessionClientModelCredentials) GetCanReset

func (o *AccessSessionClientModelCredentials) GetCanReset() bool

GetCanReset returns the CanReset field value

func (*AccessSessionClientModelCredentials) GetCanResetOk

func (o *AccessSessionClientModelCredentials) GetCanResetOk() (*bool, bool)

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

func (*AccessSessionClientModelCredentials) GetId

GetId returns the Id field value

func (*AccessSessionClientModelCredentials) GetIdOk

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

func (*AccessSessionClientModelCredentials) GetStatus

GetStatus returns the Status field value

func (*AccessSessionClientModelCredentials) GetStatusOk

func (o *AccessSessionClientModelCredentials) GetStatusOk() (*string, bool)

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

func (AccessSessionClientModelCredentials) MarshalJSON

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

func (*AccessSessionClientModelCredentials) SetCanReset

func (o *AccessSessionClientModelCredentials) SetCanReset(v bool)

SetCanReset sets field value

func (*AccessSessionClientModelCredentials) SetId

SetId sets field value

func (*AccessSessionClientModelCredentials) SetStatus

SetStatus sets field value

func (AccessSessionClientModelCredentials) ToMap

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

func (*AccessSessionClientModelCredentials) UnmarshalJSON

func (o *AccessSessionClientModelCredentials) UnmarshalJSON(bytes []byte) (err error)

type AccessSessionDetailsClientModel

type AccessSessionDetailsClientModel struct {
	Credentials  NullableAccessSessionClientModelCredentials `json:"credentials,omitempty"`
	Instructions InstructionClientModel                      `json:"instructions"`
	Json         map[string]interface{}                      `json:"json,omitempty"`
	Cli          NullableString                              `json:"cli,omitempty"`
	Link         NullableAccessSessionDetailsClientModelLink `json:"link,omitempty"`
}

AccessSessionDetailsClientModel struct for AccessSessionDetailsClientModel

func NewAccessSessionDetailsClientModel

func NewAccessSessionDetailsClientModel(instructions InstructionClientModel) *AccessSessionDetailsClientModel

NewAccessSessionDetailsClientModel instantiates a new AccessSessionDetailsClientModel 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 NewAccessSessionDetailsClientModelWithDefaults

func NewAccessSessionDetailsClientModelWithDefaults() *AccessSessionDetailsClientModel

NewAccessSessionDetailsClientModelWithDefaults instantiates a new AccessSessionDetailsClientModel 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 (*AccessSessionDetailsClientModel) GetCli

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

func (*AccessSessionDetailsClientModel) GetCliOk

func (o *AccessSessionDetailsClientModel) GetCliOk() (*string, bool)

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

func (*AccessSessionDetailsClientModel) GetCredentials

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

func (*AccessSessionDetailsClientModel) GetCredentialsOk

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

func (*AccessSessionDetailsClientModel) GetInstructions

GetInstructions returns the Instructions field value

func (*AccessSessionDetailsClientModel) GetInstructionsOk

func (o *AccessSessionDetailsClientModel) GetInstructionsOk() (*InstructionClientModel, bool)

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

func (*AccessSessionDetailsClientModel) GetJson

func (o *AccessSessionDetailsClientModel) GetJson() map[string]interface{}

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

func (*AccessSessionDetailsClientModel) GetJsonOk

func (o *AccessSessionDetailsClientModel) GetJsonOk() (map[string]interface{}, bool)

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

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

func (*AccessSessionDetailsClientModel) GetLinkOk

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

func (*AccessSessionDetailsClientModel) HasCli

HasCli returns a boolean if a field has been set.

func (*AccessSessionDetailsClientModel) HasCredentials

func (o *AccessSessionDetailsClientModel) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*AccessSessionDetailsClientModel) HasJson

HasJson returns a boolean if a field has been set.

HasLink returns a boolean if a field has been set.

func (AccessSessionDetailsClientModel) MarshalJSON

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

func (*AccessSessionDetailsClientModel) SetCli

SetCli gets a reference to the given NullableString and assigns it to the Cli field.

func (*AccessSessionDetailsClientModel) SetCliNil

func (o *AccessSessionDetailsClientModel) SetCliNil()

SetCliNil sets the value for Cli to be an explicit nil

func (*AccessSessionDetailsClientModel) SetCredentials

SetCredentials gets a reference to the given NullableAccessSessionClientModelCredentials and assigns it to the Credentials field.

func (*AccessSessionDetailsClientModel) SetCredentialsNil

func (o *AccessSessionDetailsClientModel) SetCredentialsNil()

SetCredentialsNil sets the value for Credentials to be an explicit nil

func (*AccessSessionDetailsClientModel) SetInstructions

SetInstructions sets field value

func (*AccessSessionDetailsClientModel) SetJson

func (o *AccessSessionDetailsClientModel) SetJson(v map[string]interface{})

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

SetLink gets a reference to the given NullableAccessSessionDetailsClientModelLink and assigns it to the Link field.

func (*AccessSessionDetailsClientModel) SetLinkNil

func (o *AccessSessionDetailsClientModel) SetLinkNil()

SetLinkNil sets the value for Link to be an explicit nil

func (AccessSessionDetailsClientModel) ToMap

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

func (*AccessSessionDetailsClientModel) UnmarshalJSON

func (o *AccessSessionDetailsClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*AccessSessionDetailsClientModel) UnsetCli

func (o *AccessSessionDetailsClientModel) UnsetCli()

UnsetCli ensures that no value is present for Cli, not even an explicit nil

func (*AccessSessionDetailsClientModel) UnsetCredentials

func (o *AccessSessionDetailsClientModel) UnsetCredentials()

UnsetCredentials ensures that no value is present for Credentials, not even an explicit nil

func (o *AccessSessionDetailsClientModel) UnsetLink()

UnsetLink ensures that no value is present for Link, not even an explicit nil

type AccessSessionDetailsClientModelLink struct {
	Url   string         `json:"url"`
	Title NullableString `json:"title,omitempty"`
}

AccessSessionDetailsClientModelLink struct for AccessSessionDetailsClientModelLink

func NewAccessSessionDetailsClientModelLink(url string) *AccessSessionDetailsClientModelLink

NewAccessSessionDetailsClientModelLink instantiates a new AccessSessionDetailsClientModelLink 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 NewAccessSessionDetailsClientModelLinkWithDefaults

func NewAccessSessionDetailsClientModelLinkWithDefaults() *AccessSessionDetailsClientModelLink

NewAccessSessionDetailsClientModelLinkWithDefaults instantiates a new AccessSessionDetailsClientModelLink 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 (*AccessSessionDetailsClientModelLink) GetTitle

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

func (*AccessSessionDetailsClientModelLink) GetTitleOk

func (o *AccessSessionDetailsClientModelLink) GetTitleOk() (*string, bool)

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

func (*AccessSessionDetailsClientModelLink) GetUrl

GetUrl returns the Url field value

func (*AccessSessionDetailsClientModelLink) GetUrlOk

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

func (*AccessSessionDetailsClientModelLink) HasTitle

HasTitle returns a boolean if a field has been set.

func (AccessSessionDetailsClientModelLink) MarshalJSON

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

func (*AccessSessionDetailsClientModelLink) SetTitle

SetTitle gets a reference to the given NullableString and assigns it to the Title field.

func (*AccessSessionDetailsClientModelLink) SetTitleNil

func (o *AccessSessionDetailsClientModelLink) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*AccessSessionDetailsClientModelLink) SetUrl

SetUrl sets field value

func (AccessSessionDetailsClientModelLink) ToMap

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

func (*AccessSessionDetailsClientModelLink) UnmarshalJSON

func (o *AccessSessionDetailsClientModelLink) UnmarshalJSON(bytes []byte) (err error)

func (*AccessSessionDetailsClientModelLink) UnsetTitle

func (o *AccessSessionDetailsClientModelLink) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

type AccessSessionRequestTemplateClientModel added in v1.0.3

type AccessSessionRequestTemplateClientModel struct {
	Integrations  []IntegrationClientModel  `json:"integrations"`
	ResourceTypes []ResourceTypeClientModel `json:"resource_types"`
	Resources     []ResourceClientModel     `json:"resources"`
	Permissions   []PermissionClientModel   `json:"permissions"`
}

AccessSessionRequestTemplateClientModel struct for AccessSessionRequestTemplateClientModel

func NewAccessSessionRequestTemplateClientModel added in v1.0.3

func NewAccessSessionRequestTemplateClientModel(integrations []IntegrationClientModel, resourceTypes []ResourceTypeClientModel, resources []ResourceClientModel, permissions []PermissionClientModel) *AccessSessionRequestTemplateClientModel

NewAccessSessionRequestTemplateClientModel instantiates a new AccessSessionRequestTemplateClientModel 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 NewAccessSessionRequestTemplateClientModelWithDefaults added in v1.0.3

func NewAccessSessionRequestTemplateClientModelWithDefaults() *AccessSessionRequestTemplateClientModel

NewAccessSessionRequestTemplateClientModelWithDefaults instantiates a new AccessSessionRequestTemplateClientModel 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 (*AccessSessionRequestTemplateClientModel) GetIntegrations added in v1.0.3

GetIntegrations returns the Integrations field value

func (*AccessSessionRequestTemplateClientModel) GetIntegrationsOk added in v1.0.3

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

func (*AccessSessionRequestTemplateClientModel) GetPermissions added in v1.0.3

GetPermissions returns the Permissions field value

func (*AccessSessionRequestTemplateClientModel) GetPermissionsOk added in v1.0.3

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

func (*AccessSessionRequestTemplateClientModel) GetResourceTypes added in v1.0.3

GetResourceTypes returns the ResourceTypes field value

func (*AccessSessionRequestTemplateClientModel) GetResourceTypesOk added in v1.0.3

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

func (*AccessSessionRequestTemplateClientModel) GetResources added in v1.0.3

GetResources returns the Resources field value

func (*AccessSessionRequestTemplateClientModel) GetResourcesOk added in v1.0.3

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

func (AccessSessionRequestTemplateClientModel) MarshalJSON added in v1.0.3

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

func (*AccessSessionRequestTemplateClientModel) SetIntegrations added in v1.0.3

SetIntegrations sets field value

func (*AccessSessionRequestTemplateClientModel) SetPermissions added in v1.0.3

SetPermissions sets field value

func (*AccessSessionRequestTemplateClientModel) SetResourceTypes added in v1.0.3

SetResourceTypes sets field value

func (*AccessSessionRequestTemplateClientModel) SetResources added in v1.0.3

SetResources sets field value

func (AccessSessionRequestTemplateClientModel) ToMap added in v1.0.3

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

func (*AccessSessionRequestTemplateClientModel) UnmarshalJSON added in v1.0.3

func (o *AccessSessionRequestTemplateClientModel) UnmarshalJSON(bytes []byte) (err error)

type AccessSessionsAPIService

type AccessSessionsAPIService service

AccessSessionsAPIService AccessSessionsAPI service

func (*AccessSessionsAPIService) GetAccessSession

GetAccessSession Get access session

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

func (*AccessSessionsAPIService) GetAccessSessionAccessDetails

GetAccessSessionAccessDetails Get access session details

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

func (*AccessSessionsAPIService) GetAccessSessionAccessDetailsExecute

Execute executes the request

@return AccessSessionDetailsClientModel

func (*AccessSessionsAPIService) GetAccessSessionExecute

Execute executes the request

@return AccessSessionClientModel

func (*AccessSessionsAPIService) GetAccessSessionRequestTemplate added in v1.0.3

func (a *AccessSessionsAPIService) GetAccessSessionRequestTemplate(ctx context.Context, id string) ApiGetAccessSessionRequestTemplateRequest

GetAccessSessionRequestTemplate Get access session request template

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

func (*AccessSessionsAPIService) GetAccessSessionRequestTemplateExecute added in v1.0.3

Execute executes the request

@return AccessSessionRequestTemplateClientModel

func (*AccessSessionsAPIService) ListAccessSessions

ListAccessSessions List access sessions

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

func (*AccessSessionsAPIService) ListAccessSessionsExecute

Execute executes the request

@return PaginatedClientResponseModelAccessSessionClientModel

func (*AccessSessionsAPIService) ListAccessSessionsGroups

ListAccessSessionsGroups List access sessions groups

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

func (*AccessSessionsAPIService) ListAccessSessionsGroupsExecute

Execute executes the request

@return PaginatedClientResponseModelAccessSessionsGroupClientModel

func (*AccessSessionsAPIService) ResetAccessSessionCredentials

ResetAccessSessionCredentials Reset access session credentials

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

func (*AccessSessionsAPIService) ResetAccessSessionCredentialsExecute

Execute executes the request

@return MessageResponse

func (*AccessSessionsAPIService) SyncAvailableSessions added in v1.0.3

SyncAvailableSessions Sync available sessions

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

func (*AccessSessionsAPIService) SyncAvailableSessionsExecute added in v1.0.3

Execute executes the request

@return MessageResponse

type AccessSessionsGroupClientModel

type AccessSessionsGroupClientModel struct {
	Integration NullableAccessSessionsGroupClientModelIntegration `json:"integration,omitempty"`
	Total       int32                                             `json:"total"`
	Sessions    []AccessSessionClientModel                        `json:"sessions"`
}

AccessSessionsGroupClientModel struct for AccessSessionsGroupClientModel

func NewAccessSessionsGroupClientModel

func NewAccessSessionsGroupClientModel(total int32, sessions []AccessSessionClientModel) *AccessSessionsGroupClientModel

NewAccessSessionsGroupClientModel instantiates a new AccessSessionsGroupClientModel 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 NewAccessSessionsGroupClientModelWithDefaults

func NewAccessSessionsGroupClientModelWithDefaults() *AccessSessionsGroupClientModel

NewAccessSessionsGroupClientModelWithDefaults instantiates a new AccessSessionsGroupClientModel 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 (*AccessSessionsGroupClientModel) GetIntegration

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

func (*AccessSessionsGroupClientModel) GetIntegrationOk

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

func (*AccessSessionsGroupClientModel) GetSessions

GetSessions returns the Sessions field value

func (*AccessSessionsGroupClientModel) GetSessionsOk

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

func (*AccessSessionsGroupClientModel) GetTotal

func (o *AccessSessionsGroupClientModel) GetTotal() int32

GetTotal returns the Total field value

func (*AccessSessionsGroupClientModel) GetTotalOk

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

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

func (*AccessSessionsGroupClientModel) HasIntegration

func (o *AccessSessionsGroupClientModel) HasIntegration() bool

HasIntegration returns a boolean if a field has been set.

func (AccessSessionsGroupClientModel) MarshalJSON

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

func (*AccessSessionsGroupClientModel) SetIntegration

SetIntegration gets a reference to the given NullableAccessSessionsGroupClientModelIntegration and assigns it to the Integration field.

func (*AccessSessionsGroupClientModel) SetIntegrationNil

func (o *AccessSessionsGroupClientModel) SetIntegrationNil()

SetIntegrationNil sets the value for Integration to be an explicit nil

func (*AccessSessionsGroupClientModel) SetSessions

SetSessions sets field value

func (*AccessSessionsGroupClientModel) SetTotal

func (o *AccessSessionsGroupClientModel) SetTotal(v int32)

SetTotal sets field value

func (AccessSessionsGroupClientModel) ToMap

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

func (*AccessSessionsGroupClientModel) UnmarshalJSON

func (o *AccessSessionsGroupClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*AccessSessionsGroupClientModel) UnsetIntegration

func (o *AccessSessionsGroupClientModel) UnsetIntegration()

UnsetIntegration ensures that no value is present for Integration, not even an explicit nil

type AccessSessionsGroupClientModelIntegration

type AccessSessionsGroupClientModelIntegration struct {
	Id              string                 `json:"id"`
	Type            string                 `json:"type"`
	TypeDisplayName string                 `json:"type_display_name"`
	Name            string                 `json:"name"`
	Icons           IconsConfigClientModel `json:"icons"`
}

AccessSessionsGroupClientModelIntegration struct for AccessSessionsGroupClientModelIntegration

func NewAccessSessionsGroupClientModelIntegration

func NewAccessSessionsGroupClientModelIntegration(id string, type_ string, typeDisplayName string, name string, icons IconsConfigClientModel) *AccessSessionsGroupClientModelIntegration

NewAccessSessionsGroupClientModelIntegration instantiates a new AccessSessionsGroupClientModelIntegration 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 NewAccessSessionsGroupClientModelIntegrationWithDefaults

func NewAccessSessionsGroupClientModelIntegrationWithDefaults() *AccessSessionsGroupClientModelIntegration

NewAccessSessionsGroupClientModelIntegrationWithDefaults instantiates a new AccessSessionsGroupClientModelIntegration 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 (*AccessSessionsGroupClientModelIntegration) GetIcons

GetIcons returns the Icons field value

func (*AccessSessionsGroupClientModelIntegration) GetIconsOk

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

func (*AccessSessionsGroupClientModelIntegration) GetId

GetId returns the Id field value

func (*AccessSessionsGroupClientModelIntegration) GetIdOk

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

func (*AccessSessionsGroupClientModelIntegration) GetName

GetName returns the Name field value

func (*AccessSessionsGroupClientModelIntegration) GetNameOk

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

func (*AccessSessionsGroupClientModelIntegration) GetType

GetType returns the Type field value

func (*AccessSessionsGroupClientModelIntegration) GetTypeDisplayName

func (o *AccessSessionsGroupClientModelIntegration) GetTypeDisplayName() string

GetTypeDisplayName returns the TypeDisplayName field value

func (*AccessSessionsGroupClientModelIntegration) GetTypeDisplayNameOk

func (o *AccessSessionsGroupClientModelIntegration) GetTypeDisplayNameOk() (*string, bool)

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

func (*AccessSessionsGroupClientModelIntegration) GetTypeOk

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

func (AccessSessionsGroupClientModelIntegration) MarshalJSON

func (*AccessSessionsGroupClientModelIntegration) SetIcons

SetIcons sets field value

func (*AccessSessionsGroupClientModelIntegration) SetId

SetId sets field value

func (*AccessSessionsGroupClientModelIntegration) SetName

SetName sets field value

func (*AccessSessionsGroupClientModelIntegration) SetType

SetType sets field value

func (*AccessSessionsGroupClientModelIntegration) SetTypeDisplayName

func (o *AccessSessionsGroupClientModelIntegration) SetTypeDisplayName(v string)

SetTypeDisplayName sets field value

func (AccessSessionsGroupClientModelIntegration) ToMap

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

func (*AccessSessionsGroupClientModelIntegration) UnmarshalJSON

func (o *AccessSessionsGroupClientModelIntegration) UnmarshalJSON(bytes []byte) (err error)

type AccessUnitClientModel

type AccessUnitClientModel struct {
	Id         string                              `json:"id"`
	Resource   ResourceClientModel                 `json:"resource"`
	Permission PermissionClientModel               `json:"permission"`
	Status     NullableAccessUnitClientModelStatus `json:"status,omitempty"`
}

AccessUnitClientModel struct for AccessUnitClientModel

func NewAccessUnitClientModel

func NewAccessUnitClientModel(id string, resource ResourceClientModel, permission PermissionClientModel) *AccessUnitClientModel

NewAccessUnitClientModel instantiates a new AccessUnitClientModel 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 NewAccessUnitClientModelWithDefaults

func NewAccessUnitClientModelWithDefaults() *AccessUnitClientModel

NewAccessUnitClientModelWithDefaults instantiates a new AccessUnitClientModel 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 (*AccessUnitClientModel) GetId

func (o *AccessUnitClientModel) GetId() string

GetId returns the Id field value

func (*AccessUnitClientModel) GetIdOk

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

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

func (*AccessUnitClientModel) GetPermission

func (o *AccessUnitClientModel) GetPermission() PermissionClientModel

GetPermission returns the Permission field value

func (*AccessUnitClientModel) GetPermissionOk

func (o *AccessUnitClientModel) GetPermissionOk() (*PermissionClientModel, bool)

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

func (*AccessUnitClientModel) GetResource

func (o *AccessUnitClientModel) GetResource() ResourceClientModel

GetResource returns the Resource field value

func (*AccessUnitClientModel) GetResourceOk

func (o *AccessUnitClientModel) GetResourceOk() (*ResourceClientModel, bool)

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

func (*AccessUnitClientModel) GetStatus

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

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

func (*AccessUnitClientModel) HasStatus

func (o *AccessUnitClientModel) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (AccessUnitClientModel) MarshalJSON

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

func (*AccessUnitClientModel) SetId

func (o *AccessUnitClientModel) SetId(v string)

SetId sets field value

func (*AccessUnitClientModel) SetPermission

func (o *AccessUnitClientModel) SetPermission(v PermissionClientModel)

SetPermission sets field value

func (*AccessUnitClientModel) SetResource

func (o *AccessUnitClientModel) SetResource(v ResourceClientModel)

SetResource sets field value

func (*AccessUnitClientModel) SetStatus

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

func (*AccessUnitClientModel) SetStatusNil

func (o *AccessUnitClientModel) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (AccessUnitClientModel) ToMap

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

func (*AccessUnitClientModel) UnmarshalJSON

func (o *AccessUnitClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*AccessUnitClientModel) UnsetStatus

func (o *AccessUnitClientModel) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

type AccessUnitClientModelStatus

type AccessUnitClientModelStatus struct {
	Status  string         `json:"status"`
	Message NullableString `json:"message,omitempty"`
}

AccessUnitClientModelStatus struct for AccessUnitClientModelStatus

func NewAccessUnitClientModelStatus

func NewAccessUnitClientModelStatus(status string) *AccessUnitClientModelStatus

NewAccessUnitClientModelStatus instantiates a new AccessUnitClientModelStatus 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 NewAccessUnitClientModelStatusWithDefaults

func NewAccessUnitClientModelStatusWithDefaults() *AccessUnitClientModelStatus

NewAccessUnitClientModelStatusWithDefaults instantiates a new AccessUnitClientModelStatus 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 (*AccessUnitClientModelStatus) GetMessage

func (o *AccessUnitClientModelStatus) GetMessage() string

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

func (*AccessUnitClientModelStatus) GetMessageOk

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

func (*AccessUnitClientModelStatus) GetStatus

func (o *AccessUnitClientModelStatus) GetStatus() string

GetStatus returns the Status field value

func (*AccessUnitClientModelStatus) GetStatusOk

func (o *AccessUnitClientModelStatus) GetStatusOk() (*string, bool)

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

func (*AccessUnitClientModelStatus) HasMessage

func (o *AccessUnitClientModelStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (AccessUnitClientModelStatus) MarshalJSON

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

func (*AccessUnitClientModelStatus) SetMessage

func (o *AccessUnitClientModelStatus) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*AccessUnitClientModelStatus) SetMessageNil

func (o *AccessUnitClientModelStatus) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccessUnitClientModelStatus) SetStatus

func (o *AccessUnitClientModelStatus) SetStatus(v string)

SetStatus sets field value

func (AccessUnitClientModelStatus) ToMap

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

func (*AccessUnitClientModelStatus) UnmarshalJSON

func (o *AccessUnitClientModelStatus) UnmarshalJSON(bytes []byte) (err error)

func (*AccessUnitClientModelStatus) UnsetMessage

func (o *AccessUnitClientModelStatus) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

type AccessUnitStatusClientModel

type AccessUnitStatusClientModel struct {
	Status  string         `json:"status"`
	Message NullableString `json:"message,omitempty"`
}

AccessUnitStatusClientModel struct for AccessUnitStatusClientModel

func NewAccessUnitStatusClientModel

func NewAccessUnitStatusClientModel(status string) *AccessUnitStatusClientModel

NewAccessUnitStatusClientModel instantiates a new AccessUnitStatusClientModel 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 NewAccessUnitStatusClientModelWithDefaults

func NewAccessUnitStatusClientModelWithDefaults() *AccessUnitStatusClientModel

NewAccessUnitStatusClientModelWithDefaults instantiates a new AccessUnitStatusClientModel 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 (*AccessUnitStatusClientModel) GetMessage

func (o *AccessUnitStatusClientModel) GetMessage() string

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

func (*AccessUnitStatusClientModel) GetMessageOk

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

func (*AccessUnitStatusClientModel) GetStatus

func (o *AccessUnitStatusClientModel) GetStatus() string

GetStatus returns the Status field value

func (*AccessUnitStatusClientModel) GetStatusOk

func (o *AccessUnitStatusClientModel) GetStatusOk() (*string, bool)

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

func (*AccessUnitStatusClientModel) HasMessage

func (o *AccessUnitStatusClientModel) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (AccessUnitStatusClientModel) MarshalJSON

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

func (*AccessUnitStatusClientModel) SetMessage

func (o *AccessUnitStatusClientModel) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*AccessUnitStatusClientModel) SetMessageNil

func (o *AccessUnitStatusClientModel) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccessUnitStatusClientModel) SetStatus

func (o *AccessUnitStatusClientModel) SetStatus(v string)

SetStatus sets field value

func (AccessUnitStatusClientModel) ToMap

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

func (*AccessUnitStatusClientModel) UnmarshalJSON

func (o *AccessUnitStatusClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*AccessUnitStatusClientModel) UnsetMessage

func (o *AccessUnitStatusClientModel) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

type AccountClientModel added in v1.0.0

type AccountClientModel struct {
	Id   string `json:"id"`
	Name string `json:"name"`
	Plan string `json:"plan"`
}

AccountClientModel struct for AccountClientModel

func NewAccountClientModel added in v1.0.0

func NewAccountClientModel(id string, name string, plan string) *AccountClientModel

NewAccountClientModel instantiates a new AccountClientModel 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 NewAccountClientModelWithDefaults added in v1.0.0

func NewAccountClientModelWithDefaults() *AccountClientModel

NewAccountClientModelWithDefaults instantiates a new AccountClientModel 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 (*AccountClientModel) GetId added in v1.0.0

func (o *AccountClientModel) GetId() string

GetId returns the Id field value

func (*AccountClientModel) GetIdOk added in v1.0.0

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

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

func (*AccountClientModel) GetName added in v1.0.0

func (o *AccountClientModel) GetName() string

GetName returns the Name field value

func (*AccountClientModel) GetNameOk added in v1.0.0

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

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

func (*AccountClientModel) GetPlan added in v1.0.0

func (o *AccountClientModel) GetPlan() string

GetPlan returns the Plan field value

func (*AccountClientModel) GetPlanOk added in v1.0.0

func (o *AccountClientModel) GetPlanOk() (*string, bool)

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

func (AccountClientModel) MarshalJSON added in v1.0.0

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

func (*AccountClientModel) SetId added in v1.0.0

func (o *AccountClientModel) SetId(v string)

SetId sets field value

func (*AccountClientModel) SetName added in v1.0.0

func (o *AccountClientModel) SetName(v string)

SetName sets field value

func (*AccountClientModel) SetPlan added in v1.0.0

func (o *AccountClientModel) SetPlan(v string)

SetPlan sets field value

func (AccountClientModel) ToMap added in v1.0.0

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

func (*AccountClientModel) UnmarshalJSON added in v1.0.0

func (o *AccountClientModel) UnmarshalJSON(bytes []byte) (err error)

type AccountsAPIService added in v1.2.2

type AccountsAPIService service

AccountsAPIService AccountsAPI service

func (*AccountsAPIService) ClientCreateUserToken added in v1.2.2

func (a *AccountsAPIService) ClientCreateUserToken(ctx context.Context) ApiClientCreateUserTokenRequest

ClientCreateUserToken Method for ClientCreateUserToken

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

func (*AccountsAPIService) ClientCreateUserTokenExecute added in v1.2.2

func (a *AccountsAPIService) ClientCreateUserTokenExecute(r ApiClientCreateUserTokenRequest) (*Unmasked, *http.Response, error)

Execute executes the request

@return Unmasked

func (*AccountsAPIService) ClientDeleteUserToken added in v1.2.2

func (a *AccountsAPIService) ClientDeleteUserToken(ctx context.Context, id string) ApiClientDeleteUserTokenRequest

ClientDeleteUserToken Method for ClientDeleteUserToken

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

func (*AccountsAPIService) ClientDeleteUserTokenExecute added in v1.2.2

func (a *AccountsAPIService) ClientDeleteUserTokenExecute(r ApiClientDeleteUserTokenRequest) (*MessageResponse, *http.Response, error)

Execute executes the request

@return MessageResponse

func (*AccountsAPIService) ClientGetUserToken added in v1.2.2

func (a *AccountsAPIService) ClientGetUserToken(ctx context.Context, id string) ApiClientGetUserTokenRequest

ClientGetUserToken Method for ClientGetUserToken

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

func (*AccountsAPIService) ClientGetUserTokenExecute added in v1.2.2

Execute executes the request

@return UserPersonalToken

func (*AccountsAPIService) ClientListUserTokens added in v1.2.2

ClientListUserTokens Method for ClientListUserTokens

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

func (*AccountsAPIService) ClientListUserTokensExecute added in v1.2.2

func (a *AccountsAPIService) ClientListUserTokensExecute(r ApiClientListUserTokensRequest) ([]UserPersonalToken, *http.Response, error)

Execute executes the request

@return []UserPersonalToken

func (*AccountsAPIService) ClientUpdateUserTokenExpiry added in v1.2.2

func (a *AccountsAPIService) ClientUpdateUserTokenExpiry(ctx context.Context, id string) ApiClientUpdateUserTokenExpiryRequest

ClientUpdateUserTokenExpiry Method for ClientUpdateUserTokenExpiry

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

func (*AccountsAPIService) ClientUpdateUserTokenExpiryExecute added in v1.2.2

func (a *AccountsAPIService) ClientUpdateUserTokenExpiryExecute(r ApiClientUpdateUserTokenExpiryRequest) (*Unmasked, *http.Response, error)

Execute executes the request

@return Unmasked

type AnalyticClientTypeClientModel added in v1.0.0

type AnalyticClientTypeClientModel string

AnalyticClientTypeClientModel the model 'AnalyticClientTypeClientModel'

const (
	ANALYTICCLIENTTYPECLIENTMODEL_CLI AnalyticClientTypeClientModel = "CLI"
)

List of AnalyticClientTypeClientModel

func NewAnalyticClientTypeClientModelFromValue added in v1.0.0

func NewAnalyticClientTypeClientModelFromValue(v string) (*AnalyticClientTypeClientModel, error)

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

func (AnalyticClientTypeClientModel) IsValid added in v1.0.0

func (v AnalyticClientTypeClientModel) IsValid() bool

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

func (AnalyticClientTypeClientModel) Ptr added in v1.0.0

Ptr returns reference to AnalyticClientTypeClientModel value

func (*AnalyticClientTypeClientModel) UnmarshalJSON added in v1.0.0

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

type AnalyticsAPIService added in v1.0.0

type AnalyticsAPIService service

AnalyticsAPIService AnalyticsAPI service

func (*AnalyticsAPIService) SendAnalyticsEvent added in v1.0.0

SendAnalyticsEvent Send analytics event

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

func (*AnalyticsAPIService) SendAnalyticsEventExecute added in v1.0.0

func (a *AnalyticsAPIService) SendAnalyticsEventExecute(r ApiSendAnalyticsEventRequest) (*http.Response, error)

Execute executes the request

type ApiApproveAccessRequestRequest

type ApiApproveAccessRequestRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiApproveAccessRequestRequest) ApprovalResultClientModel

func (r ApiApproveAccessRequestRequest) ApprovalResultClientModel(approvalResultClientModel ApprovalResultClientModel) ApiApproveAccessRequestRequest

func (ApiApproveAccessRequestRequest) Execute

type ApiClientCreateUserTokenRequest added in v1.2.2

type ApiClientCreateUserTokenRequest struct {
	ApiService *AccountsAPIService
	// contains filtered or unexported fields
}

func (ApiClientCreateUserTokenRequest) CreateUserPersonalTokenRequestClientModel added in v1.2.2

func (r ApiClientCreateUserTokenRequest) CreateUserPersonalTokenRequestClientModel(createUserPersonalTokenRequestClientModel CreateUserPersonalTokenRequestClientModel) ApiClientCreateUserTokenRequest

func (ApiClientCreateUserTokenRequest) Execute added in v1.2.2

type ApiClientDeleteUserTokenRequest added in v1.2.2

type ApiClientDeleteUserTokenRequest struct {
	ApiService *AccountsAPIService
	// contains filtered or unexported fields
}

func (ApiClientDeleteUserTokenRequest) Execute added in v1.2.2

type ApiClientGetUserTokenRequest added in v1.2.2

type ApiClientGetUserTokenRequest struct {
	ApiService *AccountsAPIService
	// contains filtered or unexported fields
}

func (ApiClientGetUserTokenRequest) Execute added in v1.2.2

type ApiClientListUserTokensRequest added in v1.2.2

type ApiClientListUserTokensRequest struct {
	ApiService *AccountsAPIService
	// contains filtered or unexported fields
}

func (ApiClientListUserTokensRequest) Execute added in v1.2.2

type ApiClientUpdateUserTokenExpiryRequest added in v1.2.2

type ApiClientUpdateUserTokenExpiryRequest struct {
	ApiService *AccountsAPIService
	// contains filtered or unexported fields
}

func (ApiClientUpdateUserTokenExpiryRequest) Execute added in v1.2.2

func (ApiClientUpdateUserTokenExpiryRequest) UpdateExpiryRequestClientModel added in v1.2.2

func (r ApiClientUpdateUserTokenExpiryRequest) UpdateExpiryRequestClientModel(updateExpiryRequestClientModel UpdateExpiryRequestClientModel) ApiClientUpdateUserTokenExpiryRequest

type ApiCreateAccessRequestTemplateRequest

type ApiCreateAccessRequestTemplateRequest struct {
	ApiService *AccessRequestTemplatesAPIService
	// contains filtered or unexported fields
}

func (ApiCreateAccessRequestTemplateRequest) CreateAndUpdateAccessRequestTemplateClientModel

func (r ApiCreateAccessRequestTemplateRequest) CreateAndUpdateAccessRequestTemplateClientModel(createAndUpdateAccessRequestTemplateClientModel CreateAndUpdateAccessRequestTemplateClientModel) ApiCreateAccessRequestTemplateRequest

func (ApiCreateAccessRequestTemplateRequest) Execute

type ApiCreateUserAccessRequestRequest

type ApiCreateUserAccessRequestRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateUserAccessRequestRequest) CreateAccessRequestClientModel

func (r ApiCreateUserAccessRequestRequest) CreateAccessRequestClientModel(createAccessRequestClientModel CreateAccessRequestClientModel) ApiCreateUserAccessRequestRequest

func (ApiCreateUserAccessRequestRequest) Execute

type ApiDeleteAccessRequestTemplateRequest

type ApiDeleteAccessRequestTemplateRequest struct {
	ApiService *AccessRequestTemplatesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteAccessRequestTemplateRequest) Execute

type ApiDeleteAssistantConversationRequest added in v1.2.2

type ApiDeleteAssistantConversationRequest struct {
	ApiService *AccessAssistantAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteAssistantConversationRequest) Execute added in v1.2.2

type ApiDryRunCreateUserAccessRequestRequest added in v1.0.3

type ApiDryRunCreateUserAccessRequestRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiDryRunCreateUserAccessRequestRequest) CreateAccessRequestClientModel added in v1.0.3

func (r ApiDryRunCreateUserAccessRequestRequest) CreateAccessRequestClientModel(createAccessRequestClientModel CreateAccessRequestClientModel) ApiDryRunCreateUserAccessRequestRequest

func (ApiDryRunCreateUserAccessRequestRequest) Execute added in v1.0.3

func (ApiDryRunCreateUserAccessRequestRequest) ResourceTypeOnlyMode added in v1.2.2

func (r ApiDryRunCreateUserAccessRequestRequest) ResourceTypeOnlyMode(resourceTypeOnlyMode bool) ApiDryRunCreateUserAccessRequestRequest

type ApiGetAccessGroupDetailsRequest

type ApiGetAccessGroupDetailsRequest struct {
	ApiService *AccessGroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGetAccessGroupDetailsRequest) Execute

type ApiGetAccessGroupUnitsRequest

type ApiGetAccessGroupUnitsRequest struct {
	ApiService *AccessGroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGetAccessGroupUnitsRequest) Execute

func (ApiGetAccessGroupUnitsRequest) IntegrationIds

func (r ApiGetAccessGroupUnitsRequest) IntegrationIds(integrationIds []string) ApiGetAccessGroupUnitsRequest

func (ApiGetAccessGroupUnitsRequest) Limit

func (ApiGetAccessGroupUnitsRequest) ResourceTypeIds

func (r ApiGetAccessGroupUnitsRequest) ResourceTypeIds(resourceTypeIds []string) ApiGetAccessGroupUnitsRequest

func (ApiGetAccessGroupUnitsRequest) Skip

type ApiGetAccessRequestRequest

type ApiGetAccessRequestRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiGetAccessRequestRequest) Execute

type ApiGetAccessRequestTemplateRequest

type ApiGetAccessRequestTemplateRequest struct {
	ApiService *AccessRequestTemplatesAPIService
	// contains filtered or unexported fields
}

func (ApiGetAccessRequestTemplateRequest) Execute

func (ApiGetAccessRequestTemplateRequest) FilterAvailable

type ApiGetAccessSessionAccessDetailsRequest

type ApiGetAccessSessionAccessDetailsRequest struct {
	ApiService *AccessSessionsAPIService
	// contains filtered or unexported fields
}

func (ApiGetAccessSessionAccessDetailsRequest) AponoSec added in v1.0.0

func (ApiGetAccessSessionAccessDetailsRequest) Execute

func (ApiGetAccessSessionAccessDetailsRequest) FormatType added in v1.2.2

type ApiGetAccessSessionRequest

type ApiGetAccessSessionRequest struct {
	ApiService *AccessSessionsAPIService
	// contains filtered or unexported fields
}

func (ApiGetAccessSessionRequest) Execute

type ApiGetAccessSessionRequestTemplateRequest added in v1.0.3

type ApiGetAccessSessionRequestTemplateRequest struct {
	ApiService *AccessSessionsAPIService
	// contains filtered or unexported fields
}

func (ApiGetAccessSessionRequestTemplateRequest) Execute added in v1.0.3

type ApiGetAssistantConversationHistoryRequest added in v1.2.2

type ApiGetAssistantConversationHistoryRequest struct {
	ApiService *AccessAssistantAPIService
	// contains filtered or unexported fields
}

func (ApiGetAssistantConversationHistoryRequest) Execute added in v1.2.2

func (ApiGetAssistantConversationHistoryRequest) Limit added in v1.2.2

func (ApiGetAssistantConversationHistoryRequest) Skip added in v1.2.2

type ApiGetAssistantConversationRequest added in v1.2.2

type ApiGetAssistantConversationRequest struct {
	ApiService *AccessAssistantAPIService
	// contains filtered or unexported fields
}

func (ApiGetAssistantConversationRequest) Execute added in v1.2.2

type ApiGetUserSessionRequest added in v1.0.0

type ApiGetUserSessionRequest struct {
	ApiService *UserSessionAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserSessionRequest) Execute added in v1.0.0

type ApiHandleMcpMethodRequest added in v1.3.0

type ApiHandleMcpMethodRequest struct {
	ApiService *MCPServerAPIService
	// contains filtered or unexported fields
}

func (ApiHandleMcpMethodRequest) Execute added in v1.3.0

func (ApiHandleMcpMethodRequest) McpRequest added in v1.3.0

func (ApiHandleMcpMethodRequest) UserAgent added in v1.3.0

type ApiIsMfaEnrolledRequest added in v1.2.2

type ApiIsMfaEnrolledRequest struct {
	ApiService *UserSessionAPIService
	// contains filtered or unexported fields
}

func (ApiIsMfaEnrolledRequest) Execute added in v1.2.2

type ApiListAccessBundlesRequest

type ApiListAccessBundlesRequest struct {
	ApiService *InventoryAPIService
	// contains filtered or unexported fields
}

func (ApiListAccessBundlesRequest) Execute

func (ApiListAccessBundlesRequest) GranteeId added in v1.2.2

func (ApiListAccessBundlesRequest) Limit

func (ApiListAccessBundlesRequest) Search

func (ApiListAccessBundlesRequest) Skip

type ApiListAccessRequestTemplatesRequest

type ApiListAccessRequestTemplatesRequest struct {
	ApiService *AccessRequestTemplatesAPIService
	// contains filtered or unexported fields
}

func (ApiListAccessRequestTemplatesRequest) Limit

func (ApiListAccessRequestTemplatesRequest) Search

func (ApiListAccessRequestTemplatesRequest) Skip

type ApiListAccessRequestsRequest

type ApiListAccessRequestsRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiListAccessRequestsRequest) FavoriteOnly added in v1.2.2

func (r ApiListAccessRequestsRequest) FavoriteOnly(favoriteOnly bool) ApiListAccessRequestsRequest

func (ApiListAccessRequestsRequest) GranteeIds added in v1.3.0

func (ApiListAccessRequestsRequest) IncludeAutogrant added in v1.1.0

func (r ApiListAccessRequestsRequest) IncludeAutogrant(includeAutogrant bool) ApiListAccessRequestsRequest

func (ApiListAccessRequestsRequest) Limit

func (ApiListAccessRequestsRequest) RequestIds added in v1.0.3

func (ApiListAccessRequestsRequest) RequestorIds added in v1.3.0

func (r ApiListAccessRequestsRequest) RequestorIds(requestorIds []string) ApiListAccessRequestsRequest

func (ApiListAccessRequestsRequest) Scope

func (ApiListAccessRequestsRequest) Skip

func (ApiListAccessRequestsRequest) Statuses

type ApiListAccessRequestsUnitsRequest added in v1.3.0

type ApiListAccessRequestsUnitsRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiListAccessRequestsUnitsRequest) Execute added in v1.3.0

func (ApiListAccessRequestsUnitsRequest) RequestId added in v1.3.0

type ApiListAccessSessionsGroupsRequest

type ApiListAccessSessionsGroupsRequest struct {
	ApiService *AccessSessionsAPIService
	// contains filtered or unexported fields
}

func (ApiListAccessSessionsGroupsRequest) IncludeDisconnected added in v1.0.3

func (r ApiListAccessSessionsGroupsRequest) IncludeDisconnected(includeDisconnected bool) ApiListAccessSessionsGroupsRequest

func (ApiListAccessSessionsGroupsRequest) IntegrationId added in v1.0.3

func (ApiListAccessSessionsGroupsRequest) IntegrationTypes added in v1.0.3

func (r ApiListAccessSessionsGroupsRequest) IntegrationTypes(integrationTypes []string) ApiListAccessSessionsGroupsRequest

func (ApiListAccessSessionsGroupsRequest) Limit

func (ApiListAccessSessionsGroupsRequest) Search

func (ApiListAccessSessionsGroupsRequest) SessionTypes added in v1.0.3

func (ApiListAccessSessionsGroupsRequest) SessionsPageSize

func (ApiListAccessSessionsGroupsRequest) Skip

func (ApiListAccessSessionsGroupsRequest) Status added in v1.0.3

type ApiListAccessSessionsRequest

type ApiListAccessSessionsRequest struct {
	ApiService *AccessSessionsAPIService
	// contains filtered or unexported fields
}

func (ApiListAccessSessionsRequest) BundleId added in v1.0.0

func (ApiListAccessSessionsRequest) CredentialsId

func (r ApiListAccessSessionsRequest) CredentialsId(credentialsId []string) ApiListAccessSessionsRequest

func (ApiListAccessSessionsRequest) IncludeDisconnected added in v1.0.3

func (r ApiListAccessSessionsRequest) IncludeDisconnected(includeDisconnected bool) ApiListAccessSessionsRequest

func (ApiListAccessSessionsRequest) IntegrationId

func (r ApiListAccessSessionsRequest) IntegrationId(integrationId []string) ApiListAccessSessionsRequest

func (ApiListAccessSessionsRequest) IntegrationTypes added in v1.0.3

func (r ApiListAccessSessionsRequest) IntegrationTypes(integrationTypes []string) ApiListAccessSessionsRequest

func (ApiListAccessSessionsRequest) Limit

func (ApiListAccessSessionsRequest) RequestId added in v1.0.0

func (ApiListAccessSessionsRequest) Search

func (ApiListAccessSessionsRequest) SessionTypes added in v1.0.3

func (r ApiListAccessSessionsRequest) SessionTypes(sessionTypes []string) ApiListAccessSessionsRequest

func (ApiListAccessSessionsRequest) Skip

func (ApiListAccessSessionsRequest) Status added in v1.0.3

type ApiListAccessUnitsRequest

type ApiListAccessUnitsRequest struct {
	ApiService *InventoryAPIService
	// contains filtered or unexported fields
}

func (ApiListAccessUnitsRequest) BundleIds

func (ApiListAccessUnitsRequest) GranteeId added in v1.2.2

func (ApiListAccessUnitsRequest) IntegrationIds

func (r ApiListAccessUnitsRequest) IntegrationIds(integrationIds []string) ApiListAccessUnitsRequest

func (ApiListAccessUnitsRequest) Limit

func (ApiListAccessUnitsRequest) PermissionIds

func (r ApiListAccessUnitsRequest) PermissionIds(permissionIds []string) ApiListAccessUnitsRequest

func (ApiListAccessUnitsRequest) ResourceIds

func (r ApiListAccessUnitsRequest) ResourceIds(resourceIds []string) ApiListAccessUnitsRequest

func (ApiListAccessUnitsRequest) ResourceTypeIds

func (r ApiListAccessUnitsRequest) ResourceTypeIds(resourceTypeIds []string) ApiListAccessUnitsRequest

func (ApiListAccessUnitsRequest) Search

func (ApiListAccessUnitsRequest) Skip

type ApiListAssistantConversationsRequest added in v1.2.2

type ApiListAssistantConversationsRequest struct {
	ApiService *AccessAssistantAPIService
	// contains filtered or unexported fields
}

func (ApiListAssistantConversationsRequest) Execute added in v1.2.2

func (ApiListAssistantConversationsRequest) Limit added in v1.2.2

func (ApiListAssistantConversationsRequest) Query added in v1.2.2

func (ApiListAssistantConversationsRequest) Skip added in v1.2.2

type ApiListFilterOptionsRequest added in v1.3.0

type ApiListFilterOptionsRequest struct {
	ApiService *FiltersAPIService
	// contains filtered or unexported fields
}

func (ApiListFilterOptionsRequest) Execute added in v1.3.0

func (ApiListFilterOptionsRequest) Key added in v1.3.0

func (ApiListFilterOptionsRequest) Limit added in v1.3.0

func (ApiListFilterOptionsRequest) Scope added in v1.3.0

func (ApiListFilterOptionsRequest) Search added in v1.3.0

func (ApiListFilterOptionsRequest) Skip added in v1.3.0

type ApiListGranteesRequest added in v1.2.2

type ApiListGranteesRequest struct {
	ApiService *InventoryAPIService
	// contains filtered or unexported fields
}

func (ApiListGranteesRequest) Execute added in v1.2.2

func (ApiListGranteesRequest) GranteeType added in v1.3.0

func (r ApiListGranteesRequest) GranteeType(granteeType string) ApiListGranteesRequest

func (ApiListGranteesRequest) Limit added in v1.2.2

func (ApiListGranteesRequest) Search added in v1.2.2

func (ApiListGranteesRequest) Skip added in v1.2.2

type ApiListIntegrationFilterOptionsRequest added in v1.0.3

type ApiListIntegrationFilterOptionsRequest struct {
	ApiService *FiltersAPIService
	// contains filtered or unexported fields
}

func (ApiListIntegrationFilterOptionsRequest) Execute added in v1.0.3

func (ApiListIntegrationFilterOptionsRequest) Limit added in v1.0.3

func (ApiListIntegrationFilterOptionsRequest) Scope added in v1.0.3

func (ApiListIntegrationFilterOptionsRequest) Skip added in v1.0.3

type ApiListIntegrationRequest

type ApiListIntegrationRequest struct {
	ApiService *InventoryAPIService
	// contains filtered or unexported fields
}

func (ApiListIntegrationRequest) GranteeId added in v1.2.2

func (ApiListIntegrationRequest) Limit

func (ApiListIntegrationRequest) Search

func (ApiListIntegrationRequest) SessionId added in v1.0.3

func (ApiListIntegrationRequest) Skip

type ApiListPermissionsRequest

type ApiListPermissionsRequest struct {
	ApiService *InventoryAPIService
	// contains filtered or unexported fields
}

func (ApiListPermissionsRequest) GranteeId added in v1.2.2

func (ApiListPermissionsRequest) IntegrationId

func (r ApiListPermissionsRequest) IntegrationId(integrationId string) ApiListPermissionsRequest

func (ApiListPermissionsRequest) Limit

func (ApiListPermissionsRequest) ResourceTypeId

func (r ApiListPermissionsRequest) ResourceTypeId(resourceTypeId string) ApiListPermissionsRequest

func (ApiListPermissionsRequest) Search

func (ApiListPermissionsRequest) SessionId added in v1.0.3

func (ApiListPermissionsRequest) Skip

type ApiListResourceTypesRequest

type ApiListResourceTypesRequest struct {
	ApiService *InventoryAPIService
	// contains filtered or unexported fields
}

func (ApiListResourceTypesRequest) GranteeId added in v1.2.2

func (ApiListResourceTypesRequest) IntegrationId

func (r ApiListResourceTypesRequest) IntegrationId(integrationId string) ApiListResourceTypesRequest

func (ApiListResourceTypesRequest) Limit

func (ApiListResourceTypesRequest) Search

func (ApiListResourceTypesRequest) SessionId added in v1.0.3

func (ApiListResourceTypesRequest) Skip

type ApiListResourcesRequest

type ApiListResourcesRequest struct {
	ApiService *InventoryAPIService
	// contains filtered or unexported fields
}

func (ApiListResourcesRequest) Execute

func (ApiListResourcesRequest) GranteeId added in v1.2.2

func (ApiListResourcesRequest) IntegrationId

func (r ApiListResourcesRequest) IntegrationId(integrationId string) ApiListResourcesRequest

func (ApiListResourcesRequest) Limit

func (ApiListResourcesRequest) ResourceTypeId

func (r ApiListResourcesRequest) ResourceTypeId(resourceTypeId []string) ApiListResourcesRequest

func (ApiListResourcesRequest) Search

func (ApiListResourcesRequest) SessionId added in v1.0.3

func (ApiListResourcesRequest) Skip

func (ApiListResourcesRequest) SourceId added in v1.0.0

type ApiPassMfaForAccessRequestsRequest added in v1.2.2

type ApiPassMfaForAccessRequestsRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiPassMfaForAccessRequestsRequest) Execute added in v1.2.2

type ApiRejectAccessRequestRequest

type ApiRejectAccessRequestRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiRejectAccessRequestRequest) ApprovalResultClientModel

func (r ApiRejectAccessRequestRequest) ApprovalResultClientModel(approvalResultClientModel ApprovalResultClientModel) ApiRejectAccessRequestRequest

func (ApiRejectAccessRequestRequest) Execute

type ApiRequestAgainAccessRequestRequest

type ApiRequestAgainAccessRequestRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiRequestAgainAccessRequestRequest) Execute

func (ApiRequestAgainAccessRequestRequest) RequestAgainClientModel

func (r ApiRequestAgainAccessRequestRequest) RequestAgainClientModel(requestAgainClientModel RequestAgainClientModel) ApiRequestAgainAccessRequestRequest

type ApiResetAccessGroupCredentialsRequest

type ApiResetAccessGroupCredentialsRequest struct {
	ApiService *AccessGroupsAPIService
	// contains filtered or unexported fields
}

func (ApiResetAccessGroupCredentialsRequest) Execute

type ApiResetAccessSessionCredentialsRequest

type ApiResetAccessSessionCredentialsRequest struct {
	ApiService *AccessSessionsAPIService
	// contains filtered or unexported fields
}

func (ApiResetAccessSessionCredentialsRequest) Execute

type ApiRevokeAccessRequestRequest

type ApiRevokeAccessRequestRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiRevokeAccessRequestRequest) Execute

type ApiSendAnalyticsEventRequest added in v1.0.0

type ApiSendAnalyticsEventRequest struct {
	ApiService *AnalyticsAPIService
	// contains filtered or unexported fields
}

func (ApiSendAnalyticsEventRequest) CreateAnalyticEventClientModel added in v1.0.0

func (r ApiSendAnalyticsEventRequest) CreateAnalyticEventClientModel(createAnalyticEventClientModel CreateAnalyticEventClientModel) ApiSendAnalyticsEventRequest

func (ApiSendAnalyticsEventRequest) Execute added in v1.0.0

type ApiSendMessageToAssistantRequest added in v1.2.2

type ApiSendMessageToAssistantRequest struct {
	ApiService *AccessAssistantAPIService
	// contains filtered or unexported fields
}

func (ApiSendMessageToAssistantRequest) AssistantMessageRequestModel added in v1.2.2

func (r ApiSendMessageToAssistantRequest) AssistantMessageRequestModel(assistantMessageRequestModel AssistantMessageRequestModel) ApiSendMessageToAssistantRequest

func (ApiSendMessageToAssistantRequest) Execute added in v1.2.2

type ApiSubmitAssistantMessageFeedbackRequest added in v1.2.2

type ApiSubmitAssistantMessageFeedbackRequest struct {
	ApiService *AccessAssistantAPIService
	// contains filtered or unexported fields
}

func (ApiSubmitAssistantMessageFeedbackRequest) AssistantMessageFeedbackModel added in v1.2.2

func (r ApiSubmitAssistantMessageFeedbackRequest) AssistantMessageFeedbackModel(assistantMessageFeedbackModel AssistantMessageFeedbackModel) ApiSubmitAssistantMessageFeedbackRequest

func (ApiSubmitAssistantMessageFeedbackRequest) Execute added in v1.2.2

type ApiSyncAvailableSessionsRequest added in v1.0.3

type ApiSyncAvailableSessionsRequest struct {
	ApiService *AccessSessionsAPIService
	// contains filtered or unexported fields
}

func (ApiSyncAvailableSessionsRequest) Execute added in v1.0.3

type ApiUpdateAccessRequestTemplateRequest

type ApiUpdateAccessRequestTemplateRequest struct {
	ApiService *AccessRequestTemplatesAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateAccessRequestTemplateRequest) CreateAndUpdateAccessRequestTemplateClientModel

func (r ApiUpdateAccessRequestTemplateRequest) CreateAndUpdateAccessRequestTemplateClientModel(createAndUpdateAccessRequestTemplateClientModel CreateAndUpdateAccessRequestTemplateClientModel) ApiUpdateAccessRequestTemplateRequest

func (ApiUpdateAccessRequestTemplateRequest) Execute

type ApiUpdateFavoriteStateRequest added in v1.2.2

type ApiUpdateFavoriteStateRequest struct {
	ApiService *AccessRequestsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateFavoriteStateRequest) Execute added in v1.2.2

func (ApiUpdateFavoriteStateRequest) UpdateRequestFavoriteStateModel added in v1.2.2

func (r ApiUpdateFavoriteStateRequest) UpdateRequestFavoriteStateModel(updateRequestFavoriteStateModel UpdateRequestFavoriteStateModel) ApiUpdateFavoriteStateRequest

type ApprovalResultClientModel

type ApprovalResultClientModel struct {
	Justification NullableString `json:"justification,omitempty"`
}

ApprovalResultClientModel struct for ApprovalResultClientModel

func NewApprovalResultClientModel

func NewApprovalResultClientModel() *ApprovalResultClientModel

NewApprovalResultClientModel instantiates a new ApprovalResultClientModel 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 NewApprovalResultClientModelWithDefaults

func NewApprovalResultClientModelWithDefaults() *ApprovalResultClientModel

NewApprovalResultClientModelWithDefaults instantiates a new ApprovalResultClientModel 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 (*ApprovalResultClientModel) GetJustification

func (o *ApprovalResultClientModel) GetJustification() string

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

func (*ApprovalResultClientModel) GetJustificationOk

func (o *ApprovalResultClientModel) GetJustificationOk() (*string, bool)

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

func (*ApprovalResultClientModel) HasJustification

func (o *ApprovalResultClientModel) HasJustification() bool

HasJustification returns a boolean if a field has been set.

func (ApprovalResultClientModel) MarshalJSON

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

func (*ApprovalResultClientModel) SetJustification

func (o *ApprovalResultClientModel) SetJustification(v string)

SetJustification gets a reference to the given NullableString and assigns it to the Justification field.

func (*ApprovalResultClientModel) SetJustificationNil

func (o *ApprovalResultClientModel) SetJustificationNil()

SetJustificationNil sets the value for Justification to be an explicit nil

func (ApprovalResultClientModel) ToMap

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

func (*ApprovalResultClientModel) UnsetJustification

func (o *ApprovalResultClientModel) UnsetJustification()

UnsetJustification ensures that no value is present for Justification, not even an explicit nil

type AssistantConversationClientModel added in v1.2.2

type AssistantConversationClientModel struct {
	Id    string `json:"id"`
	Title string `json:"title"`
	// ISO 8601 formatted date-time
	CreatedDate time.Time `json:"created_date"`
	// ISO 8601 formatted date-time
	LastMessageDate time.Time `json:"last_message_date"`
}

AssistantConversationClientModel struct for AssistantConversationClientModel

func NewAssistantConversationClientModel added in v1.2.2

func NewAssistantConversationClientModel(id string, title string, createdDate time.Time, lastMessageDate time.Time) *AssistantConversationClientModel

NewAssistantConversationClientModel instantiates a new AssistantConversationClientModel 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 NewAssistantConversationClientModelWithDefaults added in v1.2.2

func NewAssistantConversationClientModelWithDefaults() *AssistantConversationClientModel

NewAssistantConversationClientModelWithDefaults instantiates a new AssistantConversationClientModel 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 (*AssistantConversationClientModel) GetCreatedDate added in v1.3.0

func (o *AssistantConversationClientModel) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value

func (*AssistantConversationClientModel) GetCreatedDateOk added in v1.3.0

func (o *AssistantConversationClientModel) GetCreatedDateOk() (*time.Time, bool)

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

func (*AssistantConversationClientModel) GetId added in v1.2.2

GetId returns the Id field value

func (*AssistantConversationClientModel) GetIdOk added in v1.2.2

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

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

func (*AssistantConversationClientModel) GetLastMessageDate added in v1.2.2

func (o *AssistantConversationClientModel) GetLastMessageDate() time.Time

GetLastMessageDate returns the LastMessageDate field value

func (*AssistantConversationClientModel) GetLastMessageDateOk added in v1.2.2

func (o *AssistantConversationClientModel) GetLastMessageDateOk() (*time.Time, bool)

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

func (*AssistantConversationClientModel) GetTitle added in v1.3.0

GetTitle returns the Title field value

func (*AssistantConversationClientModel) GetTitleOk added in v1.3.0

func (o *AssistantConversationClientModel) GetTitleOk() (*string, bool)

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

func (AssistantConversationClientModel) MarshalJSON added in v1.2.2

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

func (*AssistantConversationClientModel) SetCreatedDate added in v1.3.0

func (o *AssistantConversationClientModel) SetCreatedDate(v time.Time)

SetCreatedDate sets field value

func (*AssistantConversationClientModel) SetId added in v1.2.2

SetId sets field value

func (*AssistantConversationClientModel) SetLastMessageDate added in v1.2.2

func (o *AssistantConversationClientModel) SetLastMessageDate(v time.Time)

SetLastMessageDate sets field value

func (*AssistantConversationClientModel) SetTitle added in v1.3.0

SetTitle sets field value

func (AssistantConversationClientModel) ToMap added in v1.2.2

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

func (*AssistantConversationClientModel) UnmarshalJSON added in v1.2.2

func (o *AssistantConversationClientModel) UnmarshalJSON(bytes []byte) (err error)

type AssistantConversationSuggestionClientModel added in v1.2.2

type AssistantConversationSuggestionClientModel struct {
	Id      string `json:"id"`
	Title   string `json:"title"`
	Type    string `json:"type"`
	Content string `json:"content"`
}

AssistantConversationSuggestionClientModel struct for AssistantConversationSuggestionClientModel

func NewAssistantConversationSuggestionClientModel added in v1.2.2

func NewAssistantConversationSuggestionClientModel(id string, title string, type_ string, content string) *AssistantConversationSuggestionClientModel

NewAssistantConversationSuggestionClientModel instantiates a new AssistantConversationSuggestionClientModel 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 NewAssistantConversationSuggestionClientModelWithDefaults added in v1.2.2

func NewAssistantConversationSuggestionClientModelWithDefaults() *AssistantConversationSuggestionClientModel

NewAssistantConversationSuggestionClientModelWithDefaults instantiates a new AssistantConversationSuggestionClientModel 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 (*AssistantConversationSuggestionClientModel) GetContent added in v1.2.2

GetContent returns the Content field value

func (*AssistantConversationSuggestionClientModel) GetContentOk added in v1.2.2

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

func (*AssistantConversationSuggestionClientModel) GetId added in v1.2.2

GetId returns the Id field value

func (*AssistantConversationSuggestionClientModel) GetIdOk added in v1.2.2

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

func (*AssistantConversationSuggestionClientModel) GetTitle added in v1.2.2

GetTitle returns the Title field value

func (*AssistantConversationSuggestionClientModel) GetTitleOk added in v1.2.2

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

func (*AssistantConversationSuggestionClientModel) GetType added in v1.2.2

GetType returns the Type field value

func (*AssistantConversationSuggestionClientModel) GetTypeOk added in v1.2.2

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

func (AssistantConversationSuggestionClientModel) MarshalJSON added in v1.2.2

func (*AssistantConversationSuggestionClientModel) SetContent added in v1.2.2

SetContent sets field value

func (*AssistantConversationSuggestionClientModel) SetId added in v1.2.2

SetId sets field value

func (*AssistantConversationSuggestionClientModel) SetTitle added in v1.2.2

SetTitle sets field value

func (*AssistantConversationSuggestionClientModel) SetType added in v1.2.2

SetType sets field value

func (AssistantConversationSuggestionClientModel) ToMap added in v1.2.2

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

func (*AssistantConversationSuggestionClientModel) UnmarshalJSON added in v1.2.2

func (o *AssistantConversationSuggestionClientModel) UnmarshalJSON(bytes []byte) (err error)

type AssistantLogEntryModel added in v1.2.2

type AssistantLogEntryModel struct {
	Message string `json:"message"`
	Type    string `json:"type"`
}

AssistantLogEntryModel struct for AssistantLogEntryModel

func NewAssistantLogEntryModel added in v1.2.2

func NewAssistantLogEntryModel(message string, type_ string) *AssistantLogEntryModel

NewAssistantLogEntryModel instantiates a new AssistantLogEntryModel 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 NewAssistantLogEntryModelWithDefaults added in v1.2.2

func NewAssistantLogEntryModelWithDefaults() *AssistantLogEntryModel

NewAssistantLogEntryModelWithDefaults instantiates a new AssistantLogEntryModel 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 (*AssistantLogEntryModel) GetMessage added in v1.2.2

func (o *AssistantLogEntryModel) GetMessage() string

GetMessage returns the Message field value

func (*AssistantLogEntryModel) GetMessageOk added in v1.2.2

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

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

func (*AssistantLogEntryModel) GetType added in v1.2.2

func (o *AssistantLogEntryModel) GetType() string

GetType returns the Type field value

func (*AssistantLogEntryModel) GetTypeOk added in v1.2.2

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

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

func (AssistantLogEntryModel) MarshalJSON added in v1.2.2

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

func (*AssistantLogEntryModel) SetMessage added in v1.2.2

func (o *AssistantLogEntryModel) SetMessage(v string)

SetMessage sets field value

func (*AssistantLogEntryModel) SetType added in v1.2.2

func (o *AssistantLogEntryModel) SetType(v string)

SetType sets field value

func (AssistantLogEntryModel) ToMap added in v1.2.2

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

func (*AssistantLogEntryModel) UnmarshalJSON added in v1.2.2

func (o *AssistantLogEntryModel) UnmarshalJSON(bytes []byte) (err error)

type AssistantMessageClientModel added in v1.2.2

type AssistantMessageClientModel struct {
	Id             string         `json:"id"`
	MessageOrdinal int32          `json:"message_ordinal"`
	Role           string         `json:"role"`
	Feedback       NullableString `json:"feedback,omitempty"`
	// ISO 8601 formatted date-time
	CreatedDate time.Time                         `json:"created_date"`
	Data        []AssistantMessageDataClientModel `json:"data"`
}

AssistantMessageClientModel struct for AssistantMessageClientModel

func NewAssistantMessageClientModel added in v1.2.2

func NewAssistantMessageClientModel(id string, messageOrdinal int32, role string, createdDate time.Time, data []AssistantMessageDataClientModel) *AssistantMessageClientModel

NewAssistantMessageClientModel instantiates a new AssistantMessageClientModel 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 NewAssistantMessageClientModelWithDefaults added in v1.2.2

func NewAssistantMessageClientModelWithDefaults() *AssistantMessageClientModel

NewAssistantMessageClientModelWithDefaults instantiates a new AssistantMessageClientModel 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 (*AssistantMessageClientModel) GetCreatedDate added in v1.2.2

func (o *AssistantMessageClientModel) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value

func (*AssistantMessageClientModel) GetCreatedDateOk added in v1.2.2

func (o *AssistantMessageClientModel) GetCreatedDateOk() (*time.Time, bool)

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

func (*AssistantMessageClientModel) GetData added in v1.2.2

GetData returns the Data field value

func (*AssistantMessageClientModel) GetDataOk added in v1.2.2

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

func (*AssistantMessageClientModel) GetFeedback added in v1.2.2

func (o *AssistantMessageClientModel) GetFeedback() string

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

func (*AssistantMessageClientModel) GetFeedbackOk added in v1.2.2

func (o *AssistantMessageClientModel) GetFeedbackOk() (*string, bool)

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

func (*AssistantMessageClientModel) GetId added in v1.2.2

GetId returns the Id field value

func (*AssistantMessageClientModel) GetIdOk added in v1.2.2

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

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

func (*AssistantMessageClientModel) GetMessageOrdinal added in v1.3.0

func (o *AssistantMessageClientModel) GetMessageOrdinal() int32

GetMessageOrdinal returns the MessageOrdinal field value

func (*AssistantMessageClientModel) GetMessageOrdinalOk added in v1.3.0

func (o *AssistantMessageClientModel) GetMessageOrdinalOk() (*int32, bool)

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

func (*AssistantMessageClientModel) GetRole added in v1.2.2

func (o *AssistantMessageClientModel) GetRole() string

GetRole returns the Role field value

func (*AssistantMessageClientModel) GetRoleOk added in v1.2.2

func (o *AssistantMessageClientModel) GetRoleOk() (*string, bool)

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

func (*AssistantMessageClientModel) HasFeedback added in v1.2.2

func (o *AssistantMessageClientModel) HasFeedback() bool

HasFeedback returns a boolean if a field has been set.

func (AssistantMessageClientModel) MarshalJSON added in v1.2.2

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

func (*AssistantMessageClientModel) SetCreatedDate added in v1.2.2

func (o *AssistantMessageClientModel) SetCreatedDate(v time.Time)

SetCreatedDate sets field value

func (*AssistantMessageClientModel) SetData added in v1.2.2

SetData sets field value

func (*AssistantMessageClientModel) SetFeedback added in v1.2.2

func (o *AssistantMessageClientModel) SetFeedback(v string)

SetFeedback gets a reference to the given NullableString and assigns it to the Feedback field.

func (*AssistantMessageClientModel) SetFeedbackNil added in v1.2.2

func (o *AssistantMessageClientModel) SetFeedbackNil()

SetFeedbackNil sets the value for Feedback to be an explicit nil

func (*AssistantMessageClientModel) SetId added in v1.2.2

func (o *AssistantMessageClientModel) SetId(v string)

SetId sets field value

func (*AssistantMessageClientModel) SetMessageOrdinal added in v1.3.0

func (o *AssistantMessageClientModel) SetMessageOrdinal(v int32)

SetMessageOrdinal sets field value

func (*AssistantMessageClientModel) SetRole added in v1.2.2

func (o *AssistantMessageClientModel) SetRole(v string)

SetRole sets field value

func (AssistantMessageClientModel) ToMap added in v1.2.2

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

func (*AssistantMessageClientModel) UnmarshalJSON added in v1.2.2

func (o *AssistantMessageClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*AssistantMessageClientModel) UnsetFeedback added in v1.2.2

func (o *AssistantMessageClientModel) UnsetFeedback()

UnsetFeedback ensures that no value is present for Feedback, not even an explicit nil

type AssistantMessageDataClientModel added in v1.2.2

type AssistantMessageDataClientModel struct {
	Markdown         NullableAssistantMessageDataClientModelMarkdown         `json:"markdown,omitempty"`
	Image            NullableAssistantMessageDataClientModelImage            `json:"image,omitempty"`
	ClientSearchCta  NullableAssistantMessageDataClientModelClientSearchCta  `json:"client_search_cta,omitempty"`
	ClientRequestCta NullableAssistantMessageDataClientModelClientRequestCta `json:"client_request_cta,omitempty"`
}

AssistantMessageDataClientModel struct for AssistantMessageDataClientModel

func NewAssistantMessageDataClientModel added in v1.2.2

func NewAssistantMessageDataClientModel() *AssistantMessageDataClientModel

NewAssistantMessageDataClientModel instantiates a new AssistantMessageDataClientModel 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 NewAssistantMessageDataClientModelWithDefaults added in v1.2.2

func NewAssistantMessageDataClientModelWithDefaults() *AssistantMessageDataClientModel

NewAssistantMessageDataClientModelWithDefaults instantiates a new AssistantMessageDataClientModel 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 (*AssistantMessageDataClientModel) GetClientRequestCta added in v1.2.2

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

func (*AssistantMessageDataClientModel) GetClientRequestCtaOk added in v1.2.2

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

func (*AssistantMessageDataClientModel) GetClientSearchCta added in v1.2.2

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

func (*AssistantMessageDataClientModel) GetClientSearchCtaOk added in v1.2.2

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

func (*AssistantMessageDataClientModel) GetImage added in v1.2.2

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

func (*AssistantMessageDataClientModel) GetImageOk added in v1.2.2

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

func (*AssistantMessageDataClientModel) GetMarkdown added in v1.2.2

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

func (*AssistantMessageDataClientModel) GetMarkdownOk added in v1.2.2

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

func (*AssistantMessageDataClientModel) HasClientRequestCta added in v1.2.2

func (o *AssistantMessageDataClientModel) HasClientRequestCta() bool

HasClientRequestCta returns a boolean if a field has been set.

func (*AssistantMessageDataClientModel) HasClientSearchCta added in v1.2.2

func (o *AssistantMessageDataClientModel) HasClientSearchCta() bool

HasClientSearchCta returns a boolean if a field has been set.

func (*AssistantMessageDataClientModel) HasImage added in v1.2.2

func (o *AssistantMessageDataClientModel) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*AssistantMessageDataClientModel) HasMarkdown added in v1.2.2

func (o *AssistantMessageDataClientModel) HasMarkdown() bool

HasMarkdown returns a boolean if a field has been set.

func (AssistantMessageDataClientModel) MarshalJSON added in v1.2.2

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

func (*AssistantMessageDataClientModel) SetClientRequestCta added in v1.2.2

SetClientRequestCta gets a reference to the given NullableAssistantMessageDataClientModelClientRequestCta and assigns it to the ClientRequestCta field.

func (*AssistantMessageDataClientModel) SetClientRequestCtaNil added in v1.2.2

func (o *AssistantMessageDataClientModel) SetClientRequestCtaNil()

SetClientRequestCtaNil sets the value for ClientRequestCta to be an explicit nil

func (*AssistantMessageDataClientModel) SetClientSearchCta added in v1.2.2

SetClientSearchCta gets a reference to the given NullableAssistantMessageDataClientModelClientSearchCta and assigns it to the ClientSearchCta field.

func (*AssistantMessageDataClientModel) SetClientSearchCtaNil added in v1.2.2

func (o *AssistantMessageDataClientModel) SetClientSearchCtaNil()

SetClientSearchCtaNil sets the value for ClientSearchCta to be an explicit nil

func (*AssistantMessageDataClientModel) SetImage added in v1.2.2

SetImage gets a reference to the given NullableAssistantMessageDataClientModelImage and assigns it to the Image field.

func (*AssistantMessageDataClientModel) SetImageNil added in v1.2.2

func (o *AssistantMessageDataClientModel) SetImageNil()

SetImageNil sets the value for Image to be an explicit nil

func (*AssistantMessageDataClientModel) SetMarkdown added in v1.2.2

SetMarkdown gets a reference to the given NullableAssistantMessageDataClientModelMarkdown and assigns it to the Markdown field.

func (*AssistantMessageDataClientModel) SetMarkdownNil added in v1.2.2

func (o *AssistantMessageDataClientModel) SetMarkdownNil()

SetMarkdownNil sets the value for Markdown to be an explicit nil

func (AssistantMessageDataClientModel) ToMap added in v1.2.2

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

func (*AssistantMessageDataClientModel) UnsetClientRequestCta added in v1.2.2

func (o *AssistantMessageDataClientModel) UnsetClientRequestCta()

UnsetClientRequestCta ensures that no value is present for ClientRequestCta, not even an explicit nil

func (*AssistantMessageDataClientModel) UnsetClientSearchCta added in v1.2.2

func (o *AssistantMessageDataClientModel) UnsetClientSearchCta()

UnsetClientSearchCta ensures that no value is present for ClientSearchCta, not even an explicit nil

func (*AssistantMessageDataClientModel) UnsetImage added in v1.2.2

func (o *AssistantMessageDataClientModel) UnsetImage()

UnsetImage ensures that no value is present for Image, not even an explicit nil

func (*AssistantMessageDataClientModel) UnsetMarkdown added in v1.2.2

func (o *AssistantMessageDataClientModel) UnsetMarkdown()

UnsetMarkdown ensures that no value is present for Markdown, not even an explicit nil

type AssistantMessageDataClientModelClientRequestCta added in v1.2.2

type AssistantMessageDataClientModelClientRequestCta struct {
	ResourcesRequest NullableMessageDataRequestCTAClientModelResourcesRequest `json:"resources_request,omitempty"`
	BundlesRequest   NullableMessageDataRequestCTAClientModelBundlesRequest   `json:"bundles_request,omitempty"`
	RequestAgain     NullableMessageDataRequestCTAClientModelRequestAgain     `json:"request_again,omitempty"`
}

AssistantMessageDataClientModelClientRequestCta struct for AssistantMessageDataClientModelClientRequestCta

func NewAssistantMessageDataClientModelClientRequestCta added in v1.2.2

func NewAssistantMessageDataClientModelClientRequestCta() *AssistantMessageDataClientModelClientRequestCta

NewAssistantMessageDataClientModelClientRequestCta instantiates a new AssistantMessageDataClientModelClientRequestCta 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 NewAssistantMessageDataClientModelClientRequestCtaWithDefaults added in v1.2.2

func NewAssistantMessageDataClientModelClientRequestCtaWithDefaults() *AssistantMessageDataClientModelClientRequestCta

NewAssistantMessageDataClientModelClientRequestCtaWithDefaults instantiates a new AssistantMessageDataClientModelClientRequestCta 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 (*AssistantMessageDataClientModelClientRequestCta) GetBundlesRequest added in v1.2.2

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

func (*AssistantMessageDataClientModelClientRequestCta) GetBundlesRequestOk added in v1.2.2

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

func (*AssistantMessageDataClientModelClientRequestCta) GetRequestAgain added in v1.2.2

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

func (*AssistantMessageDataClientModelClientRequestCta) GetRequestAgainOk added in v1.2.2

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

func (*AssistantMessageDataClientModelClientRequestCta) GetResourcesRequest added in v1.2.2

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

func (*AssistantMessageDataClientModelClientRequestCta) GetResourcesRequestOk added in v1.2.2

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

func (*AssistantMessageDataClientModelClientRequestCta) HasBundlesRequest added in v1.2.2

HasBundlesRequest returns a boolean if a field has been set.

func (*AssistantMessageDataClientModelClientRequestCta) HasRequestAgain added in v1.2.2

HasRequestAgain returns a boolean if a field has been set.

func (*AssistantMessageDataClientModelClientRequestCta) HasResourcesRequest added in v1.2.2

func (o *AssistantMessageDataClientModelClientRequestCta) HasResourcesRequest() bool

HasResourcesRequest returns a boolean if a field has been set.

func (AssistantMessageDataClientModelClientRequestCta) MarshalJSON added in v1.2.2

func (*AssistantMessageDataClientModelClientRequestCta) SetBundlesRequest added in v1.2.2

SetBundlesRequest gets a reference to the given NullableMessageDataRequestCTAClientModelBundlesRequest and assigns it to the BundlesRequest field.

func (*AssistantMessageDataClientModelClientRequestCta) SetBundlesRequestNil added in v1.2.2

func (o *AssistantMessageDataClientModelClientRequestCta) SetBundlesRequestNil()

SetBundlesRequestNil sets the value for BundlesRequest to be an explicit nil

func (*AssistantMessageDataClientModelClientRequestCta) SetRequestAgain added in v1.2.2

SetRequestAgain gets a reference to the given NullableMessageDataRequestCTAClientModelRequestAgain and assigns it to the RequestAgain field.

func (*AssistantMessageDataClientModelClientRequestCta) SetRequestAgainNil added in v1.2.2

func (o *AssistantMessageDataClientModelClientRequestCta) SetRequestAgainNil()

SetRequestAgainNil sets the value for RequestAgain to be an explicit nil

func (*AssistantMessageDataClientModelClientRequestCta) SetResourcesRequest added in v1.2.2

SetResourcesRequest gets a reference to the given NullableMessageDataRequestCTAClientModelResourcesRequest and assigns it to the ResourcesRequest field.

func (*AssistantMessageDataClientModelClientRequestCta) SetResourcesRequestNil added in v1.2.2

func (o *AssistantMessageDataClientModelClientRequestCta) SetResourcesRequestNil()

SetResourcesRequestNil sets the value for ResourcesRequest to be an explicit nil

func (AssistantMessageDataClientModelClientRequestCta) ToMap added in v1.2.2

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

func (*AssistantMessageDataClientModelClientRequestCta) UnsetBundlesRequest added in v1.2.2

func (o *AssistantMessageDataClientModelClientRequestCta) UnsetBundlesRequest()

UnsetBundlesRequest ensures that no value is present for BundlesRequest, not even an explicit nil

func (*AssistantMessageDataClientModelClientRequestCta) UnsetRequestAgain added in v1.2.2

func (o *AssistantMessageDataClientModelClientRequestCta) UnsetRequestAgain()

UnsetRequestAgain ensures that no value is present for RequestAgain, not even an explicit nil

func (*AssistantMessageDataClientModelClientRequestCta) UnsetResourcesRequest added in v1.2.2

func (o *AssistantMessageDataClientModelClientRequestCta) UnsetResourcesRequest()

UnsetResourcesRequest ensures that no value is present for ResourcesRequest, not even an explicit nil

type AssistantMessageDataClientModelClientSearchCta added in v1.2.2

type AssistantMessageDataClientModelClientSearchCta struct {
	Resources    NullableMessageDataSearchCTAClientModelResources    `json:"resources,omitempty"`
	Bundles      NullableMessageDataSearchCTAClientModelBundles      `json:"bundles,omitempty"`
	PastRequests NullableMessageDataSearchCTAClientModelPastRequests `json:"past_requests,omitempty"`
}

AssistantMessageDataClientModelClientSearchCta struct for AssistantMessageDataClientModelClientSearchCta

func NewAssistantMessageDataClientModelClientSearchCta added in v1.2.2

func NewAssistantMessageDataClientModelClientSearchCta() *AssistantMessageDataClientModelClientSearchCta

NewAssistantMessageDataClientModelClientSearchCta instantiates a new AssistantMessageDataClientModelClientSearchCta 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 NewAssistantMessageDataClientModelClientSearchCtaWithDefaults added in v1.2.2

func NewAssistantMessageDataClientModelClientSearchCtaWithDefaults() *AssistantMessageDataClientModelClientSearchCta

NewAssistantMessageDataClientModelClientSearchCtaWithDefaults instantiates a new AssistantMessageDataClientModelClientSearchCta 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 (*AssistantMessageDataClientModelClientSearchCta) GetBundles added in v1.2.2

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

func (*AssistantMessageDataClientModelClientSearchCta) GetBundlesOk added in v1.2.2

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

func (*AssistantMessageDataClientModelClientSearchCta) GetPastRequests added in v1.2.2

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

func (*AssistantMessageDataClientModelClientSearchCta) GetPastRequestsOk added in v1.2.2

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

func (*AssistantMessageDataClientModelClientSearchCta) GetResources added in v1.2.2

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

func (*AssistantMessageDataClientModelClientSearchCta) GetResourcesOk added in v1.2.2

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

func (*AssistantMessageDataClientModelClientSearchCta) HasBundles added in v1.2.2

HasBundles returns a boolean if a field has been set.

func (*AssistantMessageDataClientModelClientSearchCta) HasPastRequests added in v1.2.2

HasPastRequests returns a boolean if a field has been set.

func (*AssistantMessageDataClientModelClientSearchCta) HasResources added in v1.2.2

HasResources returns a boolean if a field has been set.

func (AssistantMessageDataClientModelClientSearchCta) MarshalJSON added in v1.2.2

func (*AssistantMessageDataClientModelClientSearchCta) SetBundles added in v1.2.2

SetBundles gets a reference to the given NullableMessageDataSearchCTAClientModelBundles and assigns it to the Bundles field.

func (*AssistantMessageDataClientModelClientSearchCta) SetBundlesNil added in v1.2.2

SetBundlesNil sets the value for Bundles to be an explicit nil

func (*AssistantMessageDataClientModelClientSearchCta) SetPastRequests added in v1.2.2

SetPastRequests gets a reference to the given NullableMessageDataSearchCTAClientModelPastRequests and assigns it to the PastRequests field.

func (*AssistantMessageDataClientModelClientSearchCta) SetPastRequestsNil added in v1.2.2

func (o *AssistantMessageDataClientModelClientSearchCta) SetPastRequestsNil()

SetPastRequestsNil sets the value for PastRequests to be an explicit nil

func (*AssistantMessageDataClientModelClientSearchCta) SetResources added in v1.2.2

SetResources gets a reference to the given NullableMessageDataSearchCTAClientModelResources and assigns it to the Resources field.

func (*AssistantMessageDataClientModelClientSearchCta) SetResourcesNil added in v1.2.2

SetResourcesNil sets the value for Resources to be an explicit nil

func (AssistantMessageDataClientModelClientSearchCta) ToMap added in v1.2.2

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

func (*AssistantMessageDataClientModelClientSearchCta) UnsetBundles added in v1.2.2

UnsetBundles ensures that no value is present for Bundles, not even an explicit nil

func (*AssistantMessageDataClientModelClientSearchCta) UnsetPastRequests added in v1.2.2

func (o *AssistantMessageDataClientModelClientSearchCta) UnsetPastRequests()

UnsetPastRequests ensures that no value is present for PastRequests, not even an explicit nil

func (*AssistantMessageDataClientModelClientSearchCta) UnsetResources added in v1.2.2

UnsetResources ensures that no value is present for Resources, not even an explicit nil

type AssistantMessageDataClientModelImage added in v1.2.2

type AssistantMessageDataClientModelImage struct {
	Link string `json:"link"`
}

AssistantMessageDataClientModelImage struct for AssistantMessageDataClientModelImage

func NewAssistantMessageDataClientModelImage added in v1.2.2

func NewAssistantMessageDataClientModelImage(link string) *AssistantMessageDataClientModelImage

NewAssistantMessageDataClientModelImage instantiates a new AssistantMessageDataClientModelImage 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 NewAssistantMessageDataClientModelImageWithDefaults added in v1.2.2

func NewAssistantMessageDataClientModelImageWithDefaults() *AssistantMessageDataClientModelImage

NewAssistantMessageDataClientModelImageWithDefaults instantiates a new AssistantMessageDataClientModelImage 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

GetLink returns the Link field value

func (*AssistantMessageDataClientModelImage) GetLinkOk added in v1.2.2

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

func (AssistantMessageDataClientModelImage) MarshalJSON added in v1.2.2

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

SetLink sets field value

func (AssistantMessageDataClientModelImage) ToMap added in v1.2.2

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

func (*AssistantMessageDataClientModelImage) UnmarshalJSON added in v1.2.2

func (o *AssistantMessageDataClientModelImage) UnmarshalJSON(bytes []byte) (err error)

type AssistantMessageDataClientModelMarkdown added in v1.2.2

type AssistantMessageDataClientModelMarkdown struct {
	Content string `json:"content"`
}

AssistantMessageDataClientModelMarkdown struct for AssistantMessageDataClientModelMarkdown

func NewAssistantMessageDataClientModelMarkdown added in v1.2.2

func NewAssistantMessageDataClientModelMarkdown(content string) *AssistantMessageDataClientModelMarkdown

NewAssistantMessageDataClientModelMarkdown instantiates a new AssistantMessageDataClientModelMarkdown 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 NewAssistantMessageDataClientModelMarkdownWithDefaults added in v1.2.2

func NewAssistantMessageDataClientModelMarkdownWithDefaults() *AssistantMessageDataClientModelMarkdown

NewAssistantMessageDataClientModelMarkdownWithDefaults instantiates a new AssistantMessageDataClientModelMarkdown 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 (*AssistantMessageDataClientModelMarkdown) GetContent added in v1.2.2

GetContent returns the Content field value

func (*AssistantMessageDataClientModelMarkdown) GetContentOk added in v1.2.2

func (o *AssistantMessageDataClientModelMarkdown) GetContentOk() (*string, bool)

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

func (AssistantMessageDataClientModelMarkdown) MarshalJSON added in v1.2.2

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

func (*AssistantMessageDataClientModelMarkdown) SetContent added in v1.2.2

SetContent sets field value

func (AssistantMessageDataClientModelMarkdown) ToMap added in v1.2.2

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

func (*AssistantMessageDataClientModelMarkdown) UnmarshalJSON added in v1.2.2

func (o *AssistantMessageDataClientModelMarkdown) UnmarshalJSON(bytes []byte) (err error)

type AssistantMessageFeedbackModel added in v1.2.2

type AssistantMessageFeedbackModel struct {
	Feedback string `json:"feedback"`
}

AssistantMessageFeedbackModel struct for AssistantMessageFeedbackModel

func NewAssistantMessageFeedbackModel added in v1.2.2

func NewAssistantMessageFeedbackModel(feedback string) *AssistantMessageFeedbackModel

NewAssistantMessageFeedbackModel instantiates a new AssistantMessageFeedbackModel 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 NewAssistantMessageFeedbackModelWithDefaults added in v1.2.2

func NewAssistantMessageFeedbackModelWithDefaults() *AssistantMessageFeedbackModel

NewAssistantMessageFeedbackModelWithDefaults instantiates a new AssistantMessageFeedbackModel 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 (*AssistantMessageFeedbackModel) GetFeedback added in v1.2.2

func (o *AssistantMessageFeedbackModel) GetFeedback() string

GetFeedback returns the Feedback field value

func (*AssistantMessageFeedbackModel) GetFeedbackOk added in v1.2.2

func (o *AssistantMessageFeedbackModel) GetFeedbackOk() (*string, bool)

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

func (AssistantMessageFeedbackModel) MarshalJSON added in v1.2.2

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

func (*AssistantMessageFeedbackModel) SetFeedback added in v1.2.2

func (o *AssistantMessageFeedbackModel) SetFeedback(v string)

SetFeedback sets field value

func (AssistantMessageFeedbackModel) ToMap added in v1.2.2

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

func (*AssistantMessageFeedbackModel) UnmarshalJSON added in v1.2.2

func (o *AssistantMessageFeedbackModel) UnmarshalJSON(bytes []byte) (err error)

type AssistantMessageRequest added in v1.2.2

type AssistantMessageRequest struct {
	Message        string         `json:"message"`
	SystemPromptId NullableString `json:"system_prompt_id,omitempty"`
	ConversationId NullableString `json:"conversation_id,omitempty"`
}

AssistantMessageRequest struct for AssistantMessageRequest

func NewAssistantMessageRequest added in v1.2.2

func NewAssistantMessageRequest(message string) *AssistantMessageRequest

NewAssistantMessageRequest instantiates a new AssistantMessageRequest 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 NewAssistantMessageRequestWithDefaults added in v1.2.2

func NewAssistantMessageRequestWithDefaults() *AssistantMessageRequest

NewAssistantMessageRequestWithDefaults instantiates a new AssistantMessageRequest 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 (*AssistantMessageRequest) GetConversationId added in v1.2.2

func (o *AssistantMessageRequest) GetConversationId() string

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

func (*AssistantMessageRequest) GetConversationIdOk added in v1.2.2

func (o *AssistantMessageRequest) GetConversationIdOk() (*string, bool)

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

func (*AssistantMessageRequest) GetMessage added in v1.2.2

func (o *AssistantMessageRequest) GetMessage() string

GetMessage returns the Message field value

func (*AssistantMessageRequest) GetMessageOk added in v1.2.2

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

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

func (*AssistantMessageRequest) GetSystemPromptId added in v1.2.2

func (o *AssistantMessageRequest) GetSystemPromptId() string

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

func (*AssistantMessageRequest) GetSystemPromptIdOk added in v1.2.2

func (o *AssistantMessageRequest) GetSystemPromptIdOk() (*string, bool)

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

func (*AssistantMessageRequest) HasConversationId added in v1.2.2

func (o *AssistantMessageRequest) HasConversationId() bool

HasConversationId returns a boolean if a field has been set.

func (*AssistantMessageRequest) HasSystemPromptId added in v1.2.2

func (o *AssistantMessageRequest) HasSystemPromptId() bool

HasSystemPromptId returns a boolean if a field has been set.

func (AssistantMessageRequest) MarshalJSON added in v1.2.2

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

func (*AssistantMessageRequest) SetConversationId added in v1.2.2

func (o *AssistantMessageRequest) SetConversationId(v string)

SetConversationId gets a reference to the given NullableString and assigns it to the ConversationId field.

func (*AssistantMessageRequest) SetConversationIdNil added in v1.2.2

func (o *AssistantMessageRequest) SetConversationIdNil()

SetConversationIdNil sets the value for ConversationId to be an explicit nil

func (*AssistantMessageRequest) SetMessage added in v1.2.2

func (o *AssistantMessageRequest) SetMessage(v string)

SetMessage sets field value

func (*AssistantMessageRequest) SetSystemPromptId added in v1.2.2

func (o *AssistantMessageRequest) SetSystemPromptId(v string)

SetSystemPromptId gets a reference to the given NullableString and assigns it to the SystemPromptId field.

func (*AssistantMessageRequest) SetSystemPromptIdNil added in v1.2.2

func (o *AssistantMessageRequest) SetSystemPromptIdNil()

SetSystemPromptIdNil sets the value for SystemPromptId to be an explicit nil

func (AssistantMessageRequest) ToMap added in v1.2.2

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

func (*AssistantMessageRequest) UnmarshalJSON added in v1.2.2

func (o *AssistantMessageRequest) UnmarshalJSON(bytes []byte) (err error)

func (*AssistantMessageRequest) UnsetConversationId added in v1.2.2

func (o *AssistantMessageRequest) UnsetConversationId()

UnsetConversationId ensures that no value is present for ConversationId, not even an explicit nil

func (*AssistantMessageRequest) UnsetSystemPromptId added in v1.2.2

func (o *AssistantMessageRequest) UnsetSystemPromptId()

UnsetSystemPromptId ensures that no value is present for SystemPromptId, not even an explicit nil

type AssistantMessageRequestModel added in v1.2.2

type AssistantMessageRequestModel struct {
	Type           string         `json:"type"`
	Content        string         `json:"content"`
	ConversationId string         `json:"conversation_id"`
	SuggestionId   NullableString `json:"suggestion_id,omitempty"`
}

AssistantMessageRequestModel struct for AssistantMessageRequestModel

func NewAssistantMessageRequestModel added in v1.2.2

func NewAssistantMessageRequestModel(type_ string, content string, conversationId string) *AssistantMessageRequestModel

NewAssistantMessageRequestModel instantiates a new AssistantMessageRequestModel 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 NewAssistantMessageRequestModelWithDefaults added in v1.2.2

func NewAssistantMessageRequestModelWithDefaults() *AssistantMessageRequestModel

NewAssistantMessageRequestModelWithDefaults instantiates a new AssistantMessageRequestModel 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 (*AssistantMessageRequestModel) GetContent added in v1.2.2

func (o *AssistantMessageRequestModel) GetContent() string

GetContent returns the Content field value

func (*AssistantMessageRequestModel) GetContentOk added in v1.2.2

func (o *AssistantMessageRequestModel) GetContentOk() (*string, bool)

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

func (*AssistantMessageRequestModel) GetConversationId added in v1.2.2

func (o *AssistantMessageRequestModel) GetConversationId() string

GetConversationId returns the ConversationId field value

func (*AssistantMessageRequestModel) GetConversationIdOk added in v1.2.2

func (o *AssistantMessageRequestModel) GetConversationIdOk() (*string, bool)

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

func (*AssistantMessageRequestModel) GetSuggestionId added in v1.2.2

func (o *AssistantMessageRequestModel) GetSuggestionId() string

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

func (*AssistantMessageRequestModel) GetSuggestionIdOk added in v1.2.2

func (o *AssistantMessageRequestModel) GetSuggestionIdOk() (*string, bool)

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

func (*AssistantMessageRequestModel) GetType added in v1.2.2

func (o *AssistantMessageRequestModel) GetType() string

GetType returns the Type field value

func (*AssistantMessageRequestModel) GetTypeOk added in v1.2.2

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

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

func (*AssistantMessageRequestModel) HasSuggestionId added in v1.2.2

func (o *AssistantMessageRequestModel) HasSuggestionId() bool

HasSuggestionId returns a boolean if a field has been set.

func (AssistantMessageRequestModel) MarshalJSON added in v1.2.2

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

func (*AssistantMessageRequestModel) SetContent added in v1.2.2

func (o *AssistantMessageRequestModel) SetContent(v string)

SetContent sets field value

func (*AssistantMessageRequestModel) SetConversationId added in v1.2.2

func (o *AssistantMessageRequestModel) SetConversationId(v string)

SetConversationId sets field value

func (*AssistantMessageRequestModel) SetSuggestionId added in v1.2.2

func (o *AssistantMessageRequestModel) SetSuggestionId(v string)

SetSuggestionId gets a reference to the given NullableString and assigns it to the SuggestionId field.

func (*AssistantMessageRequestModel) SetSuggestionIdNil added in v1.2.2

func (o *AssistantMessageRequestModel) SetSuggestionIdNil()

SetSuggestionIdNil sets the value for SuggestionId to be an explicit nil

func (*AssistantMessageRequestModel) SetType added in v1.2.2

func (o *AssistantMessageRequestModel) SetType(v string)

SetType sets field value

func (AssistantMessageRequestModel) ToMap added in v1.2.2

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

func (*AssistantMessageRequestModel) UnmarshalJSON added in v1.2.2

func (o *AssistantMessageRequestModel) UnmarshalJSON(bytes []byte) (err error)

func (*AssistantMessageRequestModel) UnsetSuggestionId added in v1.2.2

func (o *AssistantMessageRequestModel) UnsetSuggestionId()

UnsetSuggestionId ensures that no value is present for SuggestionId, not even an explicit nil

type AssistantMessageResponse added in v1.2.2

type AssistantMessageResponse struct {
	Message string                   `json:"message"`
	Logs    []AssistantLogEntryModel `json:"logs"`
}

AssistantMessageResponse struct for AssistantMessageResponse

func NewAssistantMessageResponse added in v1.2.2

func NewAssistantMessageResponse(message string, logs []AssistantLogEntryModel) *AssistantMessageResponse

NewAssistantMessageResponse instantiates a new AssistantMessageResponse 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 NewAssistantMessageResponseWithDefaults added in v1.2.2

func NewAssistantMessageResponseWithDefaults() *AssistantMessageResponse

NewAssistantMessageResponseWithDefaults instantiates a new AssistantMessageResponse 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 (*AssistantMessageResponse) GetLogs added in v1.2.2

GetLogs returns the Logs field value

func (*AssistantMessageResponse) GetLogsOk added in v1.2.2

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

func (*AssistantMessageResponse) GetMessage added in v1.2.2

func (o *AssistantMessageResponse) GetMessage() string

GetMessage returns the Message field value

func (*AssistantMessageResponse) GetMessageOk added in v1.2.2

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

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

func (AssistantMessageResponse) MarshalJSON added in v1.2.2

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

func (*AssistantMessageResponse) SetLogs added in v1.2.2

SetLogs sets field value

func (*AssistantMessageResponse) SetMessage added in v1.2.2

func (o *AssistantMessageResponse) SetMessage(v string)

SetMessage sets field value

func (AssistantMessageResponse) ToMap added in v1.2.2

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

func (*AssistantMessageResponse) UnmarshalJSON added in v1.2.2

func (o *AssistantMessageResponse) UnmarshalJSON(bytes []byte) (err error)

type AssistantMessageResponseClientModel added in v1.2.2

type AssistantMessageResponseClientModel struct {
	ConversationId string                                       `json:"conversation_id"`
	Message        AssistantMessageClientModel                  `json:"message"`
	Suggestions    []AssistantConversationSuggestionClientModel `json:"suggestions"`
}

AssistantMessageResponseClientModel struct for AssistantMessageResponseClientModel

func NewAssistantMessageResponseClientModel added in v1.2.2

func NewAssistantMessageResponseClientModel(conversationId string, message AssistantMessageClientModel, suggestions []AssistantConversationSuggestionClientModel) *AssistantMessageResponseClientModel

NewAssistantMessageResponseClientModel instantiates a new AssistantMessageResponseClientModel 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 NewAssistantMessageResponseClientModelWithDefaults added in v1.2.2

func NewAssistantMessageResponseClientModelWithDefaults() *AssistantMessageResponseClientModel

NewAssistantMessageResponseClientModelWithDefaults instantiates a new AssistantMessageResponseClientModel 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 (*AssistantMessageResponseClientModel) GetConversationId added in v1.2.2

func (o *AssistantMessageResponseClientModel) GetConversationId() string

GetConversationId returns the ConversationId field value

func (*AssistantMessageResponseClientModel) GetConversationIdOk added in v1.2.2

func (o *AssistantMessageResponseClientModel) GetConversationIdOk() (*string, bool)

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

func (*AssistantMessageResponseClientModel) GetMessage added in v1.2.2

GetMessage returns the Message field value

func (*AssistantMessageResponseClientModel) GetMessageOk added in v1.2.2

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

func (*AssistantMessageResponseClientModel) GetSuggestions added in v1.2.2

GetSuggestions returns the Suggestions field value

func (*AssistantMessageResponseClientModel) GetSuggestionsOk added in v1.2.2

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

func (AssistantMessageResponseClientModel) MarshalJSON added in v1.2.2

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

func (*AssistantMessageResponseClientModel) SetConversationId added in v1.2.2

func (o *AssistantMessageResponseClientModel) SetConversationId(v string)

SetConversationId sets field value

func (*AssistantMessageResponseClientModel) SetMessage added in v1.2.2

SetMessage sets field value

func (*AssistantMessageResponseClientModel) SetSuggestions added in v1.2.2

SetSuggestions sets field value

func (AssistantMessageResponseClientModel) ToMap added in v1.2.2

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

func (*AssistantMessageResponseClientModel) UnmarshalJSON added in v1.2.2

func (o *AssistantMessageResponseClientModel) UnmarshalJSON(bytes []byte) (err error)

type BasicAuth

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

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

type BundleClientModel

type BundleClientModel struct {
	Id   string `json:"id"`
	Name string `json:"name"`
}

BundleClientModel struct for BundleClientModel

func NewBundleClientModel

func NewBundleClientModel(id string, name string) *BundleClientModel

NewBundleClientModel instantiates a new BundleClientModel 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 NewBundleClientModelWithDefaults

func NewBundleClientModelWithDefaults() *BundleClientModel

NewBundleClientModelWithDefaults instantiates a new BundleClientModel 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 (*BundleClientModel) GetId

func (o *BundleClientModel) GetId() string

GetId returns the Id field value

func (*BundleClientModel) GetIdOk

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

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

func (*BundleClientModel) GetName

func (o *BundleClientModel) GetName() string

GetName returns the Name field value

func (*BundleClientModel) GetNameOk

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

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

func (BundleClientModel) MarshalJSON

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

func (*BundleClientModel) SetId

func (o *BundleClientModel) SetId(v string)

SetId sets field value

func (*BundleClientModel) SetName

func (o *BundleClientModel) SetName(v string)

SetName sets field value

func (BundleClientModel) ToMap

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

func (*BundleClientModel) UnmarshalJSON

func (o *BundleClientModel) UnmarshalJSON(bytes []byte) (err error)

type ChallengeApproverClientModel

type ChallengeApproverClientModel struct {
	Name     string                `json:"name"`
	Type     string                `json:"type"`
	Status   ClientChallengeStatus `json:"status"`
	Metadata map[string]string     `json:"metadata"`
}

ChallengeApproverClientModel struct for ChallengeApproverClientModel

func NewChallengeApproverClientModel

func NewChallengeApproverClientModel(name string, type_ string, status ClientChallengeStatus, metadata map[string]string) *ChallengeApproverClientModel

NewChallengeApproverClientModel instantiates a new ChallengeApproverClientModel 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 NewChallengeApproverClientModelWithDefaults

func NewChallengeApproverClientModelWithDefaults() *ChallengeApproverClientModel

NewChallengeApproverClientModelWithDefaults instantiates a new ChallengeApproverClientModel 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 (*ChallengeApproverClientModel) GetMetadata

func (o *ChallengeApproverClientModel) GetMetadata() map[string]string

GetMetadata returns the Metadata field value

func (*ChallengeApproverClientModel) GetMetadataOk

func (o *ChallengeApproverClientModel) GetMetadataOk() (*map[string]string, bool)

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

func (*ChallengeApproverClientModel) GetName

func (o *ChallengeApproverClientModel) GetName() string

GetName returns the Name field value

func (*ChallengeApproverClientModel) GetNameOk

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

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

func (*ChallengeApproverClientModel) GetStatus

GetStatus returns the Status field value

func (*ChallengeApproverClientModel) GetStatusOk

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

func (*ChallengeApproverClientModel) GetType

func (o *ChallengeApproverClientModel) GetType() string

GetType returns the Type field value

func (*ChallengeApproverClientModel) GetTypeOk

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

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

func (ChallengeApproverClientModel) MarshalJSON

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

func (*ChallengeApproverClientModel) SetMetadata

func (o *ChallengeApproverClientModel) SetMetadata(v map[string]string)

SetMetadata sets field value

func (*ChallengeApproverClientModel) SetName

func (o *ChallengeApproverClientModel) SetName(v string)

SetName sets field value

func (*ChallengeApproverClientModel) SetStatus

SetStatus sets field value

func (*ChallengeApproverClientModel) SetType

func (o *ChallengeApproverClientModel) SetType(v string)

SetType sets field value

func (ChallengeApproverClientModel) ToMap

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

func (*ChallengeApproverClientModel) UnmarshalJSON

func (o *ChallengeApproverClientModel) UnmarshalJSON(bytes []byte) (err error)

type ChallengeInfoClientModel

type ChallengeInfoClientModel struct {
	LogicalRelation ClientChallengeLogicalRelation `json:"logical_relation"`
	Approvers       []ChallengeApproverClientModel `json:"approvers"`
}

ChallengeInfoClientModel struct for ChallengeInfoClientModel

func NewChallengeInfoClientModel

func NewChallengeInfoClientModel(logicalRelation ClientChallengeLogicalRelation, approvers []ChallengeApproverClientModel) *ChallengeInfoClientModel

NewChallengeInfoClientModel instantiates a new ChallengeInfoClientModel 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 NewChallengeInfoClientModelWithDefaults

func NewChallengeInfoClientModelWithDefaults() *ChallengeInfoClientModel

NewChallengeInfoClientModelWithDefaults instantiates a new ChallengeInfoClientModel 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 (*ChallengeInfoClientModel) GetApprovers

GetApprovers returns the Approvers field value

func (*ChallengeInfoClientModel) GetApproversOk

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

func (*ChallengeInfoClientModel) GetLogicalRelation

GetLogicalRelation returns the LogicalRelation field value

func (*ChallengeInfoClientModel) GetLogicalRelationOk

func (o *ChallengeInfoClientModel) GetLogicalRelationOk() (*ClientChallengeLogicalRelation, bool)

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

func (ChallengeInfoClientModel) MarshalJSON

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

func (*ChallengeInfoClientModel) SetApprovers

SetApprovers sets field value

func (*ChallengeInfoClientModel) SetLogicalRelation

SetLogicalRelation sets field value

func (ChallengeInfoClientModel) ToMap

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

func (*ChallengeInfoClientModel) UnmarshalJSON

func (o *ChallengeInfoClientModel) UnmarshalJSON(bytes []byte) (err error)

type ClientChallengeLogicalRelation

type ClientChallengeLogicalRelation string

ClientChallengeLogicalRelation the model 'ClientChallengeLogicalRelation'

const (
	CLIENTCHALLENGELOGICALRELATION_ANY_OF ClientChallengeLogicalRelation = "AnyOf"
	CLIENTCHALLENGELOGICALRELATION_ALL_OF ClientChallengeLogicalRelation = "AllOf"
)

List of ClientChallengeLogicalRelation

func NewClientChallengeLogicalRelationFromValue

func NewClientChallengeLogicalRelationFromValue(v string) (*ClientChallengeLogicalRelation, error)

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

func (ClientChallengeLogicalRelation) IsValid

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

func (ClientChallengeLogicalRelation) Ptr

Ptr returns reference to ClientChallengeLogicalRelation value

func (*ClientChallengeLogicalRelation) UnmarshalJSON

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

type ClientChallengeStatus

type ClientChallengeStatus string

ClientChallengeStatus the model 'ClientChallengeStatus'

const (
	CLIENTCHALLENGESTATUS_APPROVED ClientChallengeStatus = "Approved"
	CLIENTCHALLENGESTATUS_REJECTED ClientChallengeStatus = "Rejected"
	CLIENTCHALLENGESTATUS_PENDING  ClientChallengeStatus = "Pending"
)

List of ClientChallengeStatus

func NewClientChallengeStatusFromValue

func NewClientChallengeStatusFromValue(v string) (*ClientChallengeStatus, error)

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

func (ClientChallengeStatus) IsValid

func (v ClientChallengeStatus) IsValid() bool

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

func (ClientChallengeStatus) Ptr

Ptr returns reference to ClientChallengeStatus value

func (*ClientChallengeStatus) UnmarshalJSON

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type CreateAccessRequestClientModel

type CreateAccessRequestClientModel struct {
	FilterIntegrationIds      []string          `json:"filter_integration_ids"`
	FilterBundleIds           []string          `json:"filter_bundle_ids"`
	FilterResourceTypeIds     []string          `json:"filter_resource_type_ids"`
	FilterResourceIds         []string          `json:"filter_resource_ids"`
	FilterResources           []ResourceFilter  `json:"filter_resources"`
	FilterPermissionIds       []string          `json:"filter_permission_ids"`
	FilterAccessUnitIds       []string          `json:"filter_access_unit_ids"`
	Justification             NullableString    `json:"justification,omitempty"`
	DurationInSec             NullableInt32     `json:"duration_in_sec,omitempty"`
	CustomFields              map[string]string `json:"custom_fields,omitempty"`
	RunPreApprovalValidations NullableBool      `json:"run_pre_approval_validations,omitempty"`
	GranteeId                 NullableString    `json:"grantee_id,omitempty"`
}

CreateAccessRequestClientModel struct for CreateAccessRequestClientModel

func NewCreateAccessRequestClientModel

func NewCreateAccessRequestClientModel(filterIntegrationIds []string, filterBundleIds []string, filterResourceTypeIds []string, filterResourceIds []string, filterResources []ResourceFilter, filterPermissionIds []string, filterAccessUnitIds []string) *CreateAccessRequestClientModel

NewCreateAccessRequestClientModel instantiates a new CreateAccessRequestClientModel 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 NewCreateAccessRequestClientModelWithDefaults

func NewCreateAccessRequestClientModelWithDefaults() *CreateAccessRequestClientModel

NewCreateAccessRequestClientModelWithDefaults instantiates a new CreateAccessRequestClientModel 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 (*CreateAccessRequestClientModel) GetCustomFields added in v1.2.2

func (o *CreateAccessRequestClientModel) GetCustomFields() map[string]string

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

func (*CreateAccessRequestClientModel) GetCustomFieldsOk added in v1.2.2

func (o *CreateAccessRequestClientModel) GetCustomFieldsOk() (*map[string]string, bool)

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

func (*CreateAccessRequestClientModel) GetDurationInSec added in v1.1.0

func (o *CreateAccessRequestClientModel) GetDurationInSec() int32

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

func (*CreateAccessRequestClientModel) GetDurationInSecOk added in v1.1.0

func (o *CreateAccessRequestClientModel) GetDurationInSecOk() (*int32, bool)

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

func (*CreateAccessRequestClientModel) GetFilterAccessUnitIds

func (o *CreateAccessRequestClientModel) GetFilterAccessUnitIds() []string

GetFilterAccessUnitIds returns the FilterAccessUnitIds field value

func (*CreateAccessRequestClientModel) GetFilterAccessUnitIdsOk

func (o *CreateAccessRequestClientModel) GetFilterAccessUnitIdsOk() ([]string, bool)

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

func (*CreateAccessRequestClientModel) GetFilterBundleIds

func (o *CreateAccessRequestClientModel) GetFilterBundleIds() []string

GetFilterBundleIds returns the FilterBundleIds field value

func (*CreateAccessRequestClientModel) GetFilterBundleIdsOk

func (o *CreateAccessRequestClientModel) GetFilterBundleIdsOk() ([]string, bool)

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

func (*CreateAccessRequestClientModel) GetFilterIntegrationIds

func (o *CreateAccessRequestClientModel) GetFilterIntegrationIds() []string

GetFilterIntegrationIds returns the FilterIntegrationIds field value

func (*CreateAccessRequestClientModel) GetFilterIntegrationIdsOk

func (o *CreateAccessRequestClientModel) GetFilterIntegrationIdsOk() ([]string, bool)

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

func (*CreateAccessRequestClientModel) GetFilterPermissionIds

func (o *CreateAccessRequestClientModel) GetFilterPermissionIds() []string

GetFilterPermissionIds returns the FilterPermissionIds field value

func (*CreateAccessRequestClientModel) GetFilterPermissionIdsOk

func (o *CreateAccessRequestClientModel) GetFilterPermissionIdsOk() ([]string, bool)

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

func (*CreateAccessRequestClientModel) GetFilterResourceIds

func (o *CreateAccessRequestClientModel) GetFilterResourceIds() []string

GetFilterResourceIds returns the FilterResourceIds field value

func (*CreateAccessRequestClientModel) GetFilterResourceIdsOk

func (o *CreateAccessRequestClientModel) GetFilterResourceIdsOk() ([]string, bool)

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

func (*CreateAccessRequestClientModel) GetFilterResourceTypeIds

func (o *CreateAccessRequestClientModel) GetFilterResourceTypeIds() []string

GetFilterResourceTypeIds returns the FilterResourceTypeIds field value

func (*CreateAccessRequestClientModel) GetFilterResourceTypeIdsOk

func (o *CreateAccessRequestClientModel) GetFilterResourceTypeIdsOk() ([]string, bool)

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

func (*CreateAccessRequestClientModel) GetFilterResources added in v1.0.0

func (o *CreateAccessRequestClientModel) GetFilterResources() []ResourceFilter

GetFilterResources returns the FilterResources field value

func (*CreateAccessRequestClientModel) GetFilterResourcesOk added in v1.0.0

func (o *CreateAccessRequestClientModel) GetFilterResourcesOk() ([]ResourceFilter, bool)

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

func (*CreateAccessRequestClientModel) GetGranteeId added in v1.3.0

func (o *CreateAccessRequestClientModel) GetGranteeId() string

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

func (*CreateAccessRequestClientModel) GetGranteeIdOk added in v1.3.0

func (o *CreateAccessRequestClientModel) GetGranteeIdOk() (*string, bool)

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

func (*CreateAccessRequestClientModel) GetJustification

func (o *CreateAccessRequestClientModel) GetJustification() string

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

func (*CreateAccessRequestClientModel) GetJustificationOk

func (o *CreateAccessRequestClientModel) GetJustificationOk() (*string, bool)

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

func (*CreateAccessRequestClientModel) GetRunPreApprovalValidations added in v1.2.2

func (o *CreateAccessRequestClientModel) GetRunPreApprovalValidations() bool

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

func (*CreateAccessRequestClientModel) GetRunPreApprovalValidationsOk added in v1.2.2

func (o *CreateAccessRequestClientModel) GetRunPreApprovalValidationsOk() (*bool, bool)

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

func (*CreateAccessRequestClientModel) HasCustomFields added in v1.2.2

func (o *CreateAccessRequestClientModel) HasCustomFields() bool

HasCustomFields returns a boolean if a field has been set.

func (*CreateAccessRequestClientModel) HasDurationInSec added in v1.1.0

func (o *CreateAccessRequestClientModel) HasDurationInSec() bool

HasDurationInSec returns a boolean if a field has been set.

func (*CreateAccessRequestClientModel) HasGranteeId added in v1.3.0

func (o *CreateAccessRequestClientModel) HasGranteeId() bool

HasGranteeId returns a boolean if a field has been set.

func (*CreateAccessRequestClientModel) HasJustification added in v1.0.3

func (o *CreateAccessRequestClientModel) HasJustification() bool

HasJustification returns a boolean if a field has been set.

func (*CreateAccessRequestClientModel) HasRunPreApprovalValidations added in v1.2.2

func (o *CreateAccessRequestClientModel) HasRunPreApprovalValidations() bool

HasRunPreApprovalValidations returns a boolean if a field has been set.

func (CreateAccessRequestClientModel) MarshalJSON

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

func (*CreateAccessRequestClientModel) SetCustomFields added in v1.2.2

func (o *CreateAccessRequestClientModel) SetCustomFields(v map[string]string)

SetCustomFields gets a reference to the given map[string]string and assigns it to the CustomFields field.

func (*CreateAccessRequestClientModel) SetDurationInSec added in v1.1.0

func (o *CreateAccessRequestClientModel) SetDurationInSec(v int32)

SetDurationInSec gets a reference to the given NullableInt32 and assigns it to the DurationInSec field.

func (*CreateAccessRequestClientModel) SetDurationInSecNil added in v1.1.0

func (o *CreateAccessRequestClientModel) SetDurationInSecNil()

SetDurationInSecNil sets the value for DurationInSec to be an explicit nil

func (*CreateAccessRequestClientModel) SetFilterAccessUnitIds

func (o *CreateAccessRequestClientModel) SetFilterAccessUnitIds(v []string)

SetFilterAccessUnitIds sets field value

func (*CreateAccessRequestClientModel) SetFilterBundleIds

func (o *CreateAccessRequestClientModel) SetFilterBundleIds(v []string)

SetFilterBundleIds sets field value

func (*CreateAccessRequestClientModel) SetFilterIntegrationIds

func (o *CreateAccessRequestClientModel) SetFilterIntegrationIds(v []string)

SetFilterIntegrationIds sets field value

func (*CreateAccessRequestClientModel) SetFilterPermissionIds

func (o *CreateAccessRequestClientModel) SetFilterPermissionIds(v []string)

SetFilterPermissionIds sets field value

func (*CreateAccessRequestClientModel) SetFilterResourceIds

func (o *CreateAccessRequestClientModel) SetFilterResourceIds(v []string)

SetFilterResourceIds sets field value

func (*CreateAccessRequestClientModel) SetFilterResourceTypeIds

func (o *CreateAccessRequestClientModel) SetFilterResourceTypeIds(v []string)

SetFilterResourceTypeIds sets field value

func (*CreateAccessRequestClientModel) SetFilterResources added in v1.0.0

func (o *CreateAccessRequestClientModel) SetFilterResources(v []ResourceFilter)

SetFilterResources sets field value

func (*CreateAccessRequestClientModel) SetGranteeId added in v1.3.0

func (o *CreateAccessRequestClientModel) SetGranteeId(v string)

SetGranteeId gets a reference to the given NullableString and assigns it to the GranteeId field.

func (*CreateAccessRequestClientModel) SetGranteeIdNil added in v1.3.0

func (o *CreateAccessRequestClientModel) SetGranteeIdNil()

SetGranteeIdNil sets the value for GranteeId to be an explicit nil

func (*CreateAccessRequestClientModel) SetJustification

func (o *CreateAccessRequestClientModel) SetJustification(v string)

SetJustification gets a reference to the given NullableString and assigns it to the Justification field.

func (*CreateAccessRequestClientModel) SetJustificationNil added in v1.0.3

func (o *CreateAccessRequestClientModel) SetJustificationNil()

SetJustificationNil sets the value for Justification to be an explicit nil

func (*CreateAccessRequestClientModel) SetRunPreApprovalValidations added in v1.2.2

func (o *CreateAccessRequestClientModel) SetRunPreApprovalValidations(v bool)

SetRunPreApprovalValidations gets a reference to the given NullableBool and assigns it to the RunPreApprovalValidations field.

func (*CreateAccessRequestClientModel) SetRunPreApprovalValidationsNil added in v1.2.2

func (o *CreateAccessRequestClientModel) SetRunPreApprovalValidationsNil()

SetRunPreApprovalValidationsNil sets the value for RunPreApprovalValidations to be an explicit nil

func (CreateAccessRequestClientModel) ToMap

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

func (*CreateAccessRequestClientModel) UnmarshalJSON

func (o *CreateAccessRequestClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*CreateAccessRequestClientModel) UnsetDurationInSec added in v1.1.0

func (o *CreateAccessRequestClientModel) UnsetDurationInSec()

UnsetDurationInSec ensures that no value is present for DurationInSec, not even an explicit nil

func (*CreateAccessRequestClientModel) UnsetGranteeId added in v1.3.0

func (o *CreateAccessRequestClientModel) UnsetGranteeId()

UnsetGranteeId ensures that no value is present for GranteeId, not even an explicit nil

func (*CreateAccessRequestClientModel) UnsetJustification added in v1.0.3

func (o *CreateAccessRequestClientModel) UnsetJustification()

UnsetJustification ensures that no value is present for Justification, not even an explicit nil

func (*CreateAccessRequestClientModel) UnsetRunPreApprovalValidations added in v1.2.2

func (o *CreateAccessRequestClientModel) UnsetRunPreApprovalValidations()

UnsetRunPreApprovalValidations ensures that no value is present for RunPreApprovalValidations, not even an explicit nil

type CreateAnalyticEventClientModel added in v1.0.0

type CreateAnalyticEventClientModel struct {
	EventName  string                        `json:"event_name"`
	ClientType AnalyticClientTypeClientModel `json:"client_type"`
	Properties map[string]interface{}        `json:"properties"`
}

CreateAnalyticEventClientModel struct for CreateAnalyticEventClientModel

func NewCreateAnalyticEventClientModel added in v1.0.0

func NewCreateAnalyticEventClientModel(eventName string, clientType AnalyticClientTypeClientModel, properties map[string]interface{}) *CreateAnalyticEventClientModel

NewCreateAnalyticEventClientModel instantiates a new CreateAnalyticEventClientModel 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 NewCreateAnalyticEventClientModelWithDefaults added in v1.0.0

func NewCreateAnalyticEventClientModelWithDefaults() *CreateAnalyticEventClientModel

NewCreateAnalyticEventClientModelWithDefaults instantiates a new CreateAnalyticEventClientModel 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 (*CreateAnalyticEventClientModel) GetClientType added in v1.0.0

GetClientType returns the ClientType field value

func (*CreateAnalyticEventClientModel) GetClientTypeOk added in v1.0.0

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

func (*CreateAnalyticEventClientModel) GetEventName added in v1.0.0

func (o *CreateAnalyticEventClientModel) GetEventName() string

GetEventName returns the EventName field value

func (*CreateAnalyticEventClientModel) GetEventNameOk added in v1.0.0

func (o *CreateAnalyticEventClientModel) GetEventNameOk() (*string, bool)

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

func (*CreateAnalyticEventClientModel) GetProperties added in v1.0.0

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

GetProperties returns the Properties field value

func (*CreateAnalyticEventClientModel) GetPropertiesOk added in v1.0.0

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

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

func (CreateAnalyticEventClientModel) MarshalJSON added in v1.0.0

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

func (*CreateAnalyticEventClientModel) SetClientType added in v1.0.0

SetClientType sets field value

func (*CreateAnalyticEventClientModel) SetEventName added in v1.0.0

func (o *CreateAnalyticEventClientModel) SetEventName(v string)

SetEventName sets field value

func (*CreateAnalyticEventClientModel) SetProperties added in v1.0.0

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

SetProperties sets field value

func (CreateAnalyticEventClientModel) ToMap added in v1.0.0

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

func (*CreateAnalyticEventClientModel) UnmarshalJSON added in v1.0.0

func (o *CreateAnalyticEventClientModel) UnmarshalJSON(bytes []byte) (err error)

type CreateAndUpdateAccessRequestTemplateClientModel

type CreateAndUpdateAccessRequestTemplateClientModel struct {
	Name                  string                               `json:"name"`
	Type                  AccessRequestTemplateTypeClientModel `json:"type"`
	FilterIntegrationIds  []string                             `json:"filter_integration_ids"`
	FilterResourceTypeIds []string                             `json:"filter_resource_type_ids"`
	FilterResourceIds     []string                             `json:"filter_resource_ids"`
	FilterPermissionIds   []string                             `json:"filter_permission_ids"`
}

CreateAndUpdateAccessRequestTemplateClientModel struct for CreateAndUpdateAccessRequestTemplateClientModel

func NewCreateAndUpdateAccessRequestTemplateClientModel

func NewCreateAndUpdateAccessRequestTemplateClientModel(name string, type_ AccessRequestTemplateTypeClientModel, filterIntegrationIds []string, filterResourceTypeIds []string, filterResourceIds []string, filterPermissionIds []string) *CreateAndUpdateAccessRequestTemplateClientModel

NewCreateAndUpdateAccessRequestTemplateClientModel instantiates a new CreateAndUpdateAccessRequestTemplateClientModel 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 NewCreateAndUpdateAccessRequestTemplateClientModelWithDefaults

func NewCreateAndUpdateAccessRequestTemplateClientModelWithDefaults() *CreateAndUpdateAccessRequestTemplateClientModel

NewCreateAndUpdateAccessRequestTemplateClientModelWithDefaults instantiates a new CreateAndUpdateAccessRequestTemplateClientModel 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 (*CreateAndUpdateAccessRequestTemplateClientModel) GetFilterIntegrationIds

func (o *CreateAndUpdateAccessRequestTemplateClientModel) GetFilterIntegrationIds() []string

GetFilterIntegrationIds returns the FilterIntegrationIds field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetFilterIntegrationIdsOk

func (o *CreateAndUpdateAccessRequestTemplateClientModel) GetFilterIntegrationIdsOk() ([]string, bool)

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

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetFilterPermissionIds

func (o *CreateAndUpdateAccessRequestTemplateClientModel) GetFilterPermissionIds() []string

GetFilterPermissionIds returns the FilterPermissionIds field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetFilterPermissionIdsOk

func (o *CreateAndUpdateAccessRequestTemplateClientModel) GetFilterPermissionIdsOk() ([]string, bool)

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

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetFilterResourceIds

func (o *CreateAndUpdateAccessRequestTemplateClientModel) GetFilterResourceIds() []string

GetFilterResourceIds returns the FilterResourceIds field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetFilterResourceIdsOk

func (o *CreateAndUpdateAccessRequestTemplateClientModel) GetFilterResourceIdsOk() ([]string, bool)

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

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetFilterResourceTypeIds

func (o *CreateAndUpdateAccessRequestTemplateClientModel) GetFilterResourceTypeIds() []string

GetFilterResourceTypeIds returns the FilterResourceTypeIds field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetFilterResourceTypeIdsOk

func (o *CreateAndUpdateAccessRequestTemplateClientModel) GetFilterResourceTypeIdsOk() ([]string, bool)

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

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetName

GetName returns the Name field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetNameOk

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

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetType

GetType returns the Type field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) GetTypeOk

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

func (CreateAndUpdateAccessRequestTemplateClientModel) MarshalJSON

func (*CreateAndUpdateAccessRequestTemplateClientModel) SetFilterIntegrationIds

func (o *CreateAndUpdateAccessRequestTemplateClientModel) SetFilterIntegrationIds(v []string)

SetFilterIntegrationIds sets field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) SetFilterPermissionIds

func (o *CreateAndUpdateAccessRequestTemplateClientModel) SetFilterPermissionIds(v []string)

SetFilterPermissionIds sets field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) SetFilterResourceIds

func (o *CreateAndUpdateAccessRequestTemplateClientModel) SetFilterResourceIds(v []string)

SetFilterResourceIds sets field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) SetFilterResourceTypeIds

func (o *CreateAndUpdateAccessRequestTemplateClientModel) SetFilterResourceTypeIds(v []string)

SetFilterResourceTypeIds sets field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) SetName

SetName sets field value

func (*CreateAndUpdateAccessRequestTemplateClientModel) SetType

SetType sets field value

func (CreateAndUpdateAccessRequestTemplateClientModel) ToMap

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

func (*CreateAndUpdateAccessRequestTemplateClientModel) UnmarshalJSON

func (o *CreateAndUpdateAccessRequestTemplateClientModel) UnmarshalJSON(bytes []byte) (err error)

type CreatePromptVersionRequest added in v1.2.2

type CreatePromptVersionRequest struct {
	Id          string `json:"id"`
	Description string `json:"description"`
	Prompt      string `json:"prompt"`
}

CreatePromptVersionRequest struct for CreatePromptVersionRequest

func NewCreatePromptVersionRequest added in v1.2.2

func NewCreatePromptVersionRequest(id string, description string, prompt string) *CreatePromptVersionRequest

NewCreatePromptVersionRequest instantiates a new CreatePromptVersionRequest 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 NewCreatePromptVersionRequestWithDefaults added in v1.2.2

func NewCreatePromptVersionRequestWithDefaults() *CreatePromptVersionRequest

NewCreatePromptVersionRequestWithDefaults instantiates a new CreatePromptVersionRequest 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 (*CreatePromptVersionRequest) GetDescription added in v1.2.2

func (o *CreatePromptVersionRequest) GetDescription() string

GetDescription returns the Description field value

func (*CreatePromptVersionRequest) GetDescriptionOk added in v1.2.2

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

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

func (*CreatePromptVersionRequest) GetId added in v1.2.2

GetId returns the Id field value

func (*CreatePromptVersionRequest) GetIdOk added in v1.2.2

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

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

func (*CreatePromptVersionRequest) GetPrompt added in v1.2.2

func (o *CreatePromptVersionRequest) GetPrompt() string

GetPrompt returns the Prompt field value

func (*CreatePromptVersionRequest) GetPromptOk added in v1.2.2

func (o *CreatePromptVersionRequest) GetPromptOk() (*string, bool)

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

func (CreatePromptVersionRequest) MarshalJSON added in v1.2.2

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

func (*CreatePromptVersionRequest) SetDescription added in v1.2.2

func (o *CreatePromptVersionRequest) SetDescription(v string)

SetDescription sets field value

func (*CreatePromptVersionRequest) SetId added in v1.2.2

func (o *CreatePromptVersionRequest) SetId(v string)

SetId sets field value

func (*CreatePromptVersionRequest) SetPrompt added in v1.2.2

func (o *CreatePromptVersionRequest) SetPrompt(v string)

SetPrompt sets field value

func (CreatePromptVersionRequest) ToMap added in v1.2.2

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

func (*CreatePromptVersionRequest) UnmarshalJSON added in v1.2.2

func (o *CreatePromptVersionRequest) UnmarshalJSON(bytes []byte) (err error)

type CreateUserPersonalTokenRequestClientModel added in v1.2.2

type CreateUserPersonalTokenRequestClientModel struct {
	Name       string          `json:"name"`
	ExpiryDate NullableFloat64 `json:"expiry_date,omitempty"`
}

CreateUserPersonalTokenRequestClientModel struct for CreateUserPersonalTokenRequestClientModel

func NewCreateUserPersonalTokenRequestClientModel added in v1.2.2

func NewCreateUserPersonalTokenRequestClientModel(name string) *CreateUserPersonalTokenRequestClientModel

NewCreateUserPersonalTokenRequestClientModel instantiates a new CreateUserPersonalTokenRequestClientModel 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 NewCreateUserPersonalTokenRequestClientModelWithDefaults added in v1.2.2

func NewCreateUserPersonalTokenRequestClientModelWithDefaults() *CreateUserPersonalTokenRequestClientModel

NewCreateUserPersonalTokenRequestClientModelWithDefaults instantiates a new CreateUserPersonalTokenRequestClientModel 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 (*CreateUserPersonalTokenRequestClientModel) GetExpiryDate added in v1.2.2

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

func (*CreateUserPersonalTokenRequestClientModel) GetExpiryDateOk added in v1.2.2

func (o *CreateUserPersonalTokenRequestClientModel) GetExpiryDateOk() (*float64, bool)

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

func (*CreateUserPersonalTokenRequestClientModel) GetName added in v1.2.2

GetName returns the Name field value

func (*CreateUserPersonalTokenRequestClientModel) GetNameOk added in v1.2.2

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

func (*CreateUserPersonalTokenRequestClientModel) HasExpiryDate added in v1.2.2

HasExpiryDate returns a boolean if a field has been set.

func (CreateUserPersonalTokenRequestClientModel) MarshalJSON added in v1.2.2

func (*CreateUserPersonalTokenRequestClientModel) SetExpiryDate added in v1.2.2

SetExpiryDate gets a reference to the given NullableFloat64 and assigns it to the ExpiryDate field.

func (*CreateUserPersonalTokenRequestClientModel) SetExpiryDateNil added in v1.2.2

func (o *CreateUserPersonalTokenRequestClientModel) SetExpiryDateNil()

SetExpiryDateNil sets the value for ExpiryDate to be an explicit nil

func (*CreateUserPersonalTokenRequestClientModel) SetName added in v1.2.2

SetName sets field value

func (CreateUserPersonalTokenRequestClientModel) ToMap added in v1.2.2

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

func (*CreateUserPersonalTokenRequestClientModel) UnmarshalJSON added in v1.2.2

func (o *CreateUserPersonalTokenRequestClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*CreateUserPersonalTokenRequestClientModel) UnsetExpiryDate added in v1.2.2

func (o *CreateUserPersonalTokenRequestClientModel) UnsetExpiryDate()

UnsetExpiryDate ensures that no value is present for ExpiryDate, not even an explicit nil

type CredentialsClientModel

type CredentialsClientModel struct {
	Id       string `json:"id"`
	Status   string `json:"status"`
	CanReset bool   `json:"can_reset"`
}

CredentialsClientModel struct for CredentialsClientModel

func NewCredentialsClientModel

func NewCredentialsClientModel(id string, status string, canReset bool) *CredentialsClientModel

NewCredentialsClientModel instantiates a new CredentialsClientModel 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 NewCredentialsClientModelWithDefaults

func NewCredentialsClientModelWithDefaults() *CredentialsClientModel

NewCredentialsClientModelWithDefaults instantiates a new CredentialsClientModel 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 (*CredentialsClientModel) GetCanReset

func (o *CredentialsClientModel) GetCanReset() bool

GetCanReset returns the CanReset field value

func (*CredentialsClientModel) GetCanResetOk

func (o *CredentialsClientModel) GetCanResetOk() (*bool, bool)

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

func (*CredentialsClientModel) GetId

func (o *CredentialsClientModel) GetId() string

GetId returns the Id field value

func (*CredentialsClientModel) GetIdOk

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

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

func (*CredentialsClientModel) GetStatus

func (o *CredentialsClientModel) GetStatus() string

GetStatus returns the Status field value

func (*CredentialsClientModel) GetStatusOk

func (o *CredentialsClientModel) GetStatusOk() (*string, bool)

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

func (CredentialsClientModel) MarshalJSON

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

func (*CredentialsClientModel) SetCanReset

func (o *CredentialsClientModel) SetCanReset(v bool)

SetCanReset sets field value

func (*CredentialsClientModel) SetId

func (o *CredentialsClientModel) SetId(v string)

SetId sets field value

func (*CredentialsClientModel) SetStatus

func (o *CredentialsClientModel) SetStatus(v string)

SetStatus sets field value

func (CredentialsClientModel) ToMap

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

func (*CredentialsClientModel) UnmarshalJSON

func (o *CredentialsClientModel) UnmarshalJSON(bytes []byte) (err error)

type DryRunAccessRequestError added in v1.0.3

type DryRunAccessRequestError struct {
	Code    string                 `json:"code"`
	Field   string                 `json:"field"`
	Message NullableString         `json:"message,omitempty"`
	Details map[string]interface{} `json:"details"`
}

DryRunAccessRequestError struct for DryRunAccessRequestError

func NewDryRunAccessRequestError added in v1.0.3

func NewDryRunAccessRequestError(code string, field string, details map[string]interface{}) *DryRunAccessRequestError

NewDryRunAccessRequestError instantiates a new DryRunAccessRequestError 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 NewDryRunAccessRequestErrorWithDefaults added in v1.0.3

func NewDryRunAccessRequestErrorWithDefaults() *DryRunAccessRequestError

NewDryRunAccessRequestErrorWithDefaults instantiates a new DryRunAccessRequestError 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 (*DryRunAccessRequestError) GetCode added in v1.0.3

func (o *DryRunAccessRequestError) GetCode() string

GetCode returns the Code field value

func (*DryRunAccessRequestError) GetCodeOk added in v1.0.3

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

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

func (*DryRunAccessRequestError) GetDetails added in v1.1.0

func (o *DryRunAccessRequestError) GetDetails() map[string]interface{}

GetDetails returns the Details field value

func (*DryRunAccessRequestError) GetDetailsOk added in v1.1.0

func (o *DryRunAccessRequestError) GetDetailsOk() (map[string]interface{}, bool)

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

func (*DryRunAccessRequestError) GetField added in v1.0.3

func (o *DryRunAccessRequestError) GetField() string

GetField returns the Field field value

func (*DryRunAccessRequestError) GetFieldOk added in v1.0.3

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

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

func (*DryRunAccessRequestError) GetMessage added in v1.0.3

func (o *DryRunAccessRequestError) GetMessage() string

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

func (*DryRunAccessRequestError) GetMessageOk added in v1.0.3

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

func (*DryRunAccessRequestError) HasMessage added in v1.0.3

func (o *DryRunAccessRequestError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (DryRunAccessRequestError) MarshalJSON added in v1.0.3

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

func (*DryRunAccessRequestError) SetCode added in v1.0.3

func (o *DryRunAccessRequestError) SetCode(v string)

SetCode sets field value

func (*DryRunAccessRequestError) SetDetails added in v1.1.0

func (o *DryRunAccessRequestError) SetDetails(v map[string]interface{})

SetDetails sets field value

func (*DryRunAccessRequestError) SetField added in v1.0.3

func (o *DryRunAccessRequestError) SetField(v string)

SetField sets field value

func (*DryRunAccessRequestError) SetMessage added in v1.0.3

func (o *DryRunAccessRequestError) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*DryRunAccessRequestError) SetMessageNil added in v1.0.3

func (o *DryRunAccessRequestError) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (DryRunAccessRequestError) ToMap added in v1.0.3

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

func (*DryRunAccessRequestError) UnmarshalJSON added in v1.0.3

func (o *DryRunAccessRequestError) UnmarshalJSON(bytes []byte) (err error)

func (*DryRunAccessRequestError) UnsetMessage added in v1.0.3

func (o *DryRunAccessRequestError) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

type DryRunClientResponse added in v1.0.3

type DryRunClientResponse struct {
	Status string                     `json:"status"`
	Errors []DryRunAccessRequestError `json:"errors"`
}

DryRunClientResponse struct for DryRunClientResponse

func NewDryRunClientResponse added in v1.0.3

func NewDryRunClientResponse(status string, errors []DryRunAccessRequestError) *DryRunClientResponse

NewDryRunClientResponse instantiates a new DryRunClientResponse 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 NewDryRunClientResponseWithDefaults added in v1.0.3

func NewDryRunClientResponseWithDefaults() *DryRunClientResponse

NewDryRunClientResponseWithDefaults instantiates a new DryRunClientResponse 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 (*DryRunClientResponse) GetErrors added in v1.0.3

GetErrors returns the Errors field value

func (*DryRunClientResponse) GetErrorsOk added in v1.0.3

func (o *DryRunClientResponse) GetErrorsOk() ([]DryRunAccessRequestError, bool)

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

func (*DryRunClientResponse) GetStatus added in v1.0.3

func (o *DryRunClientResponse) GetStatus() string

GetStatus returns the Status field value

func (*DryRunClientResponse) GetStatusOk added in v1.0.3

func (o *DryRunClientResponse) GetStatusOk() (*string, bool)

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

func (DryRunClientResponse) MarshalJSON added in v1.0.3

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

func (*DryRunClientResponse) SetErrors added in v1.0.3

SetErrors sets field value

func (*DryRunClientResponse) SetStatus added in v1.0.3

func (o *DryRunClientResponse) SetStatus(v string)

SetStatus sets field value

func (DryRunClientResponse) ToMap added in v1.0.3

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

func (*DryRunClientResponse) UnmarshalJSON added in v1.0.3

func (o *DryRunClientResponse) UnmarshalJSON(bytes []byte) (err error)

type FilterOptionClientModel added in v1.3.0

type FilterOptionClientModel struct {
	Id          string                              `json:"id"`
	Type        string                              `json:"type"`
	SourceId    string                              `json:"source_id"`
	DisplayName string                              `json:"display_name"`
	Icon        NullableFilterOptionClientModelIcon `json:"icon,omitempty"`
}

FilterOptionClientModel struct for FilterOptionClientModel

func NewFilterOptionClientModel added in v1.3.0

func NewFilterOptionClientModel(id string, type_ string, sourceId string, displayName string) *FilterOptionClientModel

NewFilterOptionClientModel instantiates a new FilterOptionClientModel 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 NewFilterOptionClientModelWithDefaults added in v1.3.0

func NewFilterOptionClientModelWithDefaults() *FilterOptionClientModel

NewFilterOptionClientModelWithDefaults instantiates a new FilterOptionClientModel 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 (*FilterOptionClientModel) GetDisplayName added in v1.3.0

func (o *FilterOptionClientModel) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*FilterOptionClientModel) GetDisplayNameOk added in v1.3.0

func (o *FilterOptionClientModel) GetDisplayNameOk() (*string, bool)

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

func (*FilterOptionClientModel) GetIcon added in v1.3.0

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

func (*FilterOptionClientModel) GetIconOk added in v1.3.0

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

func (*FilterOptionClientModel) GetId added in v1.3.0

func (o *FilterOptionClientModel) GetId() string

GetId returns the Id field value

func (*FilterOptionClientModel) GetIdOk added in v1.3.0

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

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

func (*FilterOptionClientModel) GetSourceId added in v1.3.0

func (o *FilterOptionClientModel) GetSourceId() string

GetSourceId returns the SourceId field value

func (*FilterOptionClientModel) GetSourceIdOk added in v1.3.0

func (o *FilterOptionClientModel) GetSourceIdOk() (*string, bool)

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

func (*FilterOptionClientModel) GetType added in v1.3.0

func (o *FilterOptionClientModel) GetType() string

GetType returns the Type field value

func (*FilterOptionClientModel) GetTypeOk added in v1.3.0

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

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

func (*FilterOptionClientModel) HasIcon added in v1.3.0

func (o *FilterOptionClientModel) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (FilterOptionClientModel) MarshalJSON added in v1.3.0

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

func (*FilterOptionClientModel) SetDisplayName added in v1.3.0

func (o *FilterOptionClientModel) SetDisplayName(v string)

SetDisplayName sets field value

func (*FilterOptionClientModel) SetIcon added in v1.3.0

SetIcon gets a reference to the given NullableFilterOptionClientModelIcon and assigns it to the Icon field.

func (*FilterOptionClientModel) SetIconNil added in v1.3.0

func (o *FilterOptionClientModel) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*FilterOptionClientModel) SetId added in v1.3.0

func (o *FilterOptionClientModel) SetId(v string)

SetId sets field value

func (*FilterOptionClientModel) SetSourceId added in v1.3.0

func (o *FilterOptionClientModel) SetSourceId(v string)

SetSourceId sets field value

func (*FilterOptionClientModel) SetType added in v1.3.0

func (o *FilterOptionClientModel) SetType(v string)

SetType sets field value

func (FilterOptionClientModel) ToMap added in v1.3.0

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

func (*FilterOptionClientModel) UnmarshalJSON added in v1.3.0

func (o *FilterOptionClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*FilterOptionClientModel) UnsetIcon added in v1.3.0

func (o *FilterOptionClientModel) UnsetIcon()

UnsetIcon ensures that no value is present for Icon, not even an explicit nil

type FilterOptionClientModelIcon added in v1.3.0

type FilterOptionClientModelIcon struct {
	Png string `json:"png"`
	Svg string `json:"svg"`
}

FilterOptionClientModelIcon struct for FilterOptionClientModelIcon

func NewFilterOptionClientModelIcon added in v1.3.0

func NewFilterOptionClientModelIcon(png string, svg string) *FilterOptionClientModelIcon

NewFilterOptionClientModelIcon instantiates a new FilterOptionClientModelIcon 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 NewFilterOptionClientModelIconWithDefaults added in v1.3.0

func NewFilterOptionClientModelIconWithDefaults() *FilterOptionClientModelIcon

NewFilterOptionClientModelIconWithDefaults instantiates a new FilterOptionClientModelIcon 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 (*FilterOptionClientModelIcon) GetPng added in v1.3.0

func (o *FilterOptionClientModelIcon) GetPng() string

GetPng returns the Png field value

func (*FilterOptionClientModelIcon) GetPngOk added in v1.3.0

func (o *FilterOptionClientModelIcon) GetPngOk() (*string, bool)

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

func (*FilterOptionClientModelIcon) GetSvg added in v1.3.0

func (o *FilterOptionClientModelIcon) GetSvg() string

GetSvg returns the Svg field value

func (*FilterOptionClientModelIcon) GetSvgOk added in v1.3.0

func (o *FilterOptionClientModelIcon) GetSvgOk() (*string, bool)

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

func (FilterOptionClientModelIcon) MarshalJSON added in v1.3.0

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

func (*FilterOptionClientModelIcon) SetPng added in v1.3.0

func (o *FilterOptionClientModelIcon) SetPng(v string)

SetPng sets field value

func (*FilterOptionClientModelIcon) SetSvg added in v1.3.0

func (o *FilterOptionClientModelIcon) SetSvg(v string)

SetSvg sets field value

func (FilterOptionClientModelIcon) ToMap added in v1.3.0

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

func (*FilterOptionClientModelIcon) UnmarshalJSON added in v1.3.0

func (o *FilterOptionClientModelIcon) UnmarshalJSON(bytes []byte) (err error)

type FiltersAPIService added in v1.0.3

type FiltersAPIService service

FiltersAPIService FiltersAPI service

func (*FiltersAPIService) ListFilterOptions added in v1.3.0

ListFilterOptions List filter options

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

func (*FiltersAPIService) ListFilterOptionsExecute added in v1.3.0

Execute executes the request

@return PaginatedClientResponseModelFilterOptionClientModel

func (*FiltersAPIService) ListIntegrationFilterOptions added in v1.0.3

func (a *FiltersAPIService) ListIntegrationFilterOptions(ctx context.Context) ApiListIntegrationFilterOptionsRequest

ListIntegrationFilterOptions List integration filters

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

func (*FiltersAPIService) ListIntegrationFilterOptionsExecute added in v1.0.3

Execute executes the request

@return PaginatedClientResponseModelIntegrationClientModel

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GranteeClientModel added in v1.2.2

type GranteeClientModel struct {
	Id          string `json:"id"`
	SourceId    string `json:"source_id"`
	DisplayName string `json:"display_name"`
	Type        string `json:"type"`
}

GranteeClientModel struct for GranteeClientModel

func NewGranteeClientModel added in v1.2.2

func NewGranteeClientModel(id string, sourceId string, displayName string, type_ string) *GranteeClientModel

NewGranteeClientModel instantiates a new GranteeClientModel 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 NewGranteeClientModelWithDefaults added in v1.2.2

func NewGranteeClientModelWithDefaults() *GranteeClientModel

NewGranteeClientModelWithDefaults instantiates a new GranteeClientModel 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 (*GranteeClientModel) GetDisplayName added in v1.2.2

func (o *GranteeClientModel) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*GranteeClientModel) GetDisplayNameOk added in v1.2.2

func (o *GranteeClientModel) GetDisplayNameOk() (*string, bool)

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

func (*GranteeClientModel) GetId added in v1.2.2

func (o *GranteeClientModel) GetId() string

GetId returns the Id field value

func (*GranteeClientModel) GetIdOk added in v1.2.2

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

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

func (*GranteeClientModel) GetSourceId added in v1.2.2

func (o *GranteeClientModel) GetSourceId() string

GetSourceId returns the SourceId field value

func (*GranteeClientModel) GetSourceIdOk added in v1.2.2

func (o *GranteeClientModel) GetSourceIdOk() (*string, bool)

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

func (*GranteeClientModel) GetType added in v1.2.2

func (o *GranteeClientModel) GetType() string

GetType returns the Type field value

func (*GranteeClientModel) GetTypeOk added in v1.2.2

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

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

func (GranteeClientModel) MarshalJSON added in v1.2.2

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

func (*GranteeClientModel) SetDisplayName added in v1.2.2

func (o *GranteeClientModel) SetDisplayName(v string)

SetDisplayName sets field value

func (*GranteeClientModel) SetId added in v1.2.2

func (o *GranteeClientModel) SetId(v string)

SetId sets field value

func (*GranteeClientModel) SetSourceId added in v1.2.2

func (o *GranteeClientModel) SetSourceId(v string)

SetSourceId sets field value

func (*GranteeClientModel) SetType added in v1.2.2

func (o *GranteeClientModel) SetType(v string)

SetType sets field value

func (GranteeClientModel) ToMap added in v1.2.2

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

func (*GranteeClientModel) UnmarshalJSON added in v1.2.2

func (o *GranteeClientModel) UnmarshalJSON(bytes []byte) (err error)

type IconsConfigClientModel

type IconsConfigClientModel struct {
	Png string `json:"png"`
	Svg string `json:"svg"`
}

IconsConfigClientModel struct for IconsConfigClientModel

func NewIconsConfigClientModel

func NewIconsConfigClientModel(png string, svg string) *IconsConfigClientModel

NewIconsConfigClientModel instantiates a new IconsConfigClientModel 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 NewIconsConfigClientModelWithDefaults

func NewIconsConfigClientModelWithDefaults() *IconsConfigClientModel

NewIconsConfigClientModelWithDefaults instantiates a new IconsConfigClientModel 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 (*IconsConfigClientModel) GetPng

func (o *IconsConfigClientModel) GetPng() string

GetPng returns the Png field value

func (*IconsConfigClientModel) GetPngOk

func (o *IconsConfigClientModel) GetPngOk() (*string, bool)

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

func (*IconsConfigClientModel) GetSvg

func (o *IconsConfigClientModel) GetSvg() string

GetSvg returns the Svg field value

func (*IconsConfigClientModel) GetSvgOk

func (o *IconsConfigClientModel) GetSvgOk() (*string, bool)

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

func (IconsConfigClientModel) MarshalJSON

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

func (*IconsConfigClientModel) SetPng

func (o *IconsConfigClientModel) SetPng(v string)

SetPng sets field value

func (*IconsConfigClientModel) SetSvg

func (o *IconsConfigClientModel) SetSvg(v string)

SetSvg sets field value

func (IconsConfigClientModel) ToMap

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

func (*IconsConfigClientModel) UnmarshalJSON

func (o *IconsConfigClientModel) UnmarshalJSON(bytes []byte) (err error)

type InstructionClientModel

type InstructionClientModel struct {
	Plain         string         `json:"plain"`
	Markdown      string         `json:"markdown"`
	CustomMessage NullableString `json:"custom_message,omitempty"`
}

InstructionClientModel struct for InstructionClientModel

func NewInstructionClientModel

func NewInstructionClientModel(plain string, markdown string) *InstructionClientModel

NewInstructionClientModel instantiates a new InstructionClientModel 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 NewInstructionClientModelWithDefaults

func NewInstructionClientModelWithDefaults() *InstructionClientModel

NewInstructionClientModelWithDefaults instantiates a new InstructionClientModel 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 (*InstructionClientModel) GetCustomMessage added in v1.0.3

func (o *InstructionClientModel) GetCustomMessage() string

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

func (*InstructionClientModel) GetCustomMessageOk added in v1.0.3

func (o *InstructionClientModel) GetCustomMessageOk() (*string, bool)

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

func (*InstructionClientModel) GetMarkdown

func (o *InstructionClientModel) GetMarkdown() string

GetMarkdown returns the Markdown field value

func (*InstructionClientModel) GetMarkdownOk

func (o *InstructionClientModel) GetMarkdownOk() (*string, bool)

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

func (*InstructionClientModel) GetPlain

func (o *InstructionClientModel) GetPlain() string

GetPlain returns the Plain field value

func (*InstructionClientModel) GetPlainOk

func (o *InstructionClientModel) GetPlainOk() (*string, bool)

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

func (*InstructionClientModel) HasCustomMessage added in v1.0.3

func (o *InstructionClientModel) HasCustomMessage() bool

HasCustomMessage returns a boolean if a field has been set.

func (InstructionClientModel) MarshalJSON

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

func (*InstructionClientModel) SetCustomMessage added in v1.0.3

func (o *InstructionClientModel) SetCustomMessage(v string)

SetCustomMessage gets a reference to the given NullableString and assigns it to the CustomMessage field.

func (*InstructionClientModel) SetCustomMessageNil added in v1.0.3

func (o *InstructionClientModel) SetCustomMessageNil()

SetCustomMessageNil sets the value for CustomMessage to be an explicit nil

func (*InstructionClientModel) SetMarkdown

func (o *InstructionClientModel) SetMarkdown(v string)

SetMarkdown sets field value

func (*InstructionClientModel) SetPlain

func (o *InstructionClientModel) SetPlain(v string)

SetPlain sets field value

func (InstructionClientModel) ToMap

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

func (*InstructionClientModel) UnmarshalJSON

func (o *InstructionClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*InstructionClientModel) UnsetCustomMessage added in v1.0.3

func (o *InstructionClientModel) UnsetCustomMessage()

UnsetCustomMessage ensures that no value is present for CustomMessage, not even an explicit nil

type IntegrationClientModel

type IntegrationClientModel struct {
	Id              string                 `json:"id"`
	Type            string                 `json:"type"`
	TypeDisplayName string                 `json:"type_display_name"`
	Name            string                 `json:"name"`
	Icons           IconsConfigClientModel `json:"icons"`
}

IntegrationClientModel struct for IntegrationClientModel

func NewIntegrationClientModel

func NewIntegrationClientModel(id string, type_ string, typeDisplayName string, name string, icons IconsConfigClientModel) *IntegrationClientModel

NewIntegrationClientModel instantiates a new IntegrationClientModel 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 NewIntegrationClientModelWithDefaults

func NewIntegrationClientModelWithDefaults() *IntegrationClientModel

NewIntegrationClientModelWithDefaults instantiates a new IntegrationClientModel 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 (*IntegrationClientModel) GetIcons

GetIcons returns the Icons field value

func (*IntegrationClientModel) GetIconsOk

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

func (*IntegrationClientModel) GetId

func (o *IntegrationClientModel) GetId() string

GetId returns the Id field value

func (*IntegrationClientModel) GetIdOk

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

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

func (*IntegrationClientModel) GetName

func (o *IntegrationClientModel) GetName() string

GetName returns the Name field value

func (*IntegrationClientModel) GetNameOk

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

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

func (*IntegrationClientModel) GetType

func (o *IntegrationClientModel) GetType() string

GetType returns the Type field value

func (*IntegrationClientModel) GetTypeDisplayName

func (o *IntegrationClientModel) GetTypeDisplayName() string

GetTypeDisplayName returns the TypeDisplayName field value

func (*IntegrationClientModel) GetTypeDisplayNameOk

func (o *IntegrationClientModel) GetTypeDisplayNameOk() (*string, bool)

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

func (*IntegrationClientModel) GetTypeOk

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

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

func (IntegrationClientModel) MarshalJSON

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

func (*IntegrationClientModel) SetIcons

SetIcons sets field value

func (*IntegrationClientModel) SetId

func (o *IntegrationClientModel) SetId(v string)

SetId sets field value

func (*IntegrationClientModel) SetName

func (o *IntegrationClientModel) SetName(v string)

SetName sets field value

func (*IntegrationClientModel) SetType

func (o *IntegrationClientModel) SetType(v string)

SetType sets field value

func (*IntegrationClientModel) SetTypeDisplayName

func (o *IntegrationClientModel) SetTypeDisplayName(v string)

SetTypeDisplayName sets field value

func (IntegrationClientModel) ToMap

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

func (*IntegrationClientModel) UnmarshalJSON

func (o *IntegrationClientModel) UnmarshalJSON(bytes []byte) (err error)

type InventoryAPIService

type InventoryAPIService service

InventoryAPIService InventoryAPI service

func (*InventoryAPIService) ListAccessBundles

ListAccessBundles List access bundles

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

func (*InventoryAPIService) ListAccessBundlesExecute

Execute executes the request

@return PaginatedClientResponseModelBundleClientModel

func (*InventoryAPIService) ListAccessUnits

ListAccessUnits List access units

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

func (*InventoryAPIService) ListAccessUnitsExecute

Execute executes the request

@return PaginatedClientResponseModelAccessUnitClientModel

func (*InventoryAPIService) ListGrantees added in v1.2.2

ListGrantees List grantees resolvable for given user

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

func (*InventoryAPIService) ListGranteesExecute added in v1.2.2

Execute executes the request

@return PaginatedClientResponseModelGranteeClientModel

func (*InventoryAPIService) ListIntegration

ListIntegration List integrations

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

func (*InventoryAPIService) ListIntegrationExecute

Execute executes the request

@return PaginatedClientResponseModelIntegrationClientModel

func (*InventoryAPIService) ListPermissions

ListPermissions List permissions

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

func (*InventoryAPIService) ListPermissionsExecute

Execute executes the request

@return PaginatedClientResponseModelPermissionClientModel

func (*InventoryAPIService) ListResourceTypes

ListResourceTypes List resource types

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

func (*InventoryAPIService) ListResourceTypesExecute

Execute executes the request

@return PaginatedClientResponseModelResourceTypeClientModel

func (*InventoryAPIService) ListResources

ListResources List resources

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

func (*InventoryAPIService) ListResourcesExecute

Execute executes the request

@return PaginatedClientResponseModelResourceClientModel

type LinkClientModel

type LinkClientModel struct {
	Url   string         `json:"url"`
	Title NullableString `json:"title,omitempty"`
}

LinkClientModel struct for LinkClientModel

func NewLinkClientModel

func NewLinkClientModel(url string) *LinkClientModel

NewLinkClientModel instantiates a new LinkClientModel 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 NewLinkClientModelWithDefaults

func NewLinkClientModelWithDefaults() *LinkClientModel

NewLinkClientModelWithDefaults instantiates a new LinkClientModel 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 (*LinkClientModel) GetTitle

func (o *LinkClientModel) GetTitle() string

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

func (*LinkClientModel) GetTitleOk

func (o *LinkClientModel) GetTitleOk() (*string, bool)

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

func (*LinkClientModel) GetUrl

func (o *LinkClientModel) GetUrl() string

GetUrl returns the Url field value

func (*LinkClientModel) GetUrlOk

func (o *LinkClientModel) GetUrlOk() (*string, bool)

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

func (*LinkClientModel) HasTitle

func (o *LinkClientModel) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (LinkClientModel) MarshalJSON

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

func (*LinkClientModel) SetTitle

func (o *LinkClientModel) SetTitle(v string)

SetTitle gets a reference to the given NullableString and assigns it to the Title field.

func (*LinkClientModel) SetTitleNil

func (o *LinkClientModel) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*LinkClientModel) SetUrl

func (o *LinkClientModel) SetUrl(v string)

SetUrl sets field value

func (LinkClientModel) ToMap

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

func (*LinkClientModel) UnmarshalJSON

func (o *LinkClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*LinkClientModel) UnsetTitle

func (o *LinkClientModel) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

type MCPServerAPIService added in v1.3.0

type MCPServerAPIService service

MCPServerAPIService MCPServerAPI service

func (*MCPServerAPIService) HandleMcpMethod added in v1.3.0

HandleMcpMethod Handle MCP method calls via JsonRPC

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

func (*MCPServerAPIService) HandleMcpMethodExecute added in v1.3.0

func (a *MCPServerAPIService) HandleMcpMethodExecute(r ApiHandleMcpMethodRequest) (*McpResponse, *http.Response, error)

Execute executes the request

@return McpResponse

type MappedNullable

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

type McpError added in v1.3.0

type McpError struct {
	Code    int32       `json:"code"`
	Message string      `json:"message"`
	Data    interface{} `json:"data"`
}

McpError struct for McpError

func NewMcpError added in v1.3.0

func NewMcpError(code int32, message string, data interface{}) *McpError

NewMcpError instantiates a new McpError 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 NewMcpErrorWithDefaults added in v1.3.0

func NewMcpErrorWithDefaults() *McpError

NewMcpErrorWithDefaults instantiates a new McpError 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 (*McpError) GetCode added in v1.3.0

func (o *McpError) GetCode() int32

GetCode returns the Code field value

func (*McpError) GetCodeOk added in v1.3.0

func (o *McpError) GetCodeOk() (*int32, bool)

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

func (*McpError) GetData added in v1.3.0

func (o *McpError) GetData() interface{}

GetData returns the Data field value If the value is explicit nil, the zero value for interface{} will be returned

func (*McpError) GetDataOk added in v1.3.0

func (o *McpError) GetDataOk() (*interface{}, bool)

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

func (*McpError) GetMessage added in v1.3.0

func (o *McpError) GetMessage() string

GetMessage returns the Message field value

func (*McpError) GetMessageOk added in v1.3.0

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

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

func (McpError) MarshalJSON added in v1.3.0

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

func (*McpError) SetCode added in v1.3.0

func (o *McpError) SetCode(v int32)

SetCode sets field value

func (*McpError) SetData added in v1.3.0

func (o *McpError) SetData(v interface{})

SetData sets field value

func (*McpError) SetMessage added in v1.3.0

func (o *McpError) SetMessage(v string)

SetMessage sets field value

func (McpError) ToMap added in v1.3.0

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

func (*McpError) UnmarshalJSON added in v1.3.0

func (o *McpError) UnmarshalJSON(bytes []byte) (err error)

type McpRequest added in v1.3.0

type McpRequest struct {
	NotificationMcpRequest *NotificationMcpRequest
	StandardMcpRequest     *StandardMcpRequest
}

McpRequest - struct for McpRequest

func NotificationMcpRequestAsMcpRequest added in v1.3.0

func NotificationMcpRequestAsMcpRequest(v *NotificationMcpRequest) McpRequest

NotificationMcpRequestAsMcpRequest is a convenience function that returns NotificationMcpRequest wrapped in McpRequest

func StandardMcpRequestAsMcpRequest added in v1.3.0

func StandardMcpRequestAsMcpRequest(v *StandardMcpRequest) McpRequest

StandardMcpRequestAsMcpRequest is a convenience function that returns StandardMcpRequest wrapped in McpRequest

func (*McpRequest) GetActualInstance added in v1.3.0

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

Get the actual instance

func (McpRequest) MarshalJSON added in v1.3.0

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

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

func (*McpRequest) UnmarshalJSON added in v1.3.0

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

Unmarshal JSON data into one of the pointers in the struct

type McpResponse added in v1.3.0

type McpResponse struct {
	Jsonrpc string                   `json:"jsonrpc"`
	Id      string                   `json:"id"`
	Result  interface{}              `json:"result"`
	Error   NullableMcpResponseError `json:"error,omitempty"`
}

McpResponse struct for McpResponse

func NewMcpResponse added in v1.3.0

func NewMcpResponse(jsonrpc string, id string, result interface{}) *McpResponse

NewMcpResponse instantiates a new McpResponse 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 NewMcpResponseWithDefaults added in v1.3.0

func NewMcpResponseWithDefaults() *McpResponse

NewMcpResponseWithDefaults instantiates a new McpResponse 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 (*McpResponse) GetError added in v1.3.0

func (o *McpResponse) GetError() McpResponseError

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

func (*McpResponse) GetErrorOk added in v1.3.0

func (o *McpResponse) GetErrorOk() (*McpResponseError, bool)

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

func (*McpResponse) GetId added in v1.3.0

func (o *McpResponse) GetId() string

GetId returns the Id field value

func (*McpResponse) GetIdOk added in v1.3.0

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

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

func (*McpResponse) GetJsonrpc added in v1.3.0

func (o *McpResponse) GetJsonrpc() string

GetJsonrpc returns the Jsonrpc field value

func (*McpResponse) GetJsonrpcOk added in v1.3.0

func (o *McpResponse) GetJsonrpcOk() (*string, bool)

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

func (*McpResponse) GetResult added in v1.3.0

func (o *McpResponse) GetResult() interface{}

GetResult returns the Result field value If the value is explicit nil, the zero value for interface{} will be returned

func (*McpResponse) GetResultOk added in v1.3.0

func (o *McpResponse) GetResultOk() (*interface{}, bool)

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

func (*McpResponse) HasError added in v1.3.0

func (o *McpResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (McpResponse) MarshalJSON added in v1.3.0

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

func (*McpResponse) SetError added in v1.3.0

func (o *McpResponse) SetError(v McpResponseError)

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

func (*McpResponse) SetErrorNil added in v1.3.0

func (o *McpResponse) SetErrorNil()

SetErrorNil sets the value for Error to be an explicit nil

func (*McpResponse) SetId added in v1.3.0

func (o *McpResponse) SetId(v string)

SetId sets field value

func (*McpResponse) SetJsonrpc added in v1.3.0

func (o *McpResponse) SetJsonrpc(v string)

SetJsonrpc sets field value

func (*McpResponse) SetResult added in v1.3.0

func (o *McpResponse) SetResult(v interface{})

SetResult sets field value

func (McpResponse) ToMap added in v1.3.0

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

func (*McpResponse) UnmarshalJSON added in v1.3.0

func (o *McpResponse) UnmarshalJSON(bytes []byte) (err error)

func (*McpResponse) UnsetError added in v1.3.0

func (o *McpResponse) UnsetError()

UnsetError ensures that no value is present for Error, not even an explicit nil

type McpResponseError added in v1.3.0

type McpResponseError struct {
	Code    int32                  `json:"code"`
	Message string                 `json:"message"`
	Data    map[string]interface{} `json:"data"`
}

McpResponseError struct for McpResponseError

func NewMcpResponseError added in v1.3.0

func NewMcpResponseError(code int32, message string, data map[string]interface{}) *McpResponseError

NewMcpResponseError instantiates a new McpResponseError 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 NewMcpResponseErrorWithDefaults added in v1.3.0

func NewMcpResponseErrorWithDefaults() *McpResponseError

NewMcpResponseErrorWithDefaults instantiates a new McpResponseError 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 (*McpResponseError) GetCode added in v1.3.0

func (o *McpResponseError) GetCode() int32

GetCode returns the Code field value

func (*McpResponseError) GetCodeOk added in v1.3.0

func (o *McpResponseError) GetCodeOk() (*int32, bool)

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

func (*McpResponseError) GetData added in v1.3.0

func (o *McpResponseError) GetData() map[string]interface{}

GetData returns the Data field value

func (*McpResponseError) GetDataOk added in v1.3.0

func (o *McpResponseError) GetDataOk() (map[string]interface{}, bool)

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

func (*McpResponseError) GetMessage added in v1.3.0

func (o *McpResponseError) GetMessage() string

GetMessage returns the Message field value

func (*McpResponseError) GetMessageOk added in v1.3.0

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

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

func (McpResponseError) MarshalJSON added in v1.3.0

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

func (*McpResponseError) SetCode added in v1.3.0

func (o *McpResponseError) SetCode(v int32)

SetCode sets field value

func (*McpResponseError) SetData added in v1.3.0

func (o *McpResponseError) SetData(v map[string]interface{})

SetData sets field value

func (*McpResponseError) SetMessage added in v1.3.0

func (o *McpResponseError) SetMessage(v string)

SetMessage sets field value

func (McpResponseError) ToMap added in v1.3.0

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

func (*McpResponseError) UnmarshalJSON added in v1.3.0

func (o *McpResponseError) UnmarshalJSON(bytes []byte) (err error)

type MessageDataImageClientModel added in v1.2.2

type MessageDataImageClientModel struct {
	Link string `json:"link"`
}

MessageDataImageClientModel struct for MessageDataImageClientModel

func NewMessageDataImageClientModel added in v1.2.2

func NewMessageDataImageClientModel(link string) *MessageDataImageClientModel

NewMessageDataImageClientModel instantiates a new MessageDataImageClientModel 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 NewMessageDataImageClientModelWithDefaults added in v1.2.2

func NewMessageDataImageClientModelWithDefaults() *MessageDataImageClientModel

NewMessageDataImageClientModelWithDefaults instantiates a new MessageDataImageClientModel 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 (o *MessageDataImageClientModel) GetLink() string

GetLink returns the Link field value

func (*MessageDataImageClientModel) GetLinkOk added in v1.2.2

func (o *MessageDataImageClientModel) GetLinkOk() (*string, bool)

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

func (MessageDataImageClientModel) MarshalJSON added in v1.2.2

func (o MessageDataImageClientModel) MarshalJSON() ([]byte, error)
func (o *MessageDataImageClientModel) SetLink(v string)

SetLink sets field value

func (MessageDataImageClientModel) ToMap added in v1.2.2

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

func (*MessageDataImageClientModel) UnmarshalJSON added in v1.2.2

func (o *MessageDataImageClientModel) UnmarshalJSON(bytes []byte) (err error)

type MessageDataMarkdownClientModel added in v1.2.2

type MessageDataMarkdownClientModel struct {
	Content string `json:"content"`
}

MessageDataMarkdownClientModel struct for MessageDataMarkdownClientModel

func NewMessageDataMarkdownClientModel added in v1.2.2

func NewMessageDataMarkdownClientModel(content string) *MessageDataMarkdownClientModel

NewMessageDataMarkdownClientModel instantiates a new MessageDataMarkdownClientModel 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 NewMessageDataMarkdownClientModelWithDefaults added in v1.2.2

func NewMessageDataMarkdownClientModelWithDefaults() *MessageDataMarkdownClientModel

NewMessageDataMarkdownClientModelWithDefaults instantiates a new MessageDataMarkdownClientModel 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 (*MessageDataMarkdownClientModel) GetContent added in v1.2.2

func (o *MessageDataMarkdownClientModel) GetContent() string

GetContent returns the Content field value

func (*MessageDataMarkdownClientModel) GetContentOk added in v1.2.2

func (o *MessageDataMarkdownClientModel) GetContentOk() (*string, bool)

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

func (MessageDataMarkdownClientModel) MarshalJSON added in v1.2.2

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

func (*MessageDataMarkdownClientModel) SetContent added in v1.2.2

func (o *MessageDataMarkdownClientModel) SetContent(v string)

SetContent sets field value

func (MessageDataMarkdownClientModel) ToMap added in v1.2.2

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

func (*MessageDataMarkdownClientModel) UnmarshalJSON added in v1.2.2

func (o *MessageDataMarkdownClientModel) UnmarshalJSON(bytes []byte) (err error)

type MessageDataRequestBundlesClientModel added in v1.2.2

type MessageDataRequestBundlesClientModel struct {
	Entitlements     []BundleClientModel `json:"entitlements"`
	Justification    string              `json:"justification"`
	RequiresApproval bool                `json:"requires_approval"`
	ValidRequest     bool                `json:"valid_request"`
}

MessageDataRequestBundlesClientModel struct for MessageDataRequestBundlesClientModel

func NewMessageDataRequestBundlesClientModel added in v1.2.2

func NewMessageDataRequestBundlesClientModel(entitlements []BundleClientModel, justification string, requiresApproval bool, validRequest bool) *MessageDataRequestBundlesClientModel

NewMessageDataRequestBundlesClientModel instantiates a new MessageDataRequestBundlesClientModel 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 NewMessageDataRequestBundlesClientModelWithDefaults added in v1.2.2

func NewMessageDataRequestBundlesClientModelWithDefaults() *MessageDataRequestBundlesClientModel

NewMessageDataRequestBundlesClientModelWithDefaults instantiates a new MessageDataRequestBundlesClientModel 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 (*MessageDataRequestBundlesClientModel) GetEntitlements added in v1.2.2

GetEntitlements returns the Entitlements field value

func (*MessageDataRequestBundlesClientModel) GetEntitlementsOk added in v1.2.2

func (o *MessageDataRequestBundlesClientModel) GetEntitlementsOk() ([]BundleClientModel, bool)

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

func (*MessageDataRequestBundlesClientModel) GetJustification added in v1.2.2

func (o *MessageDataRequestBundlesClientModel) GetJustification() string

GetJustification returns the Justification field value

func (*MessageDataRequestBundlesClientModel) GetJustificationOk added in v1.2.2

func (o *MessageDataRequestBundlesClientModel) GetJustificationOk() (*string, bool)

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

func (*MessageDataRequestBundlesClientModel) GetRequiresApproval added in v1.2.2

func (o *MessageDataRequestBundlesClientModel) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value

func (*MessageDataRequestBundlesClientModel) GetRequiresApprovalOk added in v1.2.2

func (o *MessageDataRequestBundlesClientModel) GetRequiresApprovalOk() (*bool, bool)

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

func (*MessageDataRequestBundlesClientModel) GetValidRequest added in v1.3.0

func (o *MessageDataRequestBundlesClientModel) GetValidRequest() bool

GetValidRequest returns the ValidRequest field value

func (*MessageDataRequestBundlesClientModel) GetValidRequestOk added in v1.3.0

func (o *MessageDataRequestBundlesClientModel) GetValidRequestOk() (*bool, bool)

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

func (MessageDataRequestBundlesClientModel) MarshalJSON added in v1.2.2

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

func (*MessageDataRequestBundlesClientModel) SetEntitlements added in v1.2.2

SetEntitlements sets field value

func (*MessageDataRequestBundlesClientModel) SetJustification added in v1.2.2

func (o *MessageDataRequestBundlesClientModel) SetJustification(v string)

SetJustification sets field value

func (*MessageDataRequestBundlesClientModel) SetRequiresApproval added in v1.2.2

func (o *MessageDataRequestBundlesClientModel) SetRequiresApproval(v bool)

SetRequiresApproval sets field value

func (*MessageDataRequestBundlesClientModel) SetValidRequest added in v1.3.0

func (o *MessageDataRequestBundlesClientModel) SetValidRequest(v bool)

SetValidRequest sets field value

func (MessageDataRequestBundlesClientModel) ToMap added in v1.2.2

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

func (*MessageDataRequestBundlesClientModel) UnmarshalJSON added in v1.2.2

func (o *MessageDataRequestBundlesClientModel) UnmarshalJSON(bytes []byte) (err error)

type MessageDataRequestCTAClientModel added in v1.2.2

type MessageDataRequestCTAClientModel struct {
	ResourcesRequest NullableMessageDataRequestCTAClientModelResourcesRequest `json:"resources_request,omitempty"`
	BundlesRequest   NullableMessageDataRequestCTAClientModelBundlesRequest   `json:"bundles_request,omitempty"`
	RequestAgain     NullableMessageDataRequestCTAClientModelRequestAgain     `json:"request_again,omitempty"`
}

MessageDataRequestCTAClientModel struct for MessageDataRequestCTAClientModel

func NewMessageDataRequestCTAClientModel added in v1.2.2

func NewMessageDataRequestCTAClientModel() *MessageDataRequestCTAClientModel

NewMessageDataRequestCTAClientModel instantiates a new MessageDataRequestCTAClientModel 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 NewMessageDataRequestCTAClientModelWithDefaults added in v1.2.2

func NewMessageDataRequestCTAClientModelWithDefaults() *MessageDataRequestCTAClientModel

NewMessageDataRequestCTAClientModelWithDefaults instantiates a new MessageDataRequestCTAClientModel 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 (*MessageDataRequestCTAClientModel) GetBundlesRequest added in v1.2.2

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

func (*MessageDataRequestCTAClientModel) GetBundlesRequestOk added in v1.2.2

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

func (*MessageDataRequestCTAClientModel) GetRequestAgain added in v1.2.2

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

func (*MessageDataRequestCTAClientModel) GetRequestAgainOk added in v1.2.2

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

func (*MessageDataRequestCTAClientModel) GetResourcesRequest added in v1.2.2

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

func (*MessageDataRequestCTAClientModel) GetResourcesRequestOk added in v1.2.2

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

func (*MessageDataRequestCTAClientModel) HasBundlesRequest added in v1.2.2

func (o *MessageDataRequestCTAClientModel) HasBundlesRequest() bool

HasBundlesRequest returns a boolean if a field has been set.

func (*MessageDataRequestCTAClientModel) HasRequestAgain added in v1.2.2

func (o *MessageDataRequestCTAClientModel) HasRequestAgain() bool

HasRequestAgain returns a boolean if a field has been set.

func (*MessageDataRequestCTAClientModel) HasResourcesRequest added in v1.2.2

func (o *MessageDataRequestCTAClientModel) HasResourcesRequest() bool

HasResourcesRequest returns a boolean if a field has been set.

func (MessageDataRequestCTAClientModel) MarshalJSON added in v1.2.2

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

func (*MessageDataRequestCTAClientModel) SetBundlesRequest added in v1.2.2

SetBundlesRequest gets a reference to the given NullableMessageDataRequestCTAClientModelBundlesRequest and assigns it to the BundlesRequest field.

func (*MessageDataRequestCTAClientModel) SetBundlesRequestNil added in v1.2.2

func (o *MessageDataRequestCTAClientModel) SetBundlesRequestNil()

SetBundlesRequestNil sets the value for BundlesRequest to be an explicit nil

func (*MessageDataRequestCTAClientModel) SetRequestAgain added in v1.2.2

SetRequestAgain gets a reference to the given NullableMessageDataRequestCTAClientModelRequestAgain and assigns it to the RequestAgain field.

func (*MessageDataRequestCTAClientModel) SetRequestAgainNil added in v1.2.2

func (o *MessageDataRequestCTAClientModel) SetRequestAgainNil()

SetRequestAgainNil sets the value for RequestAgain to be an explicit nil

func (*MessageDataRequestCTAClientModel) SetResourcesRequest added in v1.2.2

SetResourcesRequest gets a reference to the given NullableMessageDataRequestCTAClientModelResourcesRequest and assigns it to the ResourcesRequest field.

func (*MessageDataRequestCTAClientModel) SetResourcesRequestNil added in v1.2.2

func (o *MessageDataRequestCTAClientModel) SetResourcesRequestNil()

SetResourcesRequestNil sets the value for ResourcesRequest to be an explicit nil

func (MessageDataRequestCTAClientModel) ToMap added in v1.2.2

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

func (*MessageDataRequestCTAClientModel) UnsetBundlesRequest added in v1.2.2

func (o *MessageDataRequestCTAClientModel) UnsetBundlesRequest()

UnsetBundlesRequest ensures that no value is present for BundlesRequest, not even an explicit nil

func (*MessageDataRequestCTAClientModel) UnsetRequestAgain added in v1.2.2

func (o *MessageDataRequestCTAClientModel) UnsetRequestAgain()

UnsetRequestAgain ensures that no value is present for RequestAgain, not even an explicit nil

func (*MessageDataRequestCTAClientModel) UnsetResourcesRequest added in v1.2.2

func (o *MessageDataRequestCTAClientModel) UnsetResourcesRequest()

UnsetResourcesRequest ensures that no value is present for ResourcesRequest, not even an explicit nil

type MessageDataRequestCTAClientModelBundlesRequest added in v1.2.2

type MessageDataRequestCTAClientModelBundlesRequest struct {
	Entitlements     []BundleClientModel `json:"entitlements"`
	Justification    string              `json:"justification"`
	RequiresApproval bool                `json:"requires_approval"`
	ValidRequest     bool                `json:"valid_request"`
}

MessageDataRequestCTAClientModelBundlesRequest struct for MessageDataRequestCTAClientModelBundlesRequest

func NewMessageDataRequestCTAClientModelBundlesRequest added in v1.2.2

func NewMessageDataRequestCTAClientModelBundlesRequest(entitlements []BundleClientModel, justification string, requiresApproval bool, validRequest bool) *MessageDataRequestCTAClientModelBundlesRequest

NewMessageDataRequestCTAClientModelBundlesRequest instantiates a new MessageDataRequestCTAClientModelBundlesRequest 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 NewMessageDataRequestCTAClientModelBundlesRequestWithDefaults added in v1.2.2

func NewMessageDataRequestCTAClientModelBundlesRequestWithDefaults() *MessageDataRequestCTAClientModelBundlesRequest

NewMessageDataRequestCTAClientModelBundlesRequestWithDefaults instantiates a new MessageDataRequestCTAClientModelBundlesRequest 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 (*MessageDataRequestCTAClientModelBundlesRequest) GetEntitlements added in v1.2.2

GetEntitlements returns the Entitlements field value

func (*MessageDataRequestCTAClientModelBundlesRequest) GetEntitlementsOk added in v1.2.2

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

func (*MessageDataRequestCTAClientModelBundlesRequest) GetJustification added in v1.2.2

GetJustification returns the Justification field value

func (*MessageDataRequestCTAClientModelBundlesRequest) GetJustificationOk added in v1.2.2

func (o *MessageDataRequestCTAClientModelBundlesRequest) GetJustificationOk() (*string, bool)

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

func (*MessageDataRequestCTAClientModelBundlesRequest) GetRequiresApproval added in v1.2.2

func (o *MessageDataRequestCTAClientModelBundlesRequest) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value

func (*MessageDataRequestCTAClientModelBundlesRequest) GetRequiresApprovalOk added in v1.2.2

func (o *MessageDataRequestCTAClientModelBundlesRequest) GetRequiresApprovalOk() (*bool, bool)

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

func (*MessageDataRequestCTAClientModelBundlesRequest) GetValidRequest added in v1.3.0

GetValidRequest returns the ValidRequest field value

func (*MessageDataRequestCTAClientModelBundlesRequest) GetValidRequestOk added in v1.3.0

func (o *MessageDataRequestCTAClientModelBundlesRequest) GetValidRequestOk() (*bool, bool)

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

func (MessageDataRequestCTAClientModelBundlesRequest) MarshalJSON added in v1.2.2

func (*MessageDataRequestCTAClientModelBundlesRequest) SetEntitlements added in v1.2.2

SetEntitlements sets field value

func (*MessageDataRequestCTAClientModelBundlesRequest) SetJustification added in v1.2.2

SetJustification sets field value

func (*MessageDataRequestCTAClientModelBundlesRequest) SetRequiresApproval added in v1.2.2

func (o *MessageDataRequestCTAClientModelBundlesRequest) SetRequiresApproval(v bool)

SetRequiresApproval sets field value

func (*MessageDataRequestCTAClientModelBundlesRequest) SetValidRequest added in v1.3.0

SetValidRequest sets field value

func (MessageDataRequestCTAClientModelBundlesRequest) ToMap added in v1.2.2

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

func (*MessageDataRequestCTAClientModelBundlesRequest) UnmarshalJSON added in v1.2.2

func (o *MessageDataRequestCTAClientModelBundlesRequest) UnmarshalJSON(bytes []byte) (err error)

type MessageDataRequestCTAClientModelRequestAgain added in v1.2.2

type MessageDataRequestCTAClientModelRequestAgain struct {
	Entitlements     []AccessRequestClientModel `json:"entitlements"`
	Justification    string                     `json:"justification"`
	RequiresApproval bool                       `json:"requires_approval"`
	ValidRequest     bool                       `json:"valid_request"`
}

MessageDataRequestCTAClientModelRequestAgain struct for MessageDataRequestCTAClientModelRequestAgain

func NewMessageDataRequestCTAClientModelRequestAgain added in v1.2.2

func NewMessageDataRequestCTAClientModelRequestAgain(entitlements []AccessRequestClientModel, justification string, requiresApproval bool, validRequest bool) *MessageDataRequestCTAClientModelRequestAgain

NewMessageDataRequestCTAClientModelRequestAgain instantiates a new MessageDataRequestCTAClientModelRequestAgain 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 NewMessageDataRequestCTAClientModelRequestAgainWithDefaults added in v1.2.2

func NewMessageDataRequestCTAClientModelRequestAgainWithDefaults() *MessageDataRequestCTAClientModelRequestAgain

NewMessageDataRequestCTAClientModelRequestAgainWithDefaults instantiates a new MessageDataRequestCTAClientModelRequestAgain 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 (*MessageDataRequestCTAClientModelRequestAgain) GetEntitlements added in v1.2.2

GetEntitlements returns the Entitlements field value

func (*MessageDataRequestCTAClientModelRequestAgain) GetEntitlementsOk added in v1.2.2

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

func (*MessageDataRequestCTAClientModelRequestAgain) GetJustification added in v1.2.2

GetJustification returns the Justification field value

func (*MessageDataRequestCTAClientModelRequestAgain) GetJustificationOk added in v1.2.2

func (o *MessageDataRequestCTAClientModelRequestAgain) GetJustificationOk() (*string, bool)

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

func (*MessageDataRequestCTAClientModelRequestAgain) GetRequiresApproval added in v1.2.2

func (o *MessageDataRequestCTAClientModelRequestAgain) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value

func (*MessageDataRequestCTAClientModelRequestAgain) GetRequiresApprovalOk added in v1.2.2

func (o *MessageDataRequestCTAClientModelRequestAgain) GetRequiresApprovalOk() (*bool, bool)

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

func (*MessageDataRequestCTAClientModelRequestAgain) GetValidRequest added in v1.3.0

GetValidRequest returns the ValidRequest field value

func (*MessageDataRequestCTAClientModelRequestAgain) GetValidRequestOk added in v1.3.0

func (o *MessageDataRequestCTAClientModelRequestAgain) GetValidRequestOk() (*bool, bool)

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

func (MessageDataRequestCTAClientModelRequestAgain) MarshalJSON added in v1.2.2

func (*MessageDataRequestCTAClientModelRequestAgain) SetEntitlements added in v1.2.2

SetEntitlements sets field value

func (*MessageDataRequestCTAClientModelRequestAgain) SetJustification added in v1.2.2

SetJustification sets field value

func (*MessageDataRequestCTAClientModelRequestAgain) SetRequiresApproval added in v1.2.2

func (o *MessageDataRequestCTAClientModelRequestAgain) SetRequiresApproval(v bool)

SetRequiresApproval sets field value

func (*MessageDataRequestCTAClientModelRequestAgain) SetValidRequest added in v1.3.0

func (o *MessageDataRequestCTAClientModelRequestAgain) SetValidRequest(v bool)

SetValidRequest sets field value

func (MessageDataRequestCTAClientModelRequestAgain) ToMap added in v1.2.2

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

func (*MessageDataRequestCTAClientModelRequestAgain) UnmarshalJSON added in v1.2.2

func (o *MessageDataRequestCTAClientModelRequestAgain) UnmarshalJSON(bytes []byte) (err error)

type MessageDataRequestCTAClientModelResourcesRequest added in v1.2.2

type MessageDataRequestCTAClientModelResourcesRequest struct {
	Entitlements     []AccessUnitClientModel `json:"entitlements"`
	Justification    string                  `json:"justification"`
	RequiresApproval bool                    `json:"requires_approval"`
	ValidRequest     bool                    `json:"valid_request"`
}

MessageDataRequestCTAClientModelResourcesRequest struct for MessageDataRequestCTAClientModelResourcesRequest

func NewMessageDataRequestCTAClientModelResourcesRequest added in v1.2.2

func NewMessageDataRequestCTAClientModelResourcesRequest(entitlements []AccessUnitClientModel, justification string, requiresApproval bool, validRequest bool) *MessageDataRequestCTAClientModelResourcesRequest

NewMessageDataRequestCTAClientModelResourcesRequest instantiates a new MessageDataRequestCTAClientModelResourcesRequest 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 NewMessageDataRequestCTAClientModelResourcesRequestWithDefaults added in v1.2.2

func NewMessageDataRequestCTAClientModelResourcesRequestWithDefaults() *MessageDataRequestCTAClientModelResourcesRequest

NewMessageDataRequestCTAClientModelResourcesRequestWithDefaults instantiates a new MessageDataRequestCTAClientModelResourcesRequest 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 (*MessageDataRequestCTAClientModelResourcesRequest) GetEntitlements added in v1.2.2

GetEntitlements returns the Entitlements field value

func (*MessageDataRequestCTAClientModelResourcesRequest) GetEntitlementsOk added in v1.2.2

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

func (*MessageDataRequestCTAClientModelResourcesRequest) GetJustification added in v1.2.2

GetJustification returns the Justification field value

func (*MessageDataRequestCTAClientModelResourcesRequest) GetJustificationOk added in v1.2.2

func (o *MessageDataRequestCTAClientModelResourcesRequest) GetJustificationOk() (*string, bool)

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

func (*MessageDataRequestCTAClientModelResourcesRequest) GetRequiresApproval added in v1.2.2

func (o *MessageDataRequestCTAClientModelResourcesRequest) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value

func (*MessageDataRequestCTAClientModelResourcesRequest) GetRequiresApprovalOk added in v1.2.2

func (o *MessageDataRequestCTAClientModelResourcesRequest) GetRequiresApprovalOk() (*bool, bool)

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

func (*MessageDataRequestCTAClientModelResourcesRequest) GetValidRequest added in v1.3.0

GetValidRequest returns the ValidRequest field value

func (*MessageDataRequestCTAClientModelResourcesRequest) GetValidRequestOk added in v1.3.0

func (o *MessageDataRequestCTAClientModelResourcesRequest) GetValidRequestOk() (*bool, bool)

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

func (MessageDataRequestCTAClientModelResourcesRequest) MarshalJSON added in v1.2.2

func (*MessageDataRequestCTAClientModelResourcesRequest) SetEntitlements added in v1.2.2

SetEntitlements sets field value

func (*MessageDataRequestCTAClientModelResourcesRequest) SetJustification added in v1.2.2

SetJustification sets field value

func (*MessageDataRequestCTAClientModelResourcesRequest) SetRequiresApproval added in v1.2.2

func (o *MessageDataRequestCTAClientModelResourcesRequest) SetRequiresApproval(v bool)

SetRequiresApproval sets field value

func (*MessageDataRequestCTAClientModelResourcesRequest) SetValidRequest added in v1.3.0

SetValidRequest sets field value

func (MessageDataRequestCTAClientModelResourcesRequest) ToMap added in v1.2.2

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

func (*MessageDataRequestCTAClientModelResourcesRequest) UnmarshalJSON added in v1.2.2

func (o *MessageDataRequestCTAClientModelResourcesRequest) UnmarshalJSON(bytes []byte) (err error)

type MessageDataRequestPastRequestsClientModel added in v1.2.2

type MessageDataRequestPastRequestsClientModel struct {
	Entitlements     []AccessRequestClientModel `json:"entitlements"`
	Justification    string                     `json:"justification"`
	RequiresApproval bool                       `json:"requires_approval"`
	ValidRequest     bool                       `json:"valid_request"`
}

MessageDataRequestPastRequestsClientModel struct for MessageDataRequestPastRequestsClientModel

func NewMessageDataRequestPastRequestsClientModel added in v1.2.2

func NewMessageDataRequestPastRequestsClientModel(entitlements []AccessRequestClientModel, justification string, requiresApproval bool, validRequest bool) *MessageDataRequestPastRequestsClientModel

NewMessageDataRequestPastRequestsClientModel instantiates a new MessageDataRequestPastRequestsClientModel 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 NewMessageDataRequestPastRequestsClientModelWithDefaults added in v1.2.2

func NewMessageDataRequestPastRequestsClientModelWithDefaults() *MessageDataRequestPastRequestsClientModel

NewMessageDataRequestPastRequestsClientModelWithDefaults instantiates a new MessageDataRequestPastRequestsClientModel 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 (*MessageDataRequestPastRequestsClientModel) GetEntitlements added in v1.2.2

GetEntitlements returns the Entitlements field value

func (*MessageDataRequestPastRequestsClientModel) GetEntitlementsOk added in v1.2.2

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

func (*MessageDataRequestPastRequestsClientModel) GetJustification added in v1.2.2

func (o *MessageDataRequestPastRequestsClientModel) GetJustification() string

GetJustification returns the Justification field value

func (*MessageDataRequestPastRequestsClientModel) GetJustificationOk added in v1.2.2

func (o *MessageDataRequestPastRequestsClientModel) GetJustificationOk() (*string, bool)

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

func (*MessageDataRequestPastRequestsClientModel) GetRequiresApproval added in v1.2.2

func (o *MessageDataRequestPastRequestsClientModel) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value

func (*MessageDataRequestPastRequestsClientModel) GetRequiresApprovalOk added in v1.2.2

func (o *MessageDataRequestPastRequestsClientModel) GetRequiresApprovalOk() (*bool, bool)

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

func (*MessageDataRequestPastRequestsClientModel) GetValidRequest added in v1.3.0

func (o *MessageDataRequestPastRequestsClientModel) GetValidRequest() bool

GetValidRequest returns the ValidRequest field value

func (*MessageDataRequestPastRequestsClientModel) GetValidRequestOk added in v1.3.0

func (o *MessageDataRequestPastRequestsClientModel) GetValidRequestOk() (*bool, bool)

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

func (MessageDataRequestPastRequestsClientModel) MarshalJSON added in v1.2.2

func (*MessageDataRequestPastRequestsClientModel) SetEntitlements added in v1.2.2

SetEntitlements sets field value

func (*MessageDataRequestPastRequestsClientModel) SetJustification added in v1.2.2

func (o *MessageDataRequestPastRequestsClientModel) SetJustification(v string)

SetJustification sets field value

func (*MessageDataRequestPastRequestsClientModel) SetRequiresApproval added in v1.2.2

func (o *MessageDataRequestPastRequestsClientModel) SetRequiresApproval(v bool)

SetRequiresApproval sets field value

func (*MessageDataRequestPastRequestsClientModel) SetValidRequest added in v1.3.0

func (o *MessageDataRequestPastRequestsClientModel) SetValidRequest(v bool)

SetValidRequest sets field value

func (MessageDataRequestPastRequestsClientModel) ToMap added in v1.2.2

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

func (*MessageDataRequestPastRequestsClientModel) UnmarshalJSON added in v1.2.2

func (o *MessageDataRequestPastRequestsClientModel) UnmarshalJSON(bytes []byte) (err error)

type MessageDataRequestResourcesClientModel added in v1.2.2

type MessageDataRequestResourcesClientModel struct {
	Entitlements     []AccessUnitClientModel `json:"entitlements"`
	Justification    string                  `json:"justification"`
	RequiresApproval bool                    `json:"requires_approval"`
	ValidRequest     bool                    `json:"valid_request"`
}

MessageDataRequestResourcesClientModel struct for MessageDataRequestResourcesClientModel

func NewMessageDataRequestResourcesClientModel added in v1.2.2

func NewMessageDataRequestResourcesClientModel(entitlements []AccessUnitClientModel, justification string, requiresApproval bool, validRequest bool) *MessageDataRequestResourcesClientModel

NewMessageDataRequestResourcesClientModel instantiates a new MessageDataRequestResourcesClientModel 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 NewMessageDataRequestResourcesClientModelWithDefaults added in v1.2.2

func NewMessageDataRequestResourcesClientModelWithDefaults() *MessageDataRequestResourcesClientModel

NewMessageDataRequestResourcesClientModelWithDefaults instantiates a new MessageDataRequestResourcesClientModel 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 (*MessageDataRequestResourcesClientModel) GetEntitlements added in v1.2.2

GetEntitlements returns the Entitlements field value

func (*MessageDataRequestResourcesClientModel) GetEntitlementsOk added in v1.2.2

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

func (*MessageDataRequestResourcesClientModel) GetJustification added in v1.2.2

func (o *MessageDataRequestResourcesClientModel) GetJustification() string

GetJustification returns the Justification field value

func (*MessageDataRequestResourcesClientModel) GetJustificationOk added in v1.2.2

func (o *MessageDataRequestResourcesClientModel) GetJustificationOk() (*string, bool)

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

func (*MessageDataRequestResourcesClientModel) GetRequiresApproval added in v1.2.2

func (o *MessageDataRequestResourcesClientModel) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value

func (*MessageDataRequestResourcesClientModel) GetRequiresApprovalOk added in v1.2.2

func (o *MessageDataRequestResourcesClientModel) GetRequiresApprovalOk() (*bool, bool)

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

func (*MessageDataRequestResourcesClientModel) GetValidRequest added in v1.3.0

func (o *MessageDataRequestResourcesClientModel) GetValidRequest() bool

GetValidRequest returns the ValidRequest field value

func (*MessageDataRequestResourcesClientModel) GetValidRequestOk added in v1.3.0

func (o *MessageDataRequestResourcesClientModel) GetValidRequestOk() (*bool, bool)

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

func (MessageDataRequestResourcesClientModel) MarshalJSON added in v1.2.2

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

func (*MessageDataRequestResourcesClientModel) SetEntitlements added in v1.2.2

SetEntitlements sets field value

func (*MessageDataRequestResourcesClientModel) SetJustification added in v1.2.2

func (o *MessageDataRequestResourcesClientModel) SetJustification(v string)

SetJustification sets field value

func (*MessageDataRequestResourcesClientModel) SetRequiresApproval added in v1.2.2

func (o *MessageDataRequestResourcesClientModel) SetRequiresApproval(v bool)

SetRequiresApproval sets field value

func (*MessageDataRequestResourcesClientModel) SetValidRequest added in v1.3.0

func (o *MessageDataRequestResourcesClientModel) SetValidRequest(v bool)

SetValidRequest sets field value

func (MessageDataRequestResourcesClientModel) ToMap added in v1.2.2

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

func (*MessageDataRequestResourcesClientModel) UnmarshalJSON added in v1.2.2

func (o *MessageDataRequestResourcesClientModel) UnmarshalJSON(bytes []byte) (err error)

type MessageDataSearchBundlesClientModel added in v1.2.2

type MessageDataSearchBundlesClientModel struct {
	Total   int32               `json:"total"`
	HasMore bool                `json:"has_more"`
	Data    []BundleClientModel `json:"data"`
}

MessageDataSearchBundlesClientModel struct for MessageDataSearchBundlesClientModel

func NewMessageDataSearchBundlesClientModel added in v1.2.2

func NewMessageDataSearchBundlesClientModel(total int32, hasMore bool, data []BundleClientModel) *MessageDataSearchBundlesClientModel

NewMessageDataSearchBundlesClientModel instantiates a new MessageDataSearchBundlesClientModel 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 NewMessageDataSearchBundlesClientModelWithDefaults added in v1.2.2

func NewMessageDataSearchBundlesClientModelWithDefaults() *MessageDataSearchBundlesClientModel

NewMessageDataSearchBundlesClientModelWithDefaults instantiates a new MessageDataSearchBundlesClientModel 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 (*MessageDataSearchBundlesClientModel) GetData added in v1.2.2

GetData returns the Data field value

func (*MessageDataSearchBundlesClientModel) GetDataOk added in v1.2.2

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

func (*MessageDataSearchBundlesClientModel) GetHasMore added in v1.2.2

func (o *MessageDataSearchBundlesClientModel) GetHasMore() bool

GetHasMore returns the HasMore field value

func (*MessageDataSearchBundlesClientModel) GetHasMoreOk added in v1.2.2

func (o *MessageDataSearchBundlesClientModel) GetHasMoreOk() (*bool, bool)

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

func (*MessageDataSearchBundlesClientModel) GetTotal added in v1.2.2

GetTotal returns the Total field value

func (*MessageDataSearchBundlesClientModel) GetTotalOk added in v1.2.2

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

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

func (MessageDataSearchBundlesClientModel) MarshalJSON added in v1.2.2

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

func (*MessageDataSearchBundlesClientModel) SetData added in v1.2.2

SetData sets field value

func (*MessageDataSearchBundlesClientModel) SetHasMore added in v1.2.2

func (o *MessageDataSearchBundlesClientModel) SetHasMore(v bool)

SetHasMore sets field value

func (*MessageDataSearchBundlesClientModel) SetTotal added in v1.2.2

SetTotal sets field value

func (MessageDataSearchBundlesClientModel) ToMap added in v1.2.2

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

func (*MessageDataSearchBundlesClientModel) UnmarshalJSON added in v1.2.2

func (o *MessageDataSearchBundlesClientModel) UnmarshalJSON(bytes []byte) (err error)

type MessageDataSearchCTAClientModel added in v1.2.2

type MessageDataSearchCTAClientModel struct {
	Resources    NullableMessageDataSearchCTAClientModelResources    `json:"resources,omitempty"`
	Bundles      NullableMessageDataSearchCTAClientModelBundles      `json:"bundles,omitempty"`
	PastRequests NullableMessageDataSearchCTAClientModelPastRequests `json:"past_requests,omitempty"`
}

MessageDataSearchCTAClientModel struct for MessageDataSearchCTAClientModel

func NewMessageDataSearchCTAClientModel added in v1.2.2

func NewMessageDataSearchCTAClientModel() *MessageDataSearchCTAClientModel

NewMessageDataSearchCTAClientModel instantiates a new MessageDataSearchCTAClientModel 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 NewMessageDataSearchCTAClientModelWithDefaults added in v1.2.2

func NewMessageDataSearchCTAClientModelWithDefaults() *MessageDataSearchCTAClientModel

NewMessageDataSearchCTAClientModelWithDefaults instantiates a new MessageDataSearchCTAClientModel 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 (*MessageDataSearchCTAClientModel) GetBundles added in v1.2.2

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

func (*MessageDataSearchCTAClientModel) GetBundlesOk added in v1.2.2

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

func (*MessageDataSearchCTAClientModel) GetPastRequests added in v1.2.2

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

func (*MessageDataSearchCTAClientModel) GetPastRequestsOk added in v1.2.2

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

func (*MessageDataSearchCTAClientModel) GetResources added in v1.2.2

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

func (*MessageDataSearchCTAClientModel) GetResourcesOk added in v1.2.2

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

func (*MessageDataSearchCTAClientModel) HasBundles added in v1.2.2

func (o *MessageDataSearchCTAClientModel) HasBundles() bool

HasBundles returns a boolean if a field has been set.

func (*MessageDataSearchCTAClientModel) HasPastRequests added in v1.2.2

func (o *MessageDataSearchCTAClientModel) HasPastRequests() bool

HasPastRequests returns a boolean if a field has been set.

func (*MessageDataSearchCTAClientModel) HasResources added in v1.2.2

func (o *MessageDataSearchCTAClientModel) HasResources() bool

HasResources returns a boolean if a field has been set.

func (MessageDataSearchCTAClientModel) MarshalJSON added in v1.2.2

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

func (*MessageDataSearchCTAClientModel) SetBundles added in v1.2.2

SetBundles gets a reference to the given NullableMessageDataSearchCTAClientModelBundles and assigns it to the Bundles field.

func (*MessageDataSearchCTAClientModel) SetBundlesNil added in v1.2.2

func (o *MessageDataSearchCTAClientModel) SetBundlesNil()

SetBundlesNil sets the value for Bundles to be an explicit nil

func (*MessageDataSearchCTAClientModel) SetPastRequests added in v1.2.2

SetPastRequests gets a reference to the given NullableMessageDataSearchCTAClientModelPastRequests and assigns it to the PastRequests field.

func (*MessageDataSearchCTAClientModel) SetPastRequestsNil added in v1.2.2

func (o *MessageDataSearchCTAClientModel) SetPastRequestsNil()

SetPastRequestsNil sets the value for PastRequests to be an explicit nil

func (*MessageDataSearchCTAClientModel) SetResources added in v1.2.2

SetResources gets a reference to the given NullableMessageDataSearchCTAClientModelResources and assigns it to the Resources field.

func (*MessageDataSearchCTAClientModel) SetResourcesNil added in v1.2.2

func (o *MessageDataSearchCTAClientModel) SetResourcesNil()

SetResourcesNil sets the value for Resources to be an explicit nil

func (MessageDataSearchCTAClientModel) ToMap added in v1.2.2

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

func (*MessageDataSearchCTAClientModel) UnsetBundles added in v1.2.2

func (o *MessageDataSearchCTAClientModel) UnsetBundles()

UnsetBundles ensures that no value is present for Bundles, not even an explicit nil

func (*MessageDataSearchCTAClientModel) UnsetPastRequests added in v1.2.2

func (o *MessageDataSearchCTAClientModel) UnsetPastRequests()

UnsetPastRequests ensures that no value is present for PastRequests, not even an explicit nil

func (*MessageDataSearchCTAClientModel) UnsetResources added in v1.2.2

func (o *MessageDataSearchCTAClientModel) UnsetResources()

UnsetResources ensures that no value is present for Resources, not even an explicit nil

type MessageDataSearchCTAClientModelBundles added in v1.2.2

type MessageDataSearchCTAClientModelBundles struct {
	Total   int32               `json:"total"`
	HasMore bool                `json:"has_more"`
	Data    []BundleClientModel `json:"data"`
}

MessageDataSearchCTAClientModelBundles struct for MessageDataSearchCTAClientModelBundles

func NewMessageDataSearchCTAClientModelBundles added in v1.2.2

func NewMessageDataSearchCTAClientModelBundles(total int32, hasMore bool, data []BundleClientModel) *MessageDataSearchCTAClientModelBundles

NewMessageDataSearchCTAClientModelBundles instantiates a new MessageDataSearchCTAClientModelBundles 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 NewMessageDataSearchCTAClientModelBundlesWithDefaults added in v1.2.2

func NewMessageDataSearchCTAClientModelBundlesWithDefaults() *MessageDataSearchCTAClientModelBundles

NewMessageDataSearchCTAClientModelBundlesWithDefaults instantiates a new MessageDataSearchCTAClientModelBundles 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 (*MessageDataSearchCTAClientModelBundles) GetData added in v1.2.2

GetData returns the Data field value

func (*MessageDataSearchCTAClientModelBundles) GetDataOk added in v1.2.2

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

func (*MessageDataSearchCTAClientModelBundles) GetHasMore added in v1.2.2

GetHasMore returns the HasMore field value

func (*MessageDataSearchCTAClientModelBundles) GetHasMoreOk added in v1.2.2

func (o *MessageDataSearchCTAClientModelBundles) GetHasMoreOk() (*bool, bool)

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

func (*MessageDataSearchCTAClientModelBundles) GetTotal added in v1.2.2

GetTotal returns the Total field value

func (*MessageDataSearchCTAClientModelBundles) GetTotalOk added in v1.2.2

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

func (MessageDataSearchCTAClientModelBundles) MarshalJSON added in v1.2.2

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

func (*MessageDataSearchCTAClientModelBundles) SetData added in v1.2.2

SetData sets field value

func (*MessageDataSearchCTAClientModelBundles) SetHasMore added in v1.2.2

SetHasMore sets field value

func (*MessageDataSearchCTAClientModelBundles) SetTotal added in v1.2.2

SetTotal sets field value

func (MessageDataSearchCTAClientModelBundles) ToMap added in v1.2.2

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

func (*MessageDataSearchCTAClientModelBundles) UnmarshalJSON added in v1.2.2

func (o *MessageDataSearchCTAClientModelBundles) UnmarshalJSON(bytes []byte) (err error)

type MessageDataSearchCTAClientModelPastRequests added in v1.2.2

type MessageDataSearchCTAClientModelPastRequests struct {
	Total   int32                      `json:"total"`
	HasMore bool                       `json:"has_more"`
	Data    []AccessRequestClientModel `json:"data"`
}

MessageDataSearchCTAClientModelPastRequests struct for MessageDataSearchCTAClientModelPastRequests

func NewMessageDataSearchCTAClientModelPastRequests added in v1.2.2

func NewMessageDataSearchCTAClientModelPastRequests(total int32, hasMore bool, data []AccessRequestClientModel) *MessageDataSearchCTAClientModelPastRequests

NewMessageDataSearchCTAClientModelPastRequests instantiates a new MessageDataSearchCTAClientModelPastRequests 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 NewMessageDataSearchCTAClientModelPastRequestsWithDefaults added in v1.2.2

func NewMessageDataSearchCTAClientModelPastRequestsWithDefaults() *MessageDataSearchCTAClientModelPastRequests

NewMessageDataSearchCTAClientModelPastRequestsWithDefaults instantiates a new MessageDataSearchCTAClientModelPastRequests 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 (*MessageDataSearchCTAClientModelPastRequests) GetData added in v1.2.2

GetData returns the Data field value

func (*MessageDataSearchCTAClientModelPastRequests) GetDataOk added in v1.2.2

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

func (*MessageDataSearchCTAClientModelPastRequests) GetHasMore added in v1.2.2

GetHasMore returns the HasMore field value

func (*MessageDataSearchCTAClientModelPastRequests) GetHasMoreOk added in v1.2.2

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

func (*MessageDataSearchCTAClientModelPastRequests) GetTotal added in v1.2.2

GetTotal returns the Total field value

func (*MessageDataSearchCTAClientModelPastRequests) GetTotalOk added in v1.2.2

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

func (MessageDataSearchCTAClientModelPastRequests) MarshalJSON added in v1.2.2

func (*MessageDataSearchCTAClientModelPastRequests) SetData added in v1.2.2

SetData sets field value

func (*MessageDataSearchCTAClientModelPastRequests) SetHasMore added in v1.2.2

SetHasMore sets field value

func (*MessageDataSearchCTAClientModelPastRequests) SetTotal added in v1.2.2

SetTotal sets field value

func (MessageDataSearchCTAClientModelPastRequests) ToMap added in v1.2.2

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

func (*MessageDataSearchCTAClientModelPastRequests) UnmarshalJSON added in v1.2.2

func (o *MessageDataSearchCTAClientModelPastRequests) UnmarshalJSON(bytes []byte) (err error)

type MessageDataSearchCTAClientModelResources added in v1.2.2

type MessageDataSearchCTAClientModelResources struct {
	Total   int32                                        `json:"total"`
	HasMore bool                                         `json:"has_more"`
	Data    []ResourceClientModel                        `json:"data"`
	Filters MessageDataSearchResourcesFiltersClientModel `json:"filters"`
}

MessageDataSearchCTAClientModelResources struct for MessageDataSearchCTAClientModelResources

func NewMessageDataSearchCTAClientModelResources added in v1.2.2

func NewMessageDataSearchCTAClientModelResources(total int32, hasMore bool, data []ResourceClientModel, filters MessageDataSearchResourcesFiltersClientModel) *MessageDataSearchCTAClientModelResources

NewMessageDataSearchCTAClientModelResources instantiates a new MessageDataSearchCTAClientModelResources 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 NewMessageDataSearchCTAClientModelResourcesWithDefaults added in v1.2.2

func NewMessageDataSearchCTAClientModelResourcesWithDefaults() *MessageDataSearchCTAClientModelResources

NewMessageDataSearchCTAClientModelResourcesWithDefaults instantiates a new MessageDataSearchCTAClientModelResources 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 (*MessageDataSearchCTAClientModelResources) GetData added in v1.2.2

GetData returns the Data field value

func (*MessageDataSearchCTAClientModelResources) GetDataOk added in v1.2.2

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

func (*MessageDataSearchCTAClientModelResources) GetFilters added in v1.3.0

GetFilters returns the Filters field value

func (*MessageDataSearchCTAClientModelResources) GetFiltersOk added in v1.3.0

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

func (*MessageDataSearchCTAClientModelResources) GetHasMore added in v1.2.2

GetHasMore returns the HasMore field value

func (*MessageDataSearchCTAClientModelResources) GetHasMoreOk added in v1.2.2

func (o *MessageDataSearchCTAClientModelResources) GetHasMoreOk() (*bool, bool)

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

func (*MessageDataSearchCTAClientModelResources) GetTotal added in v1.2.2

GetTotal returns the Total field value

func (*MessageDataSearchCTAClientModelResources) GetTotalOk added in v1.2.2

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

func (MessageDataSearchCTAClientModelResources) MarshalJSON added in v1.2.2

func (*MessageDataSearchCTAClientModelResources) SetData added in v1.2.2

SetData sets field value

func (*MessageDataSearchCTAClientModelResources) SetFilters added in v1.3.0

SetFilters sets field value

func (*MessageDataSearchCTAClientModelResources) SetHasMore added in v1.2.2

SetHasMore sets field value

func (*MessageDataSearchCTAClientModelResources) SetTotal added in v1.2.2

SetTotal sets field value

func (MessageDataSearchCTAClientModelResources) ToMap added in v1.2.2

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

func (*MessageDataSearchCTAClientModelResources) UnmarshalJSON added in v1.2.2

func (o *MessageDataSearchCTAClientModelResources) UnmarshalJSON(bytes []byte) (err error)

type MessageDataSearchPastRequestsClientModel added in v1.2.2

type MessageDataSearchPastRequestsClientModel struct {
	Total   int32                      `json:"total"`
	HasMore bool                       `json:"has_more"`
	Data    []AccessRequestClientModel `json:"data"`
}

MessageDataSearchPastRequestsClientModel struct for MessageDataSearchPastRequestsClientModel

func NewMessageDataSearchPastRequestsClientModel added in v1.2.2

func NewMessageDataSearchPastRequestsClientModel(total int32, hasMore bool, data []AccessRequestClientModel) *MessageDataSearchPastRequestsClientModel

NewMessageDataSearchPastRequestsClientModel instantiates a new MessageDataSearchPastRequestsClientModel 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 NewMessageDataSearchPastRequestsClientModelWithDefaults added in v1.2.2

func NewMessageDataSearchPastRequestsClientModelWithDefaults() *MessageDataSearchPastRequestsClientModel

NewMessageDataSearchPastRequestsClientModelWithDefaults instantiates a new MessageDataSearchPastRequestsClientModel 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 (*MessageDataSearchPastRequestsClientModel) GetData added in v1.2.2

GetData returns the Data field value

func (*MessageDataSearchPastRequestsClientModel) GetDataOk added in v1.2.2

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

func (*MessageDataSearchPastRequestsClientModel) GetHasMore added in v1.2.2

GetHasMore returns the HasMore field value

func (*MessageDataSearchPastRequestsClientModel) GetHasMoreOk added in v1.2.2

func (o *MessageDataSearchPastRequestsClientModel) GetHasMoreOk() (*bool, bool)

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

func (*MessageDataSearchPastRequestsClientModel) GetTotal added in v1.2.2

GetTotal returns the Total field value

func (*MessageDataSearchPastRequestsClientModel) GetTotalOk added in v1.2.2

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

func (MessageDataSearchPastRequestsClientModel) MarshalJSON added in v1.2.2

func (*MessageDataSearchPastRequestsClientModel) SetData added in v1.2.2

SetData sets field value

func (*MessageDataSearchPastRequestsClientModel) SetHasMore added in v1.2.2

SetHasMore sets field value

func (*MessageDataSearchPastRequestsClientModel) SetTotal added in v1.2.2

SetTotal sets field value

func (MessageDataSearchPastRequestsClientModel) ToMap added in v1.2.2

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

func (*MessageDataSearchPastRequestsClientModel) UnmarshalJSON added in v1.2.2

func (o *MessageDataSearchPastRequestsClientModel) UnmarshalJSON(bytes []byte) (err error)

type MessageDataSearchResourcesClientModel added in v1.2.2

type MessageDataSearchResourcesClientModel struct {
	Total   int32                                        `json:"total"`
	HasMore bool                                         `json:"has_more"`
	Data    []ResourceClientModel                        `json:"data"`
	Filters MessageDataSearchResourcesFiltersClientModel `json:"filters"`
}

MessageDataSearchResourcesClientModel struct for MessageDataSearchResourcesClientModel

func NewMessageDataSearchResourcesClientModel added in v1.2.2

func NewMessageDataSearchResourcesClientModel(total int32, hasMore bool, data []ResourceClientModel, filters MessageDataSearchResourcesFiltersClientModel) *MessageDataSearchResourcesClientModel

NewMessageDataSearchResourcesClientModel instantiates a new MessageDataSearchResourcesClientModel 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 NewMessageDataSearchResourcesClientModelWithDefaults added in v1.2.2

func NewMessageDataSearchResourcesClientModelWithDefaults() *MessageDataSearchResourcesClientModel

NewMessageDataSearchResourcesClientModelWithDefaults instantiates a new MessageDataSearchResourcesClientModel 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 (*MessageDataSearchResourcesClientModel) GetData added in v1.2.2

GetData returns the Data field value

func (*MessageDataSearchResourcesClientModel) GetDataOk added in v1.2.2

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

func (*MessageDataSearchResourcesClientModel) GetFilters added in v1.3.0

GetFilters returns the Filters field value

func (*MessageDataSearchResourcesClientModel) GetFiltersOk added in v1.3.0

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

func (*MessageDataSearchResourcesClientModel) GetHasMore added in v1.2.2

GetHasMore returns the HasMore field value

func (*MessageDataSearchResourcesClientModel) GetHasMoreOk added in v1.2.2

func (o *MessageDataSearchResourcesClientModel) GetHasMoreOk() (*bool, bool)

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

func (*MessageDataSearchResourcesClientModel) GetTotal added in v1.2.2

GetTotal returns the Total field value

func (*MessageDataSearchResourcesClientModel) GetTotalOk added in v1.2.2

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

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

func (MessageDataSearchResourcesClientModel) MarshalJSON added in v1.2.2

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

func (*MessageDataSearchResourcesClientModel) SetData added in v1.2.2

SetData sets field value

func (*MessageDataSearchResourcesClientModel) SetFilters added in v1.3.0

SetFilters sets field value

func (*MessageDataSearchResourcesClientModel) SetHasMore added in v1.2.2

SetHasMore sets field value

func (*MessageDataSearchResourcesClientModel) SetTotal added in v1.2.2

SetTotal sets field value

func (MessageDataSearchResourcesClientModel) ToMap added in v1.2.2

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

func (*MessageDataSearchResourcesClientModel) UnmarshalJSON added in v1.2.2

func (o *MessageDataSearchResourcesClientModel) UnmarshalJSON(bytes []byte) (err error)

type MessageDataSearchResourcesFiltersClientModel added in v1.3.0

type MessageDataSearchResourcesFiltersClientModel struct {
	Search        NullableString `json:"search,omitempty"`
	ResourceTypes []string       `json:"resource_types,omitempty"`
}

MessageDataSearchResourcesFiltersClientModel struct for MessageDataSearchResourcesFiltersClientModel

func NewMessageDataSearchResourcesFiltersClientModel added in v1.3.0

func NewMessageDataSearchResourcesFiltersClientModel() *MessageDataSearchResourcesFiltersClientModel

NewMessageDataSearchResourcesFiltersClientModel instantiates a new MessageDataSearchResourcesFiltersClientModel 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 NewMessageDataSearchResourcesFiltersClientModelWithDefaults added in v1.3.0

func NewMessageDataSearchResourcesFiltersClientModelWithDefaults() *MessageDataSearchResourcesFiltersClientModel

NewMessageDataSearchResourcesFiltersClientModelWithDefaults instantiates a new MessageDataSearchResourcesFiltersClientModel 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 (*MessageDataSearchResourcesFiltersClientModel) GetResourceTypes added in v1.3.0

func (o *MessageDataSearchResourcesFiltersClientModel) GetResourceTypes() []string

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

func (*MessageDataSearchResourcesFiltersClientModel) GetResourceTypesOk added in v1.3.0

func (o *MessageDataSearchResourcesFiltersClientModel) GetResourceTypesOk() ([]string, bool)

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

func (*MessageDataSearchResourcesFiltersClientModel) GetSearch added in v1.3.0

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

func (*MessageDataSearchResourcesFiltersClientModel) GetSearchOk added in v1.3.0

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

func (*MessageDataSearchResourcesFiltersClientModel) HasResourceTypes added in v1.3.0

func (o *MessageDataSearchResourcesFiltersClientModel) HasResourceTypes() bool

HasResourceTypes returns a boolean if a field has been set.

func (*MessageDataSearchResourcesFiltersClientModel) HasSearch added in v1.3.0

HasSearch returns a boolean if a field has been set.

func (MessageDataSearchResourcesFiltersClientModel) MarshalJSON added in v1.3.0

func (*MessageDataSearchResourcesFiltersClientModel) SetResourceTypes added in v1.3.0

func (o *MessageDataSearchResourcesFiltersClientModel) SetResourceTypes(v []string)

SetResourceTypes gets a reference to the given []string and assigns it to the ResourceTypes field.

func (*MessageDataSearchResourcesFiltersClientModel) SetSearch added in v1.3.0

SetSearch gets a reference to the given NullableString and assigns it to the Search field.

func (*MessageDataSearchResourcesFiltersClientModel) SetSearchNil added in v1.3.0

SetSearchNil sets the value for Search to be an explicit nil

func (MessageDataSearchResourcesFiltersClientModel) ToMap added in v1.3.0

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

func (*MessageDataSearchResourcesFiltersClientModel) UnsetSearch added in v1.3.0

UnsetSearch ensures that no value is present for Search, not even an explicit nil

type MessageResponse

type MessageResponse struct {
	Message string `json:"message"`
}

MessageResponse struct for MessageResponse

func NewMessageResponse

func NewMessageResponse(message string) *MessageResponse

NewMessageResponse instantiates a new MessageResponse 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 NewMessageResponseWithDefaults

func NewMessageResponseWithDefaults() *MessageResponse

NewMessageResponseWithDefaults instantiates a new MessageResponse 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 (*MessageResponse) GetMessage

func (o *MessageResponse) GetMessage() string

GetMessage returns the Message field value

func (*MessageResponse) GetMessageOk

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

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

func (MessageResponse) MarshalJSON

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

func (*MessageResponse) SetMessage

func (o *MessageResponse) SetMessage(v string)

SetMessage sets field value

func (MessageResponse) ToMap

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

func (*MessageResponse) UnmarshalJSON

func (o *MessageResponse) UnmarshalJSON(bytes []byte) (err error)

type NotificationMcpRequest added in v1.3.0

type NotificationMcpRequest struct {
	Jsonrpc string                 `json:"jsonrpc"`
	Method  string                 `json:"method"`
	Params  map[string]interface{} `json:"params,omitempty"`
}

NotificationMcpRequest struct for NotificationMcpRequest

func NewNotificationMcpRequest added in v1.3.0

func NewNotificationMcpRequest(jsonrpc string, method string) *NotificationMcpRequest

NewNotificationMcpRequest instantiates a new NotificationMcpRequest 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 NewNotificationMcpRequestWithDefaults added in v1.3.0

func NewNotificationMcpRequestWithDefaults() *NotificationMcpRequest

NewNotificationMcpRequestWithDefaults instantiates a new NotificationMcpRequest 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 (*NotificationMcpRequest) GetJsonrpc added in v1.3.0

func (o *NotificationMcpRequest) GetJsonrpc() string

GetJsonrpc returns the Jsonrpc field value

func (*NotificationMcpRequest) GetJsonrpcOk added in v1.3.0

func (o *NotificationMcpRequest) GetJsonrpcOk() (*string, bool)

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

func (*NotificationMcpRequest) GetMethod added in v1.3.0

func (o *NotificationMcpRequest) GetMethod() string

GetMethod returns the Method field value

func (*NotificationMcpRequest) GetMethodOk added in v1.3.0

func (o *NotificationMcpRequest) GetMethodOk() (*string, bool)

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

func (*NotificationMcpRequest) GetParams added in v1.3.0

func (o *NotificationMcpRequest) GetParams() map[string]interface{}

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

func (*NotificationMcpRequest) GetParamsOk added in v1.3.0

func (o *NotificationMcpRequest) GetParamsOk() (map[string]interface{}, bool)

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

func (*NotificationMcpRequest) HasParams added in v1.3.0

func (o *NotificationMcpRequest) HasParams() bool

HasParams returns a boolean if a field has been set.

func (NotificationMcpRequest) MarshalJSON added in v1.3.0

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

func (*NotificationMcpRequest) SetJsonrpc added in v1.3.0

func (o *NotificationMcpRequest) SetJsonrpc(v string)

SetJsonrpc sets field value

func (*NotificationMcpRequest) SetMethod added in v1.3.0

func (o *NotificationMcpRequest) SetMethod(v string)

SetMethod sets field value

func (*NotificationMcpRequest) SetParams added in v1.3.0

func (o *NotificationMcpRequest) SetParams(v map[string]interface{})

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

func (NotificationMcpRequest) ToMap added in v1.3.0

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

func (*NotificationMcpRequest) UnmarshalJSON added in v1.3.0

func (o *NotificationMcpRequest) UnmarshalJSON(bytes []byte) (err error)

type NullableAccessDetailsClientModel

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

func (NullableAccessDetailsClientModel) Get

func (NullableAccessDetailsClientModel) IsSet

func (NullableAccessDetailsClientModel) MarshalJSON

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

func (*NullableAccessDetailsClientModel) Set

func (*NullableAccessDetailsClientModel) UnmarshalJSON

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

func (*NullableAccessDetailsClientModel) Unset

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

func (NullableAccessDetailsClientModelLink) Get

func (NullableAccessDetailsClientModelLink) IsSet

func (NullableAccessDetailsClientModelLink) MarshalJSON

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

func (*NullableAccessDetailsClientModelLink) Set

func (*NullableAccessDetailsClientModelLink) UnmarshalJSON

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

func (*NullableAccessDetailsClientModelLink) Unset

type NullableAccessGroupClientModel

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

func (NullableAccessGroupClientModel) Get

func (NullableAccessGroupClientModel) IsSet

func (NullableAccessGroupClientModel) MarshalJSON

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

func (*NullableAccessGroupClientModel) Set

func (*NullableAccessGroupClientModel) UnmarshalJSON

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

func (*NullableAccessGroupClientModel) Unset

func (v *NullableAccessGroupClientModel) Unset()

type NullableAccessGroupStatus

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

func NewNullableAccessGroupStatus

func NewNullableAccessGroupStatus(val *AccessGroupStatus) *NullableAccessGroupStatus

func (NullableAccessGroupStatus) Get

func (NullableAccessGroupStatus) IsSet

func (v NullableAccessGroupStatus) IsSet() bool

func (NullableAccessGroupStatus) MarshalJSON

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

func (*NullableAccessGroupStatus) Set

func (*NullableAccessGroupStatus) UnmarshalJSON

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

func (*NullableAccessGroupStatus) Unset

func (v *NullableAccessGroupStatus) Unset()

type NullableAccessGroupStatusClientModel

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

func (NullableAccessGroupStatusClientModel) Get

func (NullableAccessGroupStatusClientModel) IsSet

func (NullableAccessGroupStatusClientModel) MarshalJSON

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

func (*NullableAccessGroupStatusClientModel) Set

func (*NullableAccessGroupStatusClientModel) UnmarshalJSON

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

func (*NullableAccessGroupStatusClientModel) Unset

type NullableAccessRequestClientModel

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

func (NullableAccessRequestClientModel) Get

func (NullableAccessRequestClientModel) IsSet

func (NullableAccessRequestClientModel) MarshalJSON

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

func (*NullableAccessRequestClientModel) Set

func (*NullableAccessRequestClientModel) UnmarshalJSON

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

func (*NullableAccessRequestClientModel) Unset

type NullableAccessRequestClientModelBundle

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

func (NullableAccessRequestClientModelBundle) Get

func (NullableAccessRequestClientModelBundle) IsSet

func (NullableAccessRequestClientModelBundle) MarshalJSON

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

func (*NullableAccessRequestClientModelBundle) Set

func (*NullableAccessRequestClientModelBundle) UnmarshalJSON

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

func (*NullableAccessRequestClientModelBundle) Unset

type NullableAccessRequestClientModelChallenge

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

func (NullableAccessRequestClientModelChallenge) Get

func (NullableAccessRequestClientModelChallenge) IsSet

func (NullableAccessRequestClientModelChallenge) MarshalJSON

func (*NullableAccessRequestClientModelChallenge) Set

func (*NullableAccessRequestClientModelChallenge) UnmarshalJSON

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

func (*NullableAccessRequestClientModelChallenge) Unset

type NullableAccessRequestClientModelGrantee added in v1.3.0

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

func NewNullableAccessRequestClientModelGrantee added in v1.3.0

func NewNullableAccessRequestClientModelGrantee(val *AccessRequestClientModelGrantee) *NullableAccessRequestClientModelGrantee

func (NullableAccessRequestClientModelGrantee) Get added in v1.3.0

func (NullableAccessRequestClientModelGrantee) IsSet added in v1.3.0

func (NullableAccessRequestClientModelGrantee) MarshalJSON added in v1.3.0

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

func (*NullableAccessRequestClientModelGrantee) Set added in v1.3.0

func (*NullableAccessRequestClientModelGrantee) UnmarshalJSON added in v1.3.0

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

func (*NullableAccessRequestClientModelGrantee) Unset added in v1.3.0

type NullableAccessRequestSubmittedClientResponse added in v1.0.3

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

func NewNullableAccessRequestSubmittedClientResponse added in v1.0.3

func NewNullableAccessRequestSubmittedClientResponse(val *AccessRequestSubmittedClientResponse) *NullableAccessRequestSubmittedClientResponse

func (NullableAccessRequestSubmittedClientResponse) Get added in v1.0.3

func (NullableAccessRequestSubmittedClientResponse) IsSet added in v1.0.3

func (NullableAccessRequestSubmittedClientResponse) MarshalJSON added in v1.0.3

func (*NullableAccessRequestSubmittedClientResponse) Set added in v1.0.3

func (*NullableAccessRequestSubmittedClientResponse) UnmarshalJSON added in v1.0.3

func (*NullableAccessRequestSubmittedClientResponse) Unset added in v1.0.3

type NullableAccessRequestTemplateClientModel

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

func (NullableAccessRequestTemplateClientModel) Get

func (NullableAccessRequestTemplateClientModel) IsSet

func (NullableAccessRequestTemplateClientModel) MarshalJSON

func (*NullableAccessRequestTemplateClientModel) Set

func (*NullableAccessRequestTemplateClientModel) UnmarshalJSON

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

func (*NullableAccessRequestTemplateClientModel) Unset

type NullableAccessRequestTemplateTypeClientModel

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

func (NullableAccessRequestTemplateTypeClientModel) Get

func (NullableAccessRequestTemplateTypeClientModel) IsSet

func (NullableAccessRequestTemplateTypeClientModel) MarshalJSON

func (*NullableAccessRequestTemplateTypeClientModel) Set

func (*NullableAccessRequestTemplateTypeClientModel) UnmarshalJSON

func (*NullableAccessRequestTemplateTypeClientModel) Unset

type NullableAccessRequestUnitClientModel added in v1.3.0

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

func NewNullableAccessRequestUnitClientModel added in v1.3.0

func NewNullableAccessRequestUnitClientModel(val *AccessRequestUnitClientModel) *NullableAccessRequestUnitClientModel

func (NullableAccessRequestUnitClientModel) Get added in v1.3.0

func (NullableAccessRequestUnitClientModel) IsSet added in v1.3.0

func (NullableAccessRequestUnitClientModel) MarshalJSON added in v1.3.0

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

func (*NullableAccessRequestUnitClientModel) Set added in v1.3.0

func (*NullableAccessRequestUnitClientModel) UnmarshalJSON added in v1.3.0

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

func (*NullableAccessRequestUnitClientModel) Unset added in v1.3.0

type NullableAccessRequestsAffectedByMfa added in v1.2.2

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

func NewNullableAccessRequestsAffectedByMfa added in v1.2.2

func NewNullableAccessRequestsAffectedByMfa(val *AccessRequestsAffectedByMfa) *NullableAccessRequestsAffectedByMfa

func (NullableAccessRequestsAffectedByMfa) Get added in v1.2.2

func (NullableAccessRequestsAffectedByMfa) IsSet added in v1.2.2

func (NullableAccessRequestsAffectedByMfa) MarshalJSON added in v1.2.2

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

func (*NullableAccessRequestsAffectedByMfa) Set added in v1.2.2

func (*NullableAccessRequestsAffectedByMfa) UnmarshalJSON added in v1.2.2

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

func (*NullableAccessRequestsAffectedByMfa) Unset added in v1.2.2

type NullableAccessRequestsScopeModel

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

func (NullableAccessRequestsScopeModel) Get

func (NullableAccessRequestsScopeModel) IsSet

func (NullableAccessRequestsScopeModel) MarshalJSON

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

func (*NullableAccessRequestsScopeModel) Set

func (*NullableAccessRequestsScopeModel) UnmarshalJSON

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

func (*NullableAccessRequestsScopeModel) Unset

type NullableAccessSessionClientModel

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

func (NullableAccessSessionClientModel) Get

func (NullableAccessSessionClientModel) IsSet

func (NullableAccessSessionClientModel) MarshalJSON

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

func (*NullableAccessSessionClientModel) Set

func (*NullableAccessSessionClientModel) UnmarshalJSON

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

func (*NullableAccessSessionClientModel) Unset

type NullableAccessSessionClientModelCredentials

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

func (NullableAccessSessionClientModelCredentials) Get

func (NullableAccessSessionClientModelCredentials) IsSet

func (NullableAccessSessionClientModelCredentials) MarshalJSON

func (*NullableAccessSessionClientModelCredentials) Set

func (*NullableAccessSessionClientModelCredentials) UnmarshalJSON

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

func (*NullableAccessSessionClientModelCredentials) Unset

type NullableAccessSessionDetailsClientModel

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

func (NullableAccessSessionDetailsClientModel) Get

func (NullableAccessSessionDetailsClientModel) IsSet

func (NullableAccessSessionDetailsClientModel) MarshalJSON

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

func (*NullableAccessSessionDetailsClientModel) Set

func (*NullableAccessSessionDetailsClientModel) UnmarshalJSON

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

func (*NullableAccessSessionDetailsClientModel) Unset

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

func (NullableAccessSessionDetailsClientModelLink) Get

func (NullableAccessSessionDetailsClientModelLink) IsSet

func (NullableAccessSessionDetailsClientModelLink) MarshalJSON

func (*NullableAccessSessionDetailsClientModelLink) Set

func (*NullableAccessSessionDetailsClientModelLink) UnmarshalJSON

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

func (*NullableAccessSessionDetailsClientModelLink) Unset

type NullableAccessSessionRequestTemplateClientModel added in v1.0.3

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

func (NullableAccessSessionRequestTemplateClientModel) Get added in v1.0.3

func (NullableAccessSessionRequestTemplateClientModel) IsSet added in v1.0.3

func (NullableAccessSessionRequestTemplateClientModel) MarshalJSON added in v1.0.3

func (*NullableAccessSessionRequestTemplateClientModel) Set added in v1.0.3

func (*NullableAccessSessionRequestTemplateClientModel) UnmarshalJSON added in v1.0.3

func (*NullableAccessSessionRequestTemplateClientModel) Unset added in v1.0.3

type NullableAccessSessionsGroupClientModel

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

func (NullableAccessSessionsGroupClientModel) Get

func (NullableAccessSessionsGroupClientModel) IsSet

func (NullableAccessSessionsGroupClientModel) MarshalJSON

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

func (*NullableAccessSessionsGroupClientModel) Set

func (*NullableAccessSessionsGroupClientModel) UnmarshalJSON

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

func (*NullableAccessSessionsGroupClientModel) Unset

type NullableAccessSessionsGroupClientModelIntegration

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

func (NullableAccessSessionsGroupClientModelIntegration) Get

func (NullableAccessSessionsGroupClientModelIntegration) IsSet

func (NullableAccessSessionsGroupClientModelIntegration) MarshalJSON

func (*NullableAccessSessionsGroupClientModelIntegration) Set

func (*NullableAccessSessionsGroupClientModelIntegration) UnmarshalJSON

func (*NullableAccessSessionsGroupClientModelIntegration) Unset

type NullableAccessUnitClientModel

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

func (NullableAccessUnitClientModel) Get

func (NullableAccessUnitClientModel) IsSet

func (NullableAccessUnitClientModel) MarshalJSON

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

func (*NullableAccessUnitClientModel) Set

func (*NullableAccessUnitClientModel) UnmarshalJSON

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

func (*NullableAccessUnitClientModel) Unset

func (v *NullableAccessUnitClientModel) Unset()

type NullableAccessUnitClientModelStatus

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

func (NullableAccessUnitClientModelStatus) Get

func (NullableAccessUnitClientModelStatus) IsSet

func (NullableAccessUnitClientModelStatus) MarshalJSON

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

func (*NullableAccessUnitClientModelStatus) Set

func (*NullableAccessUnitClientModelStatus) UnmarshalJSON

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

func (*NullableAccessUnitClientModelStatus) Unset

type NullableAccessUnitStatusClientModel

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

func (NullableAccessUnitStatusClientModel) Get

func (NullableAccessUnitStatusClientModel) IsSet

func (NullableAccessUnitStatusClientModel) MarshalJSON

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

func (*NullableAccessUnitStatusClientModel) Set

func (*NullableAccessUnitStatusClientModel) UnmarshalJSON

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

func (*NullableAccessUnitStatusClientModel) Unset

type NullableAccountClientModel added in v1.0.0

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

func NewNullableAccountClientModel added in v1.0.0

func NewNullableAccountClientModel(val *AccountClientModel) *NullableAccountClientModel

func (NullableAccountClientModel) Get added in v1.0.0

func (NullableAccountClientModel) IsSet added in v1.0.0

func (v NullableAccountClientModel) IsSet() bool

func (NullableAccountClientModel) MarshalJSON added in v1.0.0

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

func (*NullableAccountClientModel) Set added in v1.0.0

func (*NullableAccountClientModel) UnmarshalJSON added in v1.0.0

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

func (*NullableAccountClientModel) Unset added in v1.0.0

func (v *NullableAccountClientModel) Unset()

type NullableAnalyticClientTypeClientModel added in v1.0.0

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

func NewNullableAnalyticClientTypeClientModel added in v1.0.0

func NewNullableAnalyticClientTypeClientModel(val *AnalyticClientTypeClientModel) *NullableAnalyticClientTypeClientModel

func (NullableAnalyticClientTypeClientModel) Get added in v1.0.0

func (NullableAnalyticClientTypeClientModel) IsSet added in v1.0.0

func (NullableAnalyticClientTypeClientModel) MarshalJSON added in v1.0.0

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

func (*NullableAnalyticClientTypeClientModel) Set added in v1.0.0

func (*NullableAnalyticClientTypeClientModel) UnmarshalJSON added in v1.0.0

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

func (*NullableAnalyticClientTypeClientModel) Unset added in v1.0.0

type NullableApprovalResultClientModel

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

func (NullableApprovalResultClientModel) Get

func (NullableApprovalResultClientModel) IsSet

func (NullableApprovalResultClientModel) MarshalJSON

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

func (*NullableApprovalResultClientModel) Set

func (*NullableApprovalResultClientModel) UnmarshalJSON

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

func (*NullableApprovalResultClientModel) Unset

type NullableAssistantConversationClientModel added in v1.2.2

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

func NewNullableAssistantConversationClientModel added in v1.2.2

func NewNullableAssistantConversationClientModel(val *AssistantConversationClientModel) *NullableAssistantConversationClientModel

func (NullableAssistantConversationClientModel) Get added in v1.2.2

func (NullableAssistantConversationClientModel) IsSet added in v1.2.2

func (NullableAssistantConversationClientModel) MarshalJSON added in v1.2.2

func (*NullableAssistantConversationClientModel) Set added in v1.2.2

func (*NullableAssistantConversationClientModel) UnmarshalJSON added in v1.2.2

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

func (*NullableAssistantConversationClientModel) Unset added in v1.2.2

type NullableAssistantConversationSuggestionClientModel added in v1.2.2

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

func (NullableAssistantConversationSuggestionClientModel) Get added in v1.2.2

func (NullableAssistantConversationSuggestionClientModel) IsSet added in v1.2.2

func (NullableAssistantConversationSuggestionClientModel) MarshalJSON added in v1.2.2

func (*NullableAssistantConversationSuggestionClientModel) Set added in v1.2.2

func (*NullableAssistantConversationSuggestionClientModel) UnmarshalJSON added in v1.2.2

func (*NullableAssistantConversationSuggestionClientModel) Unset added in v1.2.2

type NullableAssistantLogEntryModel added in v1.2.2

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

func NewNullableAssistantLogEntryModel added in v1.2.2

func NewNullableAssistantLogEntryModel(val *AssistantLogEntryModel) *NullableAssistantLogEntryModel

func (NullableAssistantLogEntryModel) Get added in v1.2.2

func (NullableAssistantLogEntryModel) IsSet added in v1.2.2

func (NullableAssistantLogEntryModel) MarshalJSON added in v1.2.2

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

func (*NullableAssistantLogEntryModel) Set added in v1.2.2

func (*NullableAssistantLogEntryModel) UnmarshalJSON added in v1.2.2

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

func (*NullableAssistantLogEntryModel) Unset added in v1.2.2

func (v *NullableAssistantLogEntryModel) Unset()

type NullableAssistantMessageClientModel added in v1.2.2

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

func NewNullableAssistantMessageClientModel added in v1.2.2

func NewNullableAssistantMessageClientModel(val *AssistantMessageClientModel) *NullableAssistantMessageClientModel

func (NullableAssistantMessageClientModel) Get added in v1.2.2

func (NullableAssistantMessageClientModel) IsSet added in v1.2.2

func (NullableAssistantMessageClientModel) MarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageClientModel) Set added in v1.2.2

func (*NullableAssistantMessageClientModel) UnmarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageClientModel) Unset added in v1.2.2

type NullableAssistantMessageDataClientModel added in v1.2.2

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

func NewNullableAssistantMessageDataClientModel added in v1.2.2

func NewNullableAssistantMessageDataClientModel(val *AssistantMessageDataClientModel) *NullableAssistantMessageDataClientModel

func (NullableAssistantMessageDataClientModel) Get added in v1.2.2

func (NullableAssistantMessageDataClientModel) IsSet added in v1.2.2

func (NullableAssistantMessageDataClientModel) MarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageDataClientModel) Set added in v1.2.2

func (*NullableAssistantMessageDataClientModel) UnmarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageDataClientModel) Unset added in v1.2.2

type NullableAssistantMessageDataClientModelClientRequestCta added in v1.2.2

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

func (NullableAssistantMessageDataClientModelClientRequestCta) Get added in v1.2.2

func (NullableAssistantMessageDataClientModelClientRequestCta) IsSet added in v1.2.2

func (NullableAssistantMessageDataClientModelClientRequestCta) MarshalJSON added in v1.2.2

func (*NullableAssistantMessageDataClientModelClientRequestCta) Set added in v1.2.2

func (*NullableAssistantMessageDataClientModelClientRequestCta) UnmarshalJSON added in v1.2.2

func (*NullableAssistantMessageDataClientModelClientRequestCta) Unset added in v1.2.2

type NullableAssistantMessageDataClientModelClientSearchCta added in v1.2.2

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

func (NullableAssistantMessageDataClientModelClientSearchCta) Get added in v1.2.2

func (NullableAssistantMessageDataClientModelClientSearchCta) IsSet added in v1.2.2

func (NullableAssistantMessageDataClientModelClientSearchCta) MarshalJSON added in v1.2.2

func (*NullableAssistantMessageDataClientModelClientSearchCta) Set added in v1.2.2

func (*NullableAssistantMessageDataClientModelClientSearchCta) UnmarshalJSON added in v1.2.2

func (*NullableAssistantMessageDataClientModelClientSearchCta) Unset added in v1.2.2

type NullableAssistantMessageDataClientModelImage added in v1.2.2

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

func NewNullableAssistantMessageDataClientModelImage added in v1.2.2

func NewNullableAssistantMessageDataClientModelImage(val *AssistantMessageDataClientModelImage) *NullableAssistantMessageDataClientModelImage

func (NullableAssistantMessageDataClientModelImage) Get added in v1.2.2

func (NullableAssistantMessageDataClientModelImage) IsSet added in v1.2.2

func (NullableAssistantMessageDataClientModelImage) MarshalJSON added in v1.2.2

func (*NullableAssistantMessageDataClientModelImage) Set added in v1.2.2

func (*NullableAssistantMessageDataClientModelImage) UnmarshalJSON added in v1.2.2

func (*NullableAssistantMessageDataClientModelImage) Unset added in v1.2.2

type NullableAssistantMessageDataClientModelMarkdown added in v1.2.2

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

func (NullableAssistantMessageDataClientModelMarkdown) Get added in v1.2.2

func (NullableAssistantMessageDataClientModelMarkdown) IsSet added in v1.2.2

func (NullableAssistantMessageDataClientModelMarkdown) MarshalJSON added in v1.2.2

func (*NullableAssistantMessageDataClientModelMarkdown) Set added in v1.2.2

func (*NullableAssistantMessageDataClientModelMarkdown) UnmarshalJSON added in v1.2.2

func (*NullableAssistantMessageDataClientModelMarkdown) Unset added in v1.2.2

type NullableAssistantMessageFeedbackModel added in v1.2.2

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

func NewNullableAssistantMessageFeedbackModel added in v1.2.2

func NewNullableAssistantMessageFeedbackModel(val *AssistantMessageFeedbackModel) *NullableAssistantMessageFeedbackModel

func (NullableAssistantMessageFeedbackModel) Get added in v1.2.2

func (NullableAssistantMessageFeedbackModel) IsSet added in v1.2.2

func (NullableAssistantMessageFeedbackModel) MarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageFeedbackModel) Set added in v1.2.2

func (*NullableAssistantMessageFeedbackModel) UnmarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageFeedbackModel) Unset added in v1.2.2

type NullableAssistantMessageRequest added in v1.2.2

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

func NewNullableAssistantMessageRequest added in v1.2.2

func NewNullableAssistantMessageRequest(val *AssistantMessageRequest) *NullableAssistantMessageRequest

func (NullableAssistantMessageRequest) Get added in v1.2.2

func (NullableAssistantMessageRequest) IsSet added in v1.2.2

func (NullableAssistantMessageRequest) MarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageRequest) Set added in v1.2.2

func (*NullableAssistantMessageRequest) UnmarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageRequest) Unset added in v1.2.2

type NullableAssistantMessageRequestModel added in v1.2.2

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

func NewNullableAssistantMessageRequestModel added in v1.2.2

func NewNullableAssistantMessageRequestModel(val *AssistantMessageRequestModel) *NullableAssistantMessageRequestModel

func (NullableAssistantMessageRequestModel) Get added in v1.2.2

func (NullableAssistantMessageRequestModel) IsSet added in v1.2.2

func (NullableAssistantMessageRequestModel) MarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageRequestModel) Set added in v1.2.2

func (*NullableAssistantMessageRequestModel) UnmarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageRequestModel) Unset added in v1.2.2

type NullableAssistantMessageResponse added in v1.2.2

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

func NewNullableAssistantMessageResponse added in v1.2.2

func NewNullableAssistantMessageResponse(val *AssistantMessageResponse) *NullableAssistantMessageResponse

func (NullableAssistantMessageResponse) Get added in v1.2.2

func (NullableAssistantMessageResponse) IsSet added in v1.2.2

func (NullableAssistantMessageResponse) MarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageResponse) Set added in v1.2.2

func (*NullableAssistantMessageResponse) UnmarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageResponse) Unset added in v1.2.2

type NullableAssistantMessageResponseClientModel added in v1.2.2

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

func NewNullableAssistantMessageResponseClientModel added in v1.2.2

func NewNullableAssistantMessageResponseClientModel(val *AssistantMessageResponseClientModel) *NullableAssistantMessageResponseClientModel

func (NullableAssistantMessageResponseClientModel) Get added in v1.2.2

func (NullableAssistantMessageResponseClientModel) IsSet added in v1.2.2

func (NullableAssistantMessageResponseClientModel) MarshalJSON added in v1.2.2

func (*NullableAssistantMessageResponseClientModel) Set added in v1.2.2

func (*NullableAssistantMessageResponseClientModel) UnmarshalJSON added in v1.2.2

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

func (*NullableAssistantMessageResponseClientModel) Unset added in v1.2.2

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 NullableBundleClientModel

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

func NewNullableBundleClientModel

func NewNullableBundleClientModel(val *BundleClientModel) *NullableBundleClientModel

func (NullableBundleClientModel) Get

func (NullableBundleClientModel) IsSet

func (v NullableBundleClientModel) IsSet() bool

func (NullableBundleClientModel) MarshalJSON

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

func (*NullableBundleClientModel) Set

func (*NullableBundleClientModel) UnmarshalJSON

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

func (*NullableBundleClientModel) Unset

func (v *NullableBundleClientModel) Unset()

type NullableChallengeApproverClientModel

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

func (NullableChallengeApproverClientModel) Get

func (NullableChallengeApproverClientModel) IsSet

func (NullableChallengeApproverClientModel) MarshalJSON

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

func (*NullableChallengeApproverClientModel) Set

func (*NullableChallengeApproverClientModel) UnmarshalJSON

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

func (*NullableChallengeApproverClientModel) Unset

type NullableChallengeInfoClientModel

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

func (NullableChallengeInfoClientModel) Get

func (NullableChallengeInfoClientModel) IsSet

func (NullableChallengeInfoClientModel) MarshalJSON

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

func (*NullableChallengeInfoClientModel) Set

func (*NullableChallengeInfoClientModel) UnmarshalJSON

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

func (*NullableChallengeInfoClientModel) Unset

type NullableClientChallengeLogicalRelation

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

func (NullableClientChallengeLogicalRelation) Get

func (NullableClientChallengeLogicalRelation) IsSet

func (NullableClientChallengeLogicalRelation) MarshalJSON

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

func (*NullableClientChallengeLogicalRelation) Set

func (*NullableClientChallengeLogicalRelation) UnmarshalJSON

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

func (*NullableClientChallengeLogicalRelation) Unset

type NullableClientChallengeStatus

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

func (NullableClientChallengeStatus) Get

func (NullableClientChallengeStatus) IsSet

func (NullableClientChallengeStatus) MarshalJSON

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

func (*NullableClientChallengeStatus) Set

func (*NullableClientChallengeStatus) UnmarshalJSON

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

func (*NullableClientChallengeStatus) Unset

func (v *NullableClientChallengeStatus) Unset()

type NullableCreateAccessRequestClientModel

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

func (NullableCreateAccessRequestClientModel) Get

func (NullableCreateAccessRequestClientModel) IsSet

func (NullableCreateAccessRequestClientModel) MarshalJSON

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

func (*NullableCreateAccessRequestClientModel) Set

func (*NullableCreateAccessRequestClientModel) UnmarshalJSON

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

func (*NullableCreateAccessRequestClientModel) Unset

type NullableCreateAnalyticEventClientModel added in v1.0.0

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

func NewNullableCreateAnalyticEventClientModel added in v1.0.0

func NewNullableCreateAnalyticEventClientModel(val *CreateAnalyticEventClientModel) *NullableCreateAnalyticEventClientModel

func (NullableCreateAnalyticEventClientModel) Get added in v1.0.0

func (NullableCreateAnalyticEventClientModel) IsSet added in v1.0.0

func (NullableCreateAnalyticEventClientModel) MarshalJSON added in v1.0.0

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

func (*NullableCreateAnalyticEventClientModel) Set added in v1.0.0

func (*NullableCreateAnalyticEventClientModel) UnmarshalJSON added in v1.0.0

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

func (*NullableCreateAnalyticEventClientModel) Unset added in v1.0.0

type NullableCreateAndUpdateAccessRequestTemplateClientModel

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

func (NullableCreateAndUpdateAccessRequestTemplateClientModel) Get

func (NullableCreateAndUpdateAccessRequestTemplateClientModel) IsSet

func (NullableCreateAndUpdateAccessRequestTemplateClientModel) MarshalJSON

func (*NullableCreateAndUpdateAccessRequestTemplateClientModel) Set

func (*NullableCreateAndUpdateAccessRequestTemplateClientModel) UnmarshalJSON

func (*NullableCreateAndUpdateAccessRequestTemplateClientModel) Unset

type NullableCreatePromptVersionRequest added in v1.2.2

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

func NewNullableCreatePromptVersionRequest added in v1.2.2

func NewNullableCreatePromptVersionRequest(val *CreatePromptVersionRequest) *NullableCreatePromptVersionRequest

func (NullableCreatePromptVersionRequest) Get added in v1.2.2

func (NullableCreatePromptVersionRequest) IsSet added in v1.2.2

func (NullableCreatePromptVersionRequest) MarshalJSON added in v1.2.2

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

func (*NullableCreatePromptVersionRequest) Set added in v1.2.2

func (*NullableCreatePromptVersionRequest) UnmarshalJSON added in v1.2.2

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

func (*NullableCreatePromptVersionRequest) Unset added in v1.2.2

type NullableCreateUserPersonalTokenRequestClientModel added in v1.2.2

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

func (NullableCreateUserPersonalTokenRequestClientModel) Get added in v1.2.2

func (NullableCreateUserPersonalTokenRequestClientModel) IsSet added in v1.2.2

func (NullableCreateUserPersonalTokenRequestClientModel) MarshalJSON added in v1.2.2

func (*NullableCreateUserPersonalTokenRequestClientModel) Set added in v1.2.2

func (*NullableCreateUserPersonalTokenRequestClientModel) UnmarshalJSON added in v1.2.2

func (*NullableCreateUserPersonalTokenRequestClientModel) Unset added in v1.2.2

type NullableCredentialsClientModel

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

func (NullableCredentialsClientModel) Get

func (NullableCredentialsClientModel) IsSet

func (NullableCredentialsClientModel) MarshalJSON

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

func (*NullableCredentialsClientModel) Set

func (*NullableCredentialsClientModel) UnmarshalJSON

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

func (*NullableCredentialsClientModel) Unset

func (v *NullableCredentialsClientModel) Unset()

type NullableDryRunAccessRequestError added in v1.0.3

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

func NewNullableDryRunAccessRequestError added in v1.0.3

func NewNullableDryRunAccessRequestError(val *DryRunAccessRequestError) *NullableDryRunAccessRequestError

func (NullableDryRunAccessRequestError) Get added in v1.0.3

func (NullableDryRunAccessRequestError) IsSet added in v1.0.3

func (NullableDryRunAccessRequestError) MarshalJSON added in v1.0.3

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

func (*NullableDryRunAccessRequestError) Set added in v1.0.3

func (*NullableDryRunAccessRequestError) UnmarshalJSON added in v1.0.3

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

func (*NullableDryRunAccessRequestError) Unset added in v1.0.3

type NullableDryRunClientResponse added in v1.0.3

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

func NewNullableDryRunClientResponse added in v1.0.3

func NewNullableDryRunClientResponse(val *DryRunClientResponse) *NullableDryRunClientResponse

func (NullableDryRunClientResponse) Get added in v1.0.3

func (NullableDryRunClientResponse) IsSet added in v1.0.3

func (NullableDryRunClientResponse) MarshalJSON added in v1.0.3

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

func (*NullableDryRunClientResponse) Set added in v1.0.3

func (*NullableDryRunClientResponse) UnmarshalJSON added in v1.0.3

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

func (*NullableDryRunClientResponse) Unset added in v1.0.3

func (v *NullableDryRunClientResponse) Unset()

type NullableFilterOptionClientModel added in v1.3.0

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

func NewNullableFilterOptionClientModel added in v1.3.0

func NewNullableFilterOptionClientModel(val *FilterOptionClientModel) *NullableFilterOptionClientModel

func (NullableFilterOptionClientModel) Get added in v1.3.0

func (NullableFilterOptionClientModel) IsSet added in v1.3.0

func (NullableFilterOptionClientModel) MarshalJSON added in v1.3.0

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

func (*NullableFilterOptionClientModel) Set added in v1.3.0

func (*NullableFilterOptionClientModel) UnmarshalJSON added in v1.3.0

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

func (*NullableFilterOptionClientModel) Unset added in v1.3.0

type NullableFilterOptionClientModelIcon added in v1.3.0

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

func NewNullableFilterOptionClientModelIcon added in v1.3.0

func NewNullableFilterOptionClientModelIcon(val *FilterOptionClientModelIcon) *NullableFilterOptionClientModelIcon

func (NullableFilterOptionClientModelIcon) Get added in v1.3.0

func (NullableFilterOptionClientModelIcon) IsSet added in v1.3.0

func (NullableFilterOptionClientModelIcon) MarshalJSON added in v1.3.0

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

func (*NullableFilterOptionClientModelIcon) Set added in v1.3.0

func (*NullableFilterOptionClientModelIcon) UnmarshalJSON added in v1.3.0

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

func (*NullableFilterOptionClientModelIcon) Unset added in v1.3.0

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 NullableGranteeClientModel added in v1.2.2

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

func NewNullableGranteeClientModel added in v1.2.2

func NewNullableGranteeClientModel(val *GranteeClientModel) *NullableGranteeClientModel

func (NullableGranteeClientModel) Get added in v1.2.2

func (NullableGranteeClientModel) IsSet added in v1.2.2

func (v NullableGranteeClientModel) IsSet() bool

func (NullableGranteeClientModel) MarshalJSON added in v1.2.2

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

func (*NullableGranteeClientModel) Set added in v1.2.2

func (*NullableGranteeClientModel) UnmarshalJSON added in v1.2.2

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

func (*NullableGranteeClientModel) Unset added in v1.2.2

func (v *NullableGranteeClientModel) Unset()

type NullableIconsConfigClientModel

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

func (NullableIconsConfigClientModel) Get

func (NullableIconsConfigClientModel) IsSet

func (NullableIconsConfigClientModel) MarshalJSON

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

func (*NullableIconsConfigClientModel) Set

func (*NullableIconsConfigClientModel) UnmarshalJSON

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

func (*NullableIconsConfigClientModel) Unset

func (v *NullableIconsConfigClientModel) Unset()

type NullableInstructionClientModel

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

func (NullableInstructionClientModel) Get

func (NullableInstructionClientModel) IsSet

func (NullableInstructionClientModel) MarshalJSON

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

func (*NullableInstructionClientModel) Set

func (*NullableInstructionClientModel) UnmarshalJSON

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

func (*NullableInstructionClientModel) Unset

func (v *NullableInstructionClientModel) 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 NullableIntegrationClientModel

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

func (NullableIntegrationClientModel) Get

func (NullableIntegrationClientModel) IsSet

func (NullableIntegrationClientModel) MarshalJSON

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

func (*NullableIntegrationClientModel) Set

func (*NullableIntegrationClientModel) UnmarshalJSON

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

func (*NullableIntegrationClientModel) Unset

func (v *NullableIntegrationClientModel) Unset()

type NullableLinkClientModel

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

func NewNullableLinkClientModel

func NewNullableLinkClientModel(val *LinkClientModel) *NullableLinkClientModel

func (NullableLinkClientModel) Get

func (NullableLinkClientModel) IsSet

func (v NullableLinkClientModel) IsSet() bool

func (NullableLinkClientModel) MarshalJSON

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

func (*NullableLinkClientModel) Set

func (*NullableLinkClientModel) UnmarshalJSON

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

func (*NullableLinkClientModel) Unset

func (v *NullableLinkClientModel) Unset()

type NullableMcpError added in v1.3.0

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

func NewNullableMcpError added in v1.3.0

func NewNullableMcpError(val *McpError) *NullableMcpError

func (NullableMcpError) Get added in v1.3.0

func (v NullableMcpError) Get() *McpError

func (NullableMcpError) IsSet added in v1.3.0

func (v NullableMcpError) IsSet() bool

func (NullableMcpError) MarshalJSON added in v1.3.0

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

func (*NullableMcpError) Set added in v1.3.0

func (v *NullableMcpError) Set(val *McpError)

func (*NullableMcpError) UnmarshalJSON added in v1.3.0

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

func (*NullableMcpError) Unset added in v1.3.0

func (v *NullableMcpError) Unset()

type NullableMcpRequest added in v1.3.0

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

func NewNullableMcpRequest added in v1.3.0

func NewNullableMcpRequest(val *McpRequest) *NullableMcpRequest

func (NullableMcpRequest) Get added in v1.3.0

func (v NullableMcpRequest) Get() *McpRequest

func (NullableMcpRequest) IsSet added in v1.3.0

func (v NullableMcpRequest) IsSet() bool

func (NullableMcpRequest) MarshalJSON added in v1.3.0

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

func (*NullableMcpRequest) Set added in v1.3.0

func (v *NullableMcpRequest) Set(val *McpRequest)

func (*NullableMcpRequest) UnmarshalJSON added in v1.3.0

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

func (*NullableMcpRequest) Unset added in v1.3.0

func (v *NullableMcpRequest) Unset()

type NullableMcpResponse added in v1.3.0

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

func NewNullableMcpResponse added in v1.3.0

func NewNullableMcpResponse(val *McpResponse) *NullableMcpResponse

func (NullableMcpResponse) Get added in v1.3.0

func (NullableMcpResponse) IsSet added in v1.3.0

func (v NullableMcpResponse) IsSet() bool

func (NullableMcpResponse) MarshalJSON added in v1.3.0

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

func (*NullableMcpResponse) Set added in v1.3.0

func (v *NullableMcpResponse) Set(val *McpResponse)

func (*NullableMcpResponse) UnmarshalJSON added in v1.3.0

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

func (*NullableMcpResponse) Unset added in v1.3.0

func (v *NullableMcpResponse) Unset()

type NullableMcpResponseError added in v1.3.0

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

func NewNullableMcpResponseError added in v1.3.0

func NewNullableMcpResponseError(val *McpResponseError) *NullableMcpResponseError

func (NullableMcpResponseError) Get added in v1.3.0

func (NullableMcpResponseError) IsSet added in v1.3.0

func (v NullableMcpResponseError) IsSet() bool

func (NullableMcpResponseError) MarshalJSON added in v1.3.0

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

func (*NullableMcpResponseError) Set added in v1.3.0

func (*NullableMcpResponseError) UnmarshalJSON added in v1.3.0

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

func (*NullableMcpResponseError) Unset added in v1.3.0

func (v *NullableMcpResponseError) Unset()

type NullableMessageDataImageClientModel added in v1.2.2

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

func NewNullableMessageDataImageClientModel added in v1.2.2

func NewNullableMessageDataImageClientModel(val *MessageDataImageClientModel) *NullableMessageDataImageClientModel

func (NullableMessageDataImageClientModel) Get added in v1.2.2

func (NullableMessageDataImageClientModel) IsSet added in v1.2.2

func (NullableMessageDataImageClientModel) MarshalJSON added in v1.2.2

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

func (*NullableMessageDataImageClientModel) Set added in v1.2.2

func (*NullableMessageDataImageClientModel) UnmarshalJSON added in v1.2.2

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

func (*NullableMessageDataImageClientModel) Unset added in v1.2.2

type NullableMessageDataMarkdownClientModel added in v1.2.2

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

func NewNullableMessageDataMarkdownClientModel added in v1.2.2

func NewNullableMessageDataMarkdownClientModel(val *MessageDataMarkdownClientModel) *NullableMessageDataMarkdownClientModel

func (NullableMessageDataMarkdownClientModel) Get added in v1.2.2

func (NullableMessageDataMarkdownClientModel) IsSet added in v1.2.2

func (NullableMessageDataMarkdownClientModel) MarshalJSON added in v1.2.2

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

func (*NullableMessageDataMarkdownClientModel) Set added in v1.2.2

func (*NullableMessageDataMarkdownClientModel) UnmarshalJSON added in v1.2.2

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

func (*NullableMessageDataMarkdownClientModel) Unset added in v1.2.2

type NullableMessageDataRequestBundlesClientModel added in v1.2.2

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

func NewNullableMessageDataRequestBundlesClientModel added in v1.2.2

func NewNullableMessageDataRequestBundlesClientModel(val *MessageDataRequestBundlesClientModel) *NullableMessageDataRequestBundlesClientModel

func (NullableMessageDataRequestBundlesClientModel) Get added in v1.2.2

func (NullableMessageDataRequestBundlesClientModel) IsSet added in v1.2.2

func (NullableMessageDataRequestBundlesClientModel) MarshalJSON added in v1.2.2

func (*NullableMessageDataRequestBundlesClientModel) Set added in v1.2.2

func (*NullableMessageDataRequestBundlesClientModel) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataRequestBundlesClientModel) Unset added in v1.2.2

type NullableMessageDataRequestCTAClientModel added in v1.2.2

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

func NewNullableMessageDataRequestCTAClientModel added in v1.2.2

func NewNullableMessageDataRequestCTAClientModel(val *MessageDataRequestCTAClientModel) *NullableMessageDataRequestCTAClientModel

func (NullableMessageDataRequestCTAClientModel) Get added in v1.2.2

func (NullableMessageDataRequestCTAClientModel) IsSet added in v1.2.2

func (NullableMessageDataRequestCTAClientModel) MarshalJSON added in v1.2.2

func (*NullableMessageDataRequestCTAClientModel) Set added in v1.2.2

func (*NullableMessageDataRequestCTAClientModel) UnmarshalJSON added in v1.2.2

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

func (*NullableMessageDataRequestCTAClientModel) Unset added in v1.2.2

type NullableMessageDataRequestCTAClientModelBundlesRequest added in v1.2.2

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

func (NullableMessageDataRequestCTAClientModelBundlesRequest) Get added in v1.2.2

func (NullableMessageDataRequestCTAClientModelBundlesRequest) IsSet added in v1.2.2

func (NullableMessageDataRequestCTAClientModelBundlesRequest) MarshalJSON added in v1.2.2

func (*NullableMessageDataRequestCTAClientModelBundlesRequest) Set added in v1.2.2

func (*NullableMessageDataRequestCTAClientModelBundlesRequest) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataRequestCTAClientModelBundlesRequest) Unset added in v1.2.2

type NullableMessageDataRequestCTAClientModelRequestAgain added in v1.2.2

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

func (NullableMessageDataRequestCTAClientModelRequestAgain) Get added in v1.2.2

func (NullableMessageDataRequestCTAClientModelRequestAgain) IsSet added in v1.2.2

func (NullableMessageDataRequestCTAClientModelRequestAgain) MarshalJSON added in v1.2.2

func (*NullableMessageDataRequestCTAClientModelRequestAgain) Set added in v1.2.2

func (*NullableMessageDataRequestCTAClientModelRequestAgain) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataRequestCTAClientModelRequestAgain) Unset added in v1.2.2

type NullableMessageDataRequestCTAClientModelResourcesRequest added in v1.2.2

type NullableMessageDataRequestCTAClientModelResourcesRequest struct {
	// contains filtered or unexported fields
}

func (NullableMessageDataRequestCTAClientModelResourcesRequest) Get added in v1.2.2

func (NullableMessageDataRequestCTAClientModelResourcesRequest) IsSet added in v1.2.2

func (NullableMessageDataRequestCTAClientModelResourcesRequest) MarshalJSON added in v1.2.2

func (*NullableMessageDataRequestCTAClientModelResourcesRequest) Set added in v1.2.2

func (*NullableMessageDataRequestCTAClientModelResourcesRequest) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataRequestCTAClientModelResourcesRequest) Unset added in v1.2.2

type NullableMessageDataRequestPastRequestsClientModel added in v1.2.2

type NullableMessageDataRequestPastRequestsClientModel struct {
	// contains filtered or unexported fields
}

func (NullableMessageDataRequestPastRequestsClientModel) Get added in v1.2.2

func (NullableMessageDataRequestPastRequestsClientModel) IsSet added in v1.2.2

func (NullableMessageDataRequestPastRequestsClientModel) MarshalJSON added in v1.2.2

func (*NullableMessageDataRequestPastRequestsClientModel) Set added in v1.2.2

func (*NullableMessageDataRequestPastRequestsClientModel) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataRequestPastRequestsClientModel) Unset added in v1.2.2

type NullableMessageDataRequestResourcesClientModel added in v1.2.2

type NullableMessageDataRequestResourcesClientModel struct {
	// contains filtered or unexported fields
}

func (NullableMessageDataRequestResourcesClientModel) Get added in v1.2.2

func (NullableMessageDataRequestResourcesClientModel) IsSet added in v1.2.2

func (NullableMessageDataRequestResourcesClientModel) MarshalJSON added in v1.2.2

func (*NullableMessageDataRequestResourcesClientModel) Set added in v1.2.2

func (*NullableMessageDataRequestResourcesClientModel) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataRequestResourcesClientModel) Unset added in v1.2.2

type NullableMessageDataSearchBundlesClientModel added in v1.2.2

type NullableMessageDataSearchBundlesClientModel struct {
	// contains filtered or unexported fields
}

func NewNullableMessageDataSearchBundlesClientModel added in v1.2.2

func NewNullableMessageDataSearchBundlesClientModel(val *MessageDataSearchBundlesClientModel) *NullableMessageDataSearchBundlesClientModel

func (NullableMessageDataSearchBundlesClientModel) Get added in v1.2.2

func (NullableMessageDataSearchBundlesClientModel) IsSet added in v1.2.2

func (NullableMessageDataSearchBundlesClientModel) MarshalJSON added in v1.2.2

func (*NullableMessageDataSearchBundlesClientModel) Set added in v1.2.2

func (*NullableMessageDataSearchBundlesClientModel) UnmarshalJSON added in v1.2.2

func (v *NullableMessageDataSearchBundlesClientModel) UnmarshalJSON(src []byte) error

func (*NullableMessageDataSearchBundlesClientModel) Unset added in v1.2.2

type NullableMessageDataSearchCTAClientModel added in v1.2.2

type NullableMessageDataSearchCTAClientModel struct {
	// contains filtered or unexported fields
}

func NewNullableMessageDataSearchCTAClientModel added in v1.2.2

func NewNullableMessageDataSearchCTAClientModel(val *MessageDataSearchCTAClientModel) *NullableMessageDataSearchCTAClientModel

func (NullableMessageDataSearchCTAClientModel) Get added in v1.2.2

func (NullableMessageDataSearchCTAClientModel) IsSet added in v1.2.2

func (NullableMessageDataSearchCTAClientModel) MarshalJSON added in v1.2.2

func (v NullableMessageDataSearchCTAClientModel) MarshalJSON() ([]byte, error)

func (*NullableMessageDataSearchCTAClientModel) Set added in v1.2.2

func (*NullableMessageDataSearchCTAClientModel) UnmarshalJSON added in v1.2.2

func (v *NullableMessageDataSearchCTAClientModel) UnmarshalJSON(src []byte) error

func (*NullableMessageDataSearchCTAClientModel) Unset added in v1.2.2

type NullableMessageDataSearchCTAClientModelBundles added in v1.2.2

type NullableMessageDataSearchCTAClientModelBundles struct {
	// contains filtered or unexported fields
}

func (NullableMessageDataSearchCTAClientModelBundles) Get added in v1.2.2

func (NullableMessageDataSearchCTAClientModelBundles) IsSet added in v1.2.2

func (NullableMessageDataSearchCTAClientModelBundles) MarshalJSON added in v1.2.2

func (*NullableMessageDataSearchCTAClientModelBundles) Set added in v1.2.2

func (*NullableMessageDataSearchCTAClientModelBundles) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataSearchCTAClientModelBundles) Unset added in v1.2.2

type NullableMessageDataSearchCTAClientModelPastRequests added in v1.2.2

type NullableMessageDataSearchCTAClientModelPastRequests struct {
	// contains filtered or unexported fields
}

func (NullableMessageDataSearchCTAClientModelPastRequests) Get added in v1.2.2

func (NullableMessageDataSearchCTAClientModelPastRequests) IsSet added in v1.2.2

func (NullableMessageDataSearchCTAClientModelPastRequests) MarshalJSON added in v1.2.2

func (*NullableMessageDataSearchCTAClientModelPastRequests) Set added in v1.2.2

func (*NullableMessageDataSearchCTAClientModelPastRequests) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataSearchCTAClientModelPastRequests) Unset added in v1.2.2

type NullableMessageDataSearchCTAClientModelResources added in v1.2.2

type NullableMessageDataSearchCTAClientModelResources struct {
	// contains filtered or unexported fields
}

func (NullableMessageDataSearchCTAClientModelResources) Get added in v1.2.2

func (NullableMessageDataSearchCTAClientModelResources) IsSet added in v1.2.2

func (NullableMessageDataSearchCTAClientModelResources) MarshalJSON added in v1.2.2

func (*NullableMessageDataSearchCTAClientModelResources) Set added in v1.2.2

func (*NullableMessageDataSearchCTAClientModelResources) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataSearchCTAClientModelResources) Unset added in v1.2.2

type NullableMessageDataSearchPastRequestsClientModel added in v1.2.2

type NullableMessageDataSearchPastRequestsClientModel struct {
	// contains filtered or unexported fields
}

func (NullableMessageDataSearchPastRequestsClientModel) Get added in v1.2.2

func (NullableMessageDataSearchPastRequestsClientModel) IsSet added in v1.2.2

func (NullableMessageDataSearchPastRequestsClientModel) MarshalJSON added in v1.2.2

func (*NullableMessageDataSearchPastRequestsClientModel) Set added in v1.2.2

func (*NullableMessageDataSearchPastRequestsClientModel) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataSearchPastRequestsClientModel) Unset added in v1.2.2

type NullableMessageDataSearchResourcesClientModel added in v1.2.2

type NullableMessageDataSearchResourcesClientModel struct {
	// contains filtered or unexported fields
}

func (NullableMessageDataSearchResourcesClientModel) Get added in v1.2.2

func (NullableMessageDataSearchResourcesClientModel) IsSet added in v1.2.2

func (NullableMessageDataSearchResourcesClientModel) MarshalJSON added in v1.2.2

func (*NullableMessageDataSearchResourcesClientModel) Set added in v1.2.2

func (*NullableMessageDataSearchResourcesClientModel) UnmarshalJSON added in v1.2.2

func (*NullableMessageDataSearchResourcesClientModel) Unset added in v1.2.2

type NullableMessageDataSearchResourcesFiltersClientModel added in v1.3.0

type NullableMessageDataSearchResourcesFiltersClientModel struct {
	// contains filtered or unexported fields
}

func (NullableMessageDataSearchResourcesFiltersClientModel) Get added in v1.3.0

func (NullableMessageDataSearchResourcesFiltersClientModel) IsSet added in v1.3.0

func (NullableMessageDataSearchResourcesFiltersClientModel) MarshalJSON added in v1.3.0

func (*NullableMessageDataSearchResourcesFiltersClientModel) Set added in v1.3.0

func (*NullableMessageDataSearchResourcesFiltersClientModel) UnmarshalJSON added in v1.3.0

func (*NullableMessageDataSearchResourcesFiltersClientModel) Unset added in v1.3.0

type NullableMessageResponse

type NullableMessageResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMessageResponse

func NewNullableMessageResponse(val *MessageResponse) *NullableMessageResponse

func (NullableMessageResponse) Get

func (NullableMessageResponse) IsSet

func (v NullableMessageResponse) IsSet() bool

func (NullableMessageResponse) MarshalJSON

func (v NullableMessageResponse) MarshalJSON() ([]byte, error)

func (*NullableMessageResponse) Set

func (*NullableMessageResponse) UnmarshalJSON

func (v *NullableMessageResponse) UnmarshalJSON(src []byte) error

func (*NullableMessageResponse) Unset

func (v *NullableMessageResponse) Unset()

type NullableNotificationMcpRequest added in v1.3.0

type NullableNotificationMcpRequest struct {
	// contains filtered or unexported fields
}

func NewNullableNotificationMcpRequest added in v1.3.0

func NewNullableNotificationMcpRequest(val *NotificationMcpRequest) *NullableNotificationMcpRequest

func (NullableNotificationMcpRequest) Get added in v1.3.0

func (NullableNotificationMcpRequest) IsSet added in v1.3.0

func (NullableNotificationMcpRequest) MarshalJSON added in v1.3.0

func (v NullableNotificationMcpRequest) MarshalJSON() ([]byte, error)

func (*NullableNotificationMcpRequest) Set added in v1.3.0

func (*NullableNotificationMcpRequest) UnmarshalJSON added in v1.3.0

func (v *NullableNotificationMcpRequest) UnmarshalJSON(src []byte) error

func (*NullableNotificationMcpRequest) Unset added in v1.3.0

func (v *NullableNotificationMcpRequest) Unset()

type NullablePaginatedClientResponseModelAccessRequestClientModel

type NullablePaginatedClientResponseModelAccessRequestClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelAccessRequestClientModel) Get

func (NullablePaginatedClientResponseModelAccessRequestClientModel) IsSet

func (NullablePaginatedClientResponseModelAccessRequestClientModel) MarshalJSON

func (*NullablePaginatedClientResponseModelAccessRequestClientModel) Set

func (*NullablePaginatedClientResponseModelAccessRequestClientModel) UnmarshalJSON

func (*NullablePaginatedClientResponseModelAccessRequestClientModel) Unset

type NullablePaginatedClientResponseModelAccessRequestTemplateClientModel

type NullablePaginatedClientResponseModelAccessRequestTemplateClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelAccessRequestTemplateClientModel) Get

func (NullablePaginatedClientResponseModelAccessRequestTemplateClientModel) IsSet

func (NullablePaginatedClientResponseModelAccessRequestTemplateClientModel) MarshalJSON

func (*NullablePaginatedClientResponseModelAccessRequestTemplateClientModel) Set

func (*NullablePaginatedClientResponseModelAccessRequestTemplateClientModel) UnmarshalJSON

func (*NullablePaginatedClientResponseModelAccessRequestTemplateClientModel) Unset

type NullablePaginatedClientResponseModelAccessSessionClientModel

type NullablePaginatedClientResponseModelAccessSessionClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelAccessSessionClientModel) Get

func (NullablePaginatedClientResponseModelAccessSessionClientModel) IsSet

func (NullablePaginatedClientResponseModelAccessSessionClientModel) MarshalJSON

func (*NullablePaginatedClientResponseModelAccessSessionClientModel) Set

func (*NullablePaginatedClientResponseModelAccessSessionClientModel) UnmarshalJSON

func (*NullablePaginatedClientResponseModelAccessSessionClientModel) Unset

type NullablePaginatedClientResponseModelAccessSessionsGroupClientModel

type NullablePaginatedClientResponseModelAccessSessionsGroupClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelAccessSessionsGroupClientModel) Get

func (NullablePaginatedClientResponseModelAccessSessionsGroupClientModel) IsSet

func (NullablePaginatedClientResponseModelAccessSessionsGroupClientModel) MarshalJSON

func (*NullablePaginatedClientResponseModelAccessSessionsGroupClientModel) Set

func (*NullablePaginatedClientResponseModelAccessSessionsGroupClientModel) UnmarshalJSON

func (*NullablePaginatedClientResponseModelAccessSessionsGroupClientModel) Unset

type NullablePaginatedClientResponseModelAccessUnitClientModel

type NullablePaginatedClientResponseModelAccessUnitClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelAccessUnitClientModel) Get

func (NullablePaginatedClientResponseModelAccessUnitClientModel) IsSet

func (NullablePaginatedClientResponseModelAccessUnitClientModel) MarshalJSON

func (*NullablePaginatedClientResponseModelAccessUnitClientModel) Set

func (*NullablePaginatedClientResponseModelAccessUnitClientModel) UnmarshalJSON

func (*NullablePaginatedClientResponseModelAccessUnitClientModel) Unset

type NullablePaginatedClientResponseModelAssistantConversationClientModel added in v1.3.0

type NullablePaginatedClientResponseModelAssistantConversationClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelAssistantConversationClientModel) Get added in v1.3.0

func (NullablePaginatedClientResponseModelAssistantConversationClientModel) IsSet added in v1.3.0

func (NullablePaginatedClientResponseModelAssistantConversationClientModel) MarshalJSON added in v1.3.0

func (*NullablePaginatedClientResponseModelAssistantConversationClientModel) Set added in v1.3.0

func (*NullablePaginatedClientResponseModelAssistantConversationClientModel) UnmarshalJSON added in v1.3.0

func (*NullablePaginatedClientResponseModelAssistantConversationClientModel) Unset added in v1.3.0

type NullablePaginatedClientResponseModelAssistantMessageClientModel added in v1.3.0

type NullablePaginatedClientResponseModelAssistantMessageClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelAssistantMessageClientModel) Get added in v1.3.0

func (NullablePaginatedClientResponseModelAssistantMessageClientModel) IsSet added in v1.3.0

func (NullablePaginatedClientResponseModelAssistantMessageClientModel) MarshalJSON added in v1.3.0

func (*NullablePaginatedClientResponseModelAssistantMessageClientModel) Set added in v1.3.0

func (*NullablePaginatedClientResponseModelAssistantMessageClientModel) UnmarshalJSON added in v1.3.0

func (*NullablePaginatedClientResponseModelAssistantMessageClientModel) Unset added in v1.3.0

type NullablePaginatedClientResponseModelBundleClientModel

type NullablePaginatedClientResponseModelBundleClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelBundleClientModel) Get

func (NullablePaginatedClientResponseModelBundleClientModel) IsSet

func (NullablePaginatedClientResponseModelBundleClientModel) MarshalJSON

func (*NullablePaginatedClientResponseModelBundleClientModel) Set

func (*NullablePaginatedClientResponseModelBundleClientModel) UnmarshalJSON

func (*NullablePaginatedClientResponseModelBundleClientModel) Unset

type NullablePaginatedClientResponseModelFilterOptionClientModel added in v1.3.0

type NullablePaginatedClientResponseModelFilterOptionClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelFilterOptionClientModel) Get added in v1.3.0

func (NullablePaginatedClientResponseModelFilterOptionClientModel) IsSet added in v1.3.0

func (NullablePaginatedClientResponseModelFilterOptionClientModel) MarshalJSON added in v1.3.0

func (*NullablePaginatedClientResponseModelFilterOptionClientModel) Set added in v1.3.0

func (*NullablePaginatedClientResponseModelFilterOptionClientModel) UnmarshalJSON added in v1.3.0

func (*NullablePaginatedClientResponseModelFilterOptionClientModel) Unset added in v1.3.0

type NullablePaginatedClientResponseModelGranteeClientModel added in v1.2.2

type NullablePaginatedClientResponseModelGranteeClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelGranteeClientModel) Get added in v1.2.2

func (NullablePaginatedClientResponseModelGranteeClientModel) IsSet added in v1.2.2

func (NullablePaginatedClientResponseModelGranteeClientModel) MarshalJSON added in v1.2.2

func (*NullablePaginatedClientResponseModelGranteeClientModel) Set added in v1.2.2

func (*NullablePaginatedClientResponseModelGranteeClientModel) UnmarshalJSON added in v1.2.2

func (*NullablePaginatedClientResponseModelGranteeClientModel) Unset added in v1.2.2

type NullablePaginatedClientResponseModelIntegrationClientModel

type NullablePaginatedClientResponseModelIntegrationClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelIntegrationClientModel) Get

func (NullablePaginatedClientResponseModelIntegrationClientModel) IsSet

func (NullablePaginatedClientResponseModelIntegrationClientModel) MarshalJSON

func (*NullablePaginatedClientResponseModelIntegrationClientModel) Set

func (*NullablePaginatedClientResponseModelIntegrationClientModel) UnmarshalJSON

func (*NullablePaginatedClientResponseModelIntegrationClientModel) Unset

type NullablePaginatedClientResponseModelPermissionClientModel

type NullablePaginatedClientResponseModelPermissionClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelPermissionClientModel) Get

func (NullablePaginatedClientResponseModelPermissionClientModel) IsSet

func (NullablePaginatedClientResponseModelPermissionClientModel) MarshalJSON

func (*NullablePaginatedClientResponseModelPermissionClientModel) Set

func (*NullablePaginatedClientResponseModelPermissionClientModel) UnmarshalJSON

func (*NullablePaginatedClientResponseModelPermissionClientModel) Unset

type NullablePaginatedClientResponseModelResourceClientModel

type NullablePaginatedClientResponseModelResourceClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelResourceClientModel) Get

func (NullablePaginatedClientResponseModelResourceClientModel) IsSet

func (NullablePaginatedClientResponseModelResourceClientModel) MarshalJSON

func (*NullablePaginatedClientResponseModelResourceClientModel) Set

func (*NullablePaginatedClientResponseModelResourceClientModel) UnmarshalJSON

func (*NullablePaginatedClientResponseModelResourceClientModel) Unset

type NullablePaginatedClientResponseModelResourceTypeClientModel

type NullablePaginatedClientResponseModelResourceTypeClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedClientResponseModelResourceTypeClientModel) Get

func (NullablePaginatedClientResponseModelResourceTypeClientModel) IsSet

func (NullablePaginatedClientResponseModelResourceTypeClientModel) MarshalJSON

func (*NullablePaginatedClientResponseModelResourceTypeClientModel) Set

func (*NullablePaginatedClientResponseModelResourceTypeClientModel) UnmarshalJSON

func (*NullablePaginatedClientResponseModelResourceTypeClientModel) Unset

type NullablePaginationClientInfoModel

type NullablePaginationClientInfoModel struct {
	// contains filtered or unexported fields
}

func (NullablePaginationClientInfoModel) Get

func (NullablePaginationClientInfoModel) IsSet

func (NullablePaginationClientInfoModel) MarshalJSON

func (v NullablePaginationClientInfoModel) MarshalJSON() ([]byte, error)

func (*NullablePaginationClientInfoModel) Set

func (*NullablePaginationClientInfoModel) UnmarshalJSON

func (v *NullablePaginationClientInfoModel) UnmarshalJSON(src []byte) error

func (*NullablePaginationClientInfoModel) Unset

type NullablePassMfaClientResponse added in v1.2.2

type NullablePassMfaClientResponse struct {
	// contains filtered or unexported fields
}

func NewNullablePassMfaClientResponse added in v1.2.2

func NewNullablePassMfaClientResponse(val *PassMfaClientResponse) *NullablePassMfaClientResponse

func (NullablePassMfaClientResponse) Get added in v1.2.2

func (NullablePassMfaClientResponse) IsSet added in v1.2.2

func (NullablePassMfaClientResponse) MarshalJSON added in v1.2.2

func (v NullablePassMfaClientResponse) MarshalJSON() ([]byte, error)

func (*NullablePassMfaClientResponse) Set added in v1.2.2

func (*NullablePassMfaClientResponse) UnmarshalJSON added in v1.2.2

func (v *NullablePassMfaClientResponse) UnmarshalJSON(src []byte) error

func (*NullablePassMfaClientResponse) Unset added in v1.2.2

func (v *NullablePassMfaClientResponse) Unset()

type NullablePermissionClientModel

type NullablePermissionClientModel struct {
	// contains filtered or unexported fields
}

func (NullablePermissionClientModel) Get

func (NullablePermissionClientModel) IsSet

func (NullablePermissionClientModel) MarshalJSON

func (v NullablePermissionClientModel) MarshalJSON() ([]byte, error)

func (*NullablePermissionClientModel) Set

func (*NullablePermissionClientModel) UnmarshalJSON

func (v *NullablePermissionClientModel) UnmarshalJSON(src []byte) error

func (*NullablePermissionClientModel) Unset

func (v *NullablePermissionClientModel) Unset()

type NullableRequestAgainClientModel

type NullableRequestAgainClientModel struct {
	// contains filtered or unexported fields
}

func (NullableRequestAgainClientModel) Get

func (NullableRequestAgainClientModel) IsSet

func (NullableRequestAgainClientModel) MarshalJSON

func (v NullableRequestAgainClientModel) MarshalJSON() ([]byte, error)

func (*NullableRequestAgainClientModel) Set

func (*NullableRequestAgainClientModel) UnmarshalJSON

func (v *NullableRequestAgainClientModel) UnmarshalJSON(src []byte) error

func (*NullableRequestAgainClientModel) Unset

type NullableRequestCustomFieldModel added in v1.2.2

type NullableRequestCustomFieldModel struct {
	// contains filtered or unexported fields
}

func NewNullableRequestCustomFieldModel added in v1.2.2

func NewNullableRequestCustomFieldModel(val *RequestCustomFieldModel) *NullableRequestCustomFieldModel

func (NullableRequestCustomFieldModel) Get added in v1.2.2

func (NullableRequestCustomFieldModel) IsSet added in v1.2.2

func (NullableRequestCustomFieldModel) MarshalJSON added in v1.2.2

func (v NullableRequestCustomFieldModel) MarshalJSON() ([]byte, error)

func (*NullableRequestCustomFieldModel) Set added in v1.2.2

func (*NullableRequestCustomFieldModel) UnmarshalJSON added in v1.2.2

func (v *NullableRequestCustomFieldModel) UnmarshalJSON(src []byte) error

func (*NullableRequestCustomFieldModel) Unset added in v1.2.2

type NullableRequestCustomFieldValueModel added in v1.2.2

type NullableRequestCustomFieldValueModel struct {
	// contains filtered or unexported fields
}

func NewNullableRequestCustomFieldValueModel added in v1.2.2

func NewNullableRequestCustomFieldValueModel(val *RequestCustomFieldValueModel) *NullableRequestCustomFieldValueModel

func (NullableRequestCustomFieldValueModel) Get added in v1.2.2

func (NullableRequestCustomFieldValueModel) IsSet added in v1.2.2

func (NullableRequestCustomFieldValueModel) MarshalJSON added in v1.2.2

func (v NullableRequestCustomFieldValueModel) MarshalJSON() ([]byte, error)

func (*NullableRequestCustomFieldValueModel) Set added in v1.2.2

func (*NullableRequestCustomFieldValueModel) UnmarshalJSON added in v1.2.2

func (v *NullableRequestCustomFieldValueModel) UnmarshalJSON(src []byte) error

func (*NullableRequestCustomFieldValueModel) Unset added in v1.2.2

type NullableRequestStatusClientModel

type NullableRequestStatusClientModel struct {
	// contains filtered or unexported fields
}

func (NullableRequestStatusClientModel) Get

func (NullableRequestStatusClientModel) IsSet

func (NullableRequestStatusClientModel) MarshalJSON

func (v NullableRequestStatusClientModel) MarshalJSON() ([]byte, error)

func (*NullableRequestStatusClientModel) Set

func (*NullableRequestStatusClientModel) UnmarshalJSON

func (v *NullableRequestStatusClientModel) UnmarshalJSON(src []byte) error

func (*NullableRequestStatusClientModel) Unset

type NullableResourceClientModel

type NullableResourceClientModel struct {
	// contains filtered or unexported fields
}

func NewNullableResourceClientModel

func NewNullableResourceClientModel(val *ResourceClientModel) *NullableResourceClientModel

func (NullableResourceClientModel) Get

func (NullableResourceClientModel) IsSet

func (NullableResourceClientModel) MarshalJSON

func (v NullableResourceClientModel) MarshalJSON() ([]byte, error)

func (*NullableResourceClientModel) Set

func (*NullableResourceClientModel) UnmarshalJSON

func (v *NullableResourceClientModel) UnmarshalJSON(src []byte) error

func (*NullableResourceClientModel) Unset

func (v *NullableResourceClientModel) Unset()

type NullableResourceFilter added in v1.0.0

type NullableResourceFilter struct {
	// contains filtered or unexported fields
}

func NewNullableResourceFilter added in v1.0.0

func NewNullableResourceFilter(val *ResourceFilter) *NullableResourceFilter

func (NullableResourceFilter) Get added in v1.0.0

func (NullableResourceFilter) IsSet added in v1.0.0

func (v NullableResourceFilter) IsSet() bool

func (NullableResourceFilter) MarshalJSON added in v1.0.0

func (v NullableResourceFilter) MarshalJSON() ([]byte, error)

func (*NullableResourceFilter) Set added in v1.0.0

func (*NullableResourceFilter) UnmarshalJSON added in v1.0.0

func (v *NullableResourceFilter) UnmarshalJSON(src []byte) error

func (*NullableResourceFilter) Unset added in v1.0.0

func (v *NullableResourceFilter) Unset()

type NullableResourceFilterType added in v1.0.0

type NullableResourceFilterType struct {
	// contains filtered or unexported fields
}

func NewNullableResourceFilterType added in v1.0.0

func NewNullableResourceFilterType(val *ResourceFilterType) *NullableResourceFilterType

func (NullableResourceFilterType) Get added in v1.0.0

func (NullableResourceFilterType) IsSet added in v1.0.0

func (v NullableResourceFilterType) IsSet() bool

func (NullableResourceFilterType) MarshalJSON added in v1.0.0

func (v NullableResourceFilterType) MarshalJSON() ([]byte, error)

func (*NullableResourceFilterType) Set added in v1.0.0

func (*NullableResourceFilterType) UnmarshalJSON added in v1.0.0

func (v *NullableResourceFilterType) UnmarshalJSON(src []byte) error

func (*NullableResourceFilterType) Unset added in v1.0.0

func (v *NullableResourceFilterType) Unset()

type NullableResourceTypeClientModel

type NullableResourceTypeClientModel struct {
	// contains filtered or unexported fields
}

func (NullableResourceTypeClientModel) Get

func (NullableResourceTypeClientModel) IsSet

func (NullableResourceTypeClientModel) MarshalJSON

func (v NullableResourceTypeClientModel) MarshalJSON() ([]byte, error)

func (*NullableResourceTypeClientModel) Set

func (*NullableResourceTypeClientModel) UnmarshalJSON

func (v *NullableResourceTypeClientModel) UnmarshalJSON(src []byte) error

func (*NullableResourceTypeClientModel) Unset

type NullableSessionTypeClientModel

type NullableSessionTypeClientModel struct {
	// contains filtered or unexported fields
}

func (NullableSessionTypeClientModel) Get

func (NullableSessionTypeClientModel) IsSet

func (NullableSessionTypeClientModel) MarshalJSON

func (v NullableSessionTypeClientModel) MarshalJSON() ([]byte, error)

func (*NullableSessionTypeClientModel) Set

func (*NullableSessionTypeClientModel) UnmarshalJSON

func (v *NullableSessionTypeClientModel) UnmarshalJSON(src []byte) error

func (*NullableSessionTypeClientModel) Unset

func (v *NullableSessionTypeClientModel) Unset()

type NullableStandardMcpRequest added in v1.3.0

type NullableStandardMcpRequest struct {
	// contains filtered or unexported fields
}

func NewNullableStandardMcpRequest added in v1.3.0

func NewNullableStandardMcpRequest(val *StandardMcpRequest) *NullableStandardMcpRequest

func (NullableStandardMcpRequest) Get added in v1.3.0

func (NullableStandardMcpRequest) IsSet added in v1.3.0

func (v NullableStandardMcpRequest) IsSet() bool

func (NullableStandardMcpRequest) MarshalJSON added in v1.3.0

func (v NullableStandardMcpRequest) MarshalJSON() ([]byte, error)

func (*NullableStandardMcpRequest) Set added in v1.3.0

func (*NullableStandardMcpRequest) UnmarshalJSON added in v1.3.0

func (v *NullableStandardMcpRequest) UnmarshalJSON(src []byte) error

func (*NullableStandardMcpRequest) Unset added in v1.3.0

func (v *NullableStandardMcpRequest) 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 NullableSystemPromptClientModel added in v1.2.2

type NullableSystemPromptClientModel struct {
	// contains filtered or unexported fields
}

func NewNullableSystemPromptClientModel added in v1.2.2

func NewNullableSystemPromptClientModel(val *SystemPromptClientModel) *NullableSystemPromptClientModel

func (NullableSystemPromptClientModel) Get added in v1.2.2

func (NullableSystemPromptClientModel) IsSet added in v1.2.2

func (NullableSystemPromptClientModel) MarshalJSON added in v1.2.2

func (v NullableSystemPromptClientModel) MarshalJSON() ([]byte, error)

func (*NullableSystemPromptClientModel) Set added in v1.2.2

func (*NullableSystemPromptClientModel) UnmarshalJSON added in v1.2.2

func (v *NullableSystemPromptClientModel) UnmarshalJSON(src []byte) error

func (*NullableSystemPromptClientModel) Unset added in v1.2.2

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 NullableUnmasked added in v1.2.2

type NullableUnmasked struct {
	// contains filtered or unexported fields
}

func NewNullableUnmasked added in v1.2.2

func NewNullableUnmasked(val *Unmasked) *NullableUnmasked

func (NullableUnmasked) Get added in v1.2.2

func (v NullableUnmasked) Get() *Unmasked

func (NullableUnmasked) IsSet added in v1.2.2

func (v NullableUnmasked) IsSet() bool

func (NullableUnmasked) MarshalJSON added in v1.2.2

func (v NullableUnmasked) MarshalJSON() ([]byte, error)

func (*NullableUnmasked) Set added in v1.2.2

func (v *NullableUnmasked) Set(val *Unmasked)

func (*NullableUnmasked) UnmarshalJSON added in v1.2.2

func (v *NullableUnmasked) UnmarshalJSON(src []byte) error

func (*NullableUnmasked) Unset added in v1.2.2

func (v *NullableUnmasked) Unset()

type NullableUpdateExpiryRequestClientModel added in v1.2.2

type NullableUpdateExpiryRequestClientModel struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateExpiryRequestClientModel added in v1.2.2

func NewNullableUpdateExpiryRequestClientModel(val *UpdateExpiryRequestClientModel) *NullableUpdateExpiryRequestClientModel

func (NullableUpdateExpiryRequestClientModel) Get added in v1.2.2

func (NullableUpdateExpiryRequestClientModel) IsSet added in v1.2.2

func (NullableUpdateExpiryRequestClientModel) MarshalJSON added in v1.2.2

func (v NullableUpdateExpiryRequestClientModel) MarshalJSON() ([]byte, error)

func (*NullableUpdateExpiryRequestClientModel) Set added in v1.2.2

func (*NullableUpdateExpiryRequestClientModel) UnmarshalJSON added in v1.2.2

func (v *NullableUpdateExpiryRequestClientModel) UnmarshalJSON(src []byte) error

func (*NullableUpdateExpiryRequestClientModel) Unset added in v1.2.2

type NullableUpdateRequestFavoriteStateModel added in v1.2.2

type NullableUpdateRequestFavoriteStateModel struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateRequestFavoriteStateModel added in v1.2.2

func NewNullableUpdateRequestFavoriteStateModel(val *UpdateRequestFavoriteStateModel) *NullableUpdateRequestFavoriteStateModel

func (NullableUpdateRequestFavoriteStateModel) Get added in v1.2.2

func (NullableUpdateRequestFavoriteStateModel) IsSet added in v1.2.2

func (NullableUpdateRequestFavoriteStateModel) MarshalJSON added in v1.2.2

func (v NullableUpdateRequestFavoriteStateModel) MarshalJSON() ([]byte, error)

func (*NullableUpdateRequestFavoriteStateModel) Set added in v1.2.2

func (*NullableUpdateRequestFavoriteStateModel) UnmarshalJSON added in v1.2.2

func (v *NullableUpdateRequestFavoriteStateModel) UnmarshalJSON(src []byte) error

func (*NullableUpdateRequestFavoriteStateModel) Unset added in v1.2.2

type NullableUserClientModel

type NullableUserClientModel struct {
	// contains filtered or unexported fields
}

func NewNullableUserClientModel

func NewNullableUserClientModel(val *UserClientModel) *NullableUserClientModel

func (NullableUserClientModel) Get

func (NullableUserClientModel) IsSet

func (v NullableUserClientModel) IsSet() bool

func (NullableUserClientModel) MarshalJSON

func (v NullableUserClientModel) MarshalJSON() ([]byte, error)

func (*NullableUserClientModel) Set

func (*NullableUserClientModel) UnmarshalJSON

func (v *NullableUserClientModel) UnmarshalJSON(src []byte) error

func (*NullableUserClientModel) Unset

func (v *NullableUserClientModel) Unset()

type NullableUserMfaEnrolledResponse added in v1.2.2

type NullableUserMfaEnrolledResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUserMfaEnrolledResponse added in v1.2.2

func NewNullableUserMfaEnrolledResponse(val *UserMfaEnrolledResponse) *NullableUserMfaEnrolledResponse

func (NullableUserMfaEnrolledResponse) Get added in v1.2.2

func (NullableUserMfaEnrolledResponse) IsSet added in v1.2.2

func (NullableUserMfaEnrolledResponse) MarshalJSON added in v1.2.2

func (v NullableUserMfaEnrolledResponse) MarshalJSON() ([]byte, error)

func (*NullableUserMfaEnrolledResponse) Set added in v1.2.2

func (*NullableUserMfaEnrolledResponse) UnmarshalJSON added in v1.2.2

func (v *NullableUserMfaEnrolledResponse) UnmarshalJSON(src []byte) error

func (*NullableUserMfaEnrolledResponse) Unset added in v1.2.2

type NullableUserPersonalToken added in v1.2.2

type NullableUserPersonalToken struct {
	// contains filtered or unexported fields
}

func NewNullableUserPersonalToken added in v1.2.2

func NewNullableUserPersonalToken(val *UserPersonalToken) *NullableUserPersonalToken

func (NullableUserPersonalToken) Get added in v1.2.2

func (NullableUserPersonalToken) IsSet added in v1.2.2

func (v NullableUserPersonalToken) IsSet() bool

func (NullableUserPersonalToken) MarshalJSON added in v1.2.2

func (v NullableUserPersonalToken) MarshalJSON() ([]byte, error)

func (*NullableUserPersonalToken) Set added in v1.2.2

func (*NullableUserPersonalToken) UnmarshalJSON added in v1.2.2

func (v *NullableUserPersonalToken) UnmarshalJSON(src []byte) error

func (*NullableUserPersonalToken) Unset added in v1.2.2

func (v *NullableUserPersonalToken) Unset()

type NullableUserSessionClientModel added in v1.0.0

type NullableUserSessionClientModel struct {
	// contains filtered or unexported fields
}

func NewNullableUserSessionClientModel added in v1.0.0

func NewNullableUserSessionClientModel(val *UserSessionClientModel) *NullableUserSessionClientModel

func (NullableUserSessionClientModel) Get added in v1.0.0

func (NullableUserSessionClientModel) IsSet added in v1.0.0

func (NullableUserSessionClientModel) MarshalJSON added in v1.0.0

func (v NullableUserSessionClientModel) MarshalJSON() ([]byte, error)

func (*NullableUserSessionClientModel) Set added in v1.0.0

func (*NullableUserSessionClientModel) UnmarshalJSON added in v1.0.0

func (v *NullableUserSessionClientModel) UnmarshalJSON(src []byte) error

func (*NullableUserSessionClientModel) Unset added in v1.0.0

func (v *NullableUserSessionClientModel) Unset()

type NullableUserSettingsClientModel added in v1.1.0

type NullableUserSettingsClientModel struct {
	// contains filtered or unexported fields
}

func NewNullableUserSettingsClientModel added in v1.1.0

func NewNullableUserSettingsClientModel(val *UserSettingsClientModel) *NullableUserSettingsClientModel

func (NullableUserSettingsClientModel) Get added in v1.1.0

func (NullableUserSettingsClientModel) IsSet added in v1.1.0

func (NullableUserSettingsClientModel) MarshalJSON added in v1.1.0

func (v NullableUserSettingsClientModel) MarshalJSON() ([]byte, error)

func (*NullableUserSettingsClientModel) Set added in v1.1.0

func (*NullableUserSettingsClientModel) UnmarshalJSON added in v1.1.0

func (v *NullableUserSettingsClientModel) UnmarshalJSON(src []byte) error

func (*NullableUserSettingsClientModel) Unset added in v1.1.0

type PaginatedClientResponseModelAccessRequestClientModel

type PaginatedClientResponseModelAccessRequestClientModel struct {
	Data       []AccessRequestClientModel `json:"data"`
	Pagination PaginationClientInfoModel  `json:"pagination"`
}

PaginatedClientResponseModelAccessRequestClientModel struct for PaginatedClientResponseModelAccessRequestClientModel

func NewPaginatedClientResponseModelAccessRequestClientModel

func NewPaginatedClientResponseModelAccessRequestClientModel(data []AccessRequestClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelAccessRequestClientModel

NewPaginatedClientResponseModelAccessRequestClientModel instantiates a new PaginatedClientResponseModelAccessRequestClientModel 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 NewPaginatedClientResponseModelAccessRequestClientModelWithDefaults

func NewPaginatedClientResponseModelAccessRequestClientModelWithDefaults() *PaginatedClientResponseModelAccessRequestClientModel

NewPaginatedClientResponseModelAccessRequestClientModelWithDefaults instantiates a new PaginatedClientResponseModelAccessRequestClientModel 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 (*PaginatedClientResponseModelAccessRequestClientModel) GetData

GetData returns the Data field value

func (*PaginatedClientResponseModelAccessRequestClientModel) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelAccessRequestClientModel) GetPagination

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelAccessRequestClientModel) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelAccessRequestClientModel) MarshalJSON

func (*PaginatedClientResponseModelAccessRequestClientModel) SetData

SetData sets field value

func (*PaginatedClientResponseModelAccessRequestClientModel) SetPagination

SetPagination sets field value

func (PaginatedClientResponseModelAccessRequestClientModel) ToMap

func (*PaginatedClientResponseModelAccessRequestClientModel) UnmarshalJSON

func (o *PaginatedClientResponseModelAccessRequestClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginatedClientResponseModelAccessRequestTemplateClientModel

type PaginatedClientResponseModelAccessRequestTemplateClientModel struct {
	Data       []AccessRequestTemplateClientModel `json:"data"`
	Pagination PaginationClientInfoModel          `json:"pagination"`
}

PaginatedClientResponseModelAccessRequestTemplateClientModel struct for PaginatedClientResponseModelAccessRequestTemplateClientModel

func NewPaginatedClientResponseModelAccessRequestTemplateClientModel

func NewPaginatedClientResponseModelAccessRequestTemplateClientModel(data []AccessRequestTemplateClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelAccessRequestTemplateClientModel

NewPaginatedClientResponseModelAccessRequestTemplateClientModel instantiates a new PaginatedClientResponseModelAccessRequestTemplateClientModel 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 NewPaginatedClientResponseModelAccessRequestTemplateClientModelWithDefaults

func NewPaginatedClientResponseModelAccessRequestTemplateClientModelWithDefaults() *PaginatedClientResponseModelAccessRequestTemplateClientModel

NewPaginatedClientResponseModelAccessRequestTemplateClientModelWithDefaults instantiates a new PaginatedClientResponseModelAccessRequestTemplateClientModel 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 (*PaginatedClientResponseModelAccessRequestTemplateClientModel) GetData

GetData returns the Data field value

func (*PaginatedClientResponseModelAccessRequestTemplateClientModel) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelAccessRequestTemplateClientModel) GetPagination

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelAccessRequestTemplateClientModel) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelAccessRequestTemplateClientModel) MarshalJSON

func (*PaginatedClientResponseModelAccessRequestTemplateClientModel) SetData

SetData sets field value

func (*PaginatedClientResponseModelAccessRequestTemplateClientModel) SetPagination

SetPagination sets field value

func (PaginatedClientResponseModelAccessRequestTemplateClientModel) ToMap

func (*PaginatedClientResponseModelAccessRequestTemplateClientModel) UnmarshalJSON

type PaginatedClientResponseModelAccessSessionClientModel

type PaginatedClientResponseModelAccessSessionClientModel struct {
	Data       []AccessSessionClientModel `json:"data"`
	Pagination PaginationClientInfoModel  `json:"pagination"`
}

PaginatedClientResponseModelAccessSessionClientModel struct for PaginatedClientResponseModelAccessSessionClientModel

func NewPaginatedClientResponseModelAccessSessionClientModel

func NewPaginatedClientResponseModelAccessSessionClientModel(data []AccessSessionClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelAccessSessionClientModel

NewPaginatedClientResponseModelAccessSessionClientModel instantiates a new PaginatedClientResponseModelAccessSessionClientModel 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 NewPaginatedClientResponseModelAccessSessionClientModelWithDefaults

func NewPaginatedClientResponseModelAccessSessionClientModelWithDefaults() *PaginatedClientResponseModelAccessSessionClientModel

NewPaginatedClientResponseModelAccessSessionClientModelWithDefaults instantiates a new PaginatedClientResponseModelAccessSessionClientModel 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 (*PaginatedClientResponseModelAccessSessionClientModel) GetData

GetData returns the Data field value

func (*PaginatedClientResponseModelAccessSessionClientModel) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelAccessSessionClientModel) GetPagination

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelAccessSessionClientModel) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelAccessSessionClientModel) MarshalJSON

func (*PaginatedClientResponseModelAccessSessionClientModel) SetData

SetData sets field value

func (*PaginatedClientResponseModelAccessSessionClientModel) SetPagination

SetPagination sets field value

func (PaginatedClientResponseModelAccessSessionClientModel) ToMap

func (*PaginatedClientResponseModelAccessSessionClientModel) UnmarshalJSON

func (o *PaginatedClientResponseModelAccessSessionClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginatedClientResponseModelAccessSessionsGroupClientModel

type PaginatedClientResponseModelAccessSessionsGroupClientModel struct {
	Data       []AccessSessionsGroupClientModel `json:"data"`
	Pagination PaginationClientInfoModel        `json:"pagination"`
}

PaginatedClientResponseModelAccessSessionsGroupClientModel struct for PaginatedClientResponseModelAccessSessionsGroupClientModel

func NewPaginatedClientResponseModelAccessSessionsGroupClientModel

func NewPaginatedClientResponseModelAccessSessionsGroupClientModel(data []AccessSessionsGroupClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelAccessSessionsGroupClientModel

NewPaginatedClientResponseModelAccessSessionsGroupClientModel instantiates a new PaginatedClientResponseModelAccessSessionsGroupClientModel 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 NewPaginatedClientResponseModelAccessSessionsGroupClientModelWithDefaults

func NewPaginatedClientResponseModelAccessSessionsGroupClientModelWithDefaults() *PaginatedClientResponseModelAccessSessionsGroupClientModel

NewPaginatedClientResponseModelAccessSessionsGroupClientModelWithDefaults instantiates a new PaginatedClientResponseModelAccessSessionsGroupClientModel 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 (*PaginatedClientResponseModelAccessSessionsGroupClientModel) GetData

GetData returns the Data field value

func (*PaginatedClientResponseModelAccessSessionsGroupClientModel) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelAccessSessionsGroupClientModel) GetPagination

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelAccessSessionsGroupClientModel) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelAccessSessionsGroupClientModel) MarshalJSON

func (*PaginatedClientResponseModelAccessSessionsGroupClientModel) SetData

SetData sets field value

func (*PaginatedClientResponseModelAccessSessionsGroupClientModel) SetPagination

SetPagination sets field value

func (PaginatedClientResponseModelAccessSessionsGroupClientModel) ToMap

func (*PaginatedClientResponseModelAccessSessionsGroupClientModel) UnmarshalJSON

type PaginatedClientResponseModelAccessUnitClientModel

type PaginatedClientResponseModelAccessUnitClientModel struct {
	Data       []AccessUnitClientModel   `json:"data"`
	Pagination PaginationClientInfoModel `json:"pagination"`
}

PaginatedClientResponseModelAccessUnitClientModel struct for PaginatedClientResponseModelAccessUnitClientModel

func NewPaginatedClientResponseModelAccessUnitClientModel

func NewPaginatedClientResponseModelAccessUnitClientModel(data []AccessUnitClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelAccessUnitClientModel

NewPaginatedClientResponseModelAccessUnitClientModel instantiates a new PaginatedClientResponseModelAccessUnitClientModel 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 NewPaginatedClientResponseModelAccessUnitClientModelWithDefaults

func NewPaginatedClientResponseModelAccessUnitClientModelWithDefaults() *PaginatedClientResponseModelAccessUnitClientModel

NewPaginatedClientResponseModelAccessUnitClientModelWithDefaults instantiates a new PaginatedClientResponseModelAccessUnitClientModel 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 (*PaginatedClientResponseModelAccessUnitClientModel) GetData

GetData returns the Data field value

func (*PaginatedClientResponseModelAccessUnitClientModel) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelAccessUnitClientModel) GetPagination

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelAccessUnitClientModel) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelAccessUnitClientModel) MarshalJSON

func (*PaginatedClientResponseModelAccessUnitClientModel) SetData

SetData sets field value

func (*PaginatedClientResponseModelAccessUnitClientModel) SetPagination

SetPagination sets field value

func (PaginatedClientResponseModelAccessUnitClientModel) ToMap

func (o PaginatedClientResponseModelAccessUnitClientModel) ToMap() (map[string]interface{}, error)

func (*PaginatedClientResponseModelAccessUnitClientModel) UnmarshalJSON

func (o *PaginatedClientResponseModelAccessUnitClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginatedClientResponseModelAssistantConversationClientModel added in v1.3.0

type PaginatedClientResponseModelAssistantConversationClientModel struct {
	Data       []AssistantConversationClientModel `json:"data"`
	Pagination PaginationClientInfoModel          `json:"pagination"`
}

PaginatedClientResponseModelAssistantConversationClientModel struct for PaginatedClientResponseModelAssistantConversationClientModel

func NewPaginatedClientResponseModelAssistantConversationClientModel added in v1.3.0

func NewPaginatedClientResponseModelAssistantConversationClientModel(data []AssistantConversationClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelAssistantConversationClientModel

NewPaginatedClientResponseModelAssistantConversationClientModel instantiates a new PaginatedClientResponseModelAssistantConversationClientModel 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 NewPaginatedClientResponseModelAssistantConversationClientModelWithDefaults added in v1.3.0

func NewPaginatedClientResponseModelAssistantConversationClientModelWithDefaults() *PaginatedClientResponseModelAssistantConversationClientModel

NewPaginatedClientResponseModelAssistantConversationClientModelWithDefaults instantiates a new PaginatedClientResponseModelAssistantConversationClientModel 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 (*PaginatedClientResponseModelAssistantConversationClientModel) GetData added in v1.3.0

GetData returns the Data field value

func (*PaginatedClientResponseModelAssistantConversationClientModel) GetDataOk added in v1.3.0

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelAssistantConversationClientModel) GetPagination added in v1.3.0

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelAssistantConversationClientModel) GetPaginationOk added in v1.3.0

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelAssistantConversationClientModel) MarshalJSON added in v1.3.0

func (*PaginatedClientResponseModelAssistantConversationClientModel) SetData added in v1.3.0

SetData sets field value

func (*PaginatedClientResponseModelAssistantConversationClientModel) SetPagination added in v1.3.0

SetPagination sets field value

func (PaginatedClientResponseModelAssistantConversationClientModel) ToMap added in v1.3.0

func (*PaginatedClientResponseModelAssistantConversationClientModel) UnmarshalJSON added in v1.3.0

type PaginatedClientResponseModelAssistantMessageClientModel added in v1.3.0

type PaginatedClientResponseModelAssistantMessageClientModel struct {
	Data       []AssistantMessageClientModel `json:"data"`
	Pagination PaginationClientInfoModel     `json:"pagination"`
}

PaginatedClientResponseModelAssistantMessageClientModel struct for PaginatedClientResponseModelAssistantMessageClientModel

func NewPaginatedClientResponseModelAssistantMessageClientModel added in v1.3.0

func NewPaginatedClientResponseModelAssistantMessageClientModel(data []AssistantMessageClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelAssistantMessageClientModel

NewPaginatedClientResponseModelAssistantMessageClientModel instantiates a new PaginatedClientResponseModelAssistantMessageClientModel 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 NewPaginatedClientResponseModelAssistantMessageClientModelWithDefaults added in v1.3.0

func NewPaginatedClientResponseModelAssistantMessageClientModelWithDefaults() *PaginatedClientResponseModelAssistantMessageClientModel

NewPaginatedClientResponseModelAssistantMessageClientModelWithDefaults instantiates a new PaginatedClientResponseModelAssistantMessageClientModel 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 (*PaginatedClientResponseModelAssistantMessageClientModel) GetData added in v1.3.0

GetData returns the Data field value

func (*PaginatedClientResponseModelAssistantMessageClientModel) GetDataOk added in v1.3.0

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelAssistantMessageClientModel) GetPagination added in v1.3.0

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelAssistantMessageClientModel) GetPaginationOk added in v1.3.0

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelAssistantMessageClientModel) MarshalJSON added in v1.3.0

func (*PaginatedClientResponseModelAssistantMessageClientModel) SetData added in v1.3.0

SetData sets field value

func (*PaginatedClientResponseModelAssistantMessageClientModel) SetPagination added in v1.3.0

SetPagination sets field value

func (PaginatedClientResponseModelAssistantMessageClientModel) ToMap added in v1.3.0

func (*PaginatedClientResponseModelAssistantMessageClientModel) UnmarshalJSON added in v1.3.0

func (o *PaginatedClientResponseModelAssistantMessageClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginatedClientResponseModelBundleClientModel

type PaginatedClientResponseModelBundleClientModel struct {
	Data       []BundleClientModel       `json:"data"`
	Pagination PaginationClientInfoModel `json:"pagination"`
}

PaginatedClientResponseModelBundleClientModel struct for PaginatedClientResponseModelBundleClientModel

func NewPaginatedClientResponseModelBundleClientModel

func NewPaginatedClientResponseModelBundleClientModel(data []BundleClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelBundleClientModel

NewPaginatedClientResponseModelBundleClientModel instantiates a new PaginatedClientResponseModelBundleClientModel 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 NewPaginatedClientResponseModelBundleClientModelWithDefaults

func NewPaginatedClientResponseModelBundleClientModelWithDefaults() *PaginatedClientResponseModelBundleClientModel

NewPaginatedClientResponseModelBundleClientModelWithDefaults instantiates a new PaginatedClientResponseModelBundleClientModel 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 (*PaginatedClientResponseModelBundleClientModel) GetData

GetData returns the Data field value

func (*PaginatedClientResponseModelBundleClientModel) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelBundleClientModel) GetPagination

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelBundleClientModel) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelBundleClientModel) MarshalJSON

func (*PaginatedClientResponseModelBundleClientModel) SetData

SetData sets field value

func (*PaginatedClientResponseModelBundleClientModel) SetPagination

SetPagination sets field value

func (PaginatedClientResponseModelBundleClientModel) ToMap

func (o PaginatedClientResponseModelBundleClientModel) ToMap() (map[string]interface{}, error)

func (*PaginatedClientResponseModelBundleClientModel) UnmarshalJSON

func (o *PaginatedClientResponseModelBundleClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginatedClientResponseModelFilterOptionClientModel added in v1.3.0

type PaginatedClientResponseModelFilterOptionClientModel struct {
	Data       []FilterOptionClientModel `json:"data"`
	Pagination PaginationClientInfoModel `json:"pagination"`
}

PaginatedClientResponseModelFilterOptionClientModel struct for PaginatedClientResponseModelFilterOptionClientModel

func NewPaginatedClientResponseModelFilterOptionClientModel added in v1.3.0

func NewPaginatedClientResponseModelFilterOptionClientModel(data []FilterOptionClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelFilterOptionClientModel

NewPaginatedClientResponseModelFilterOptionClientModel instantiates a new PaginatedClientResponseModelFilterOptionClientModel 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 NewPaginatedClientResponseModelFilterOptionClientModelWithDefaults added in v1.3.0

func NewPaginatedClientResponseModelFilterOptionClientModelWithDefaults() *PaginatedClientResponseModelFilterOptionClientModel

NewPaginatedClientResponseModelFilterOptionClientModelWithDefaults instantiates a new PaginatedClientResponseModelFilterOptionClientModel 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 (*PaginatedClientResponseModelFilterOptionClientModel) GetData added in v1.3.0

GetData returns the Data field value

func (*PaginatedClientResponseModelFilterOptionClientModel) GetDataOk added in v1.3.0

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelFilterOptionClientModel) GetPagination added in v1.3.0

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelFilterOptionClientModel) GetPaginationOk added in v1.3.0

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelFilterOptionClientModel) MarshalJSON added in v1.3.0

func (*PaginatedClientResponseModelFilterOptionClientModel) SetData added in v1.3.0

SetData sets field value

func (*PaginatedClientResponseModelFilterOptionClientModel) SetPagination added in v1.3.0

SetPagination sets field value

func (PaginatedClientResponseModelFilterOptionClientModel) ToMap added in v1.3.0

func (*PaginatedClientResponseModelFilterOptionClientModel) UnmarshalJSON added in v1.3.0

func (o *PaginatedClientResponseModelFilterOptionClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginatedClientResponseModelGranteeClientModel added in v1.2.2

type PaginatedClientResponseModelGranteeClientModel struct {
	Data       []GranteeClientModel      `json:"data"`
	Pagination PaginationClientInfoModel `json:"pagination"`
}

PaginatedClientResponseModelGranteeClientModel struct for PaginatedClientResponseModelGranteeClientModel

func NewPaginatedClientResponseModelGranteeClientModel added in v1.2.2

func NewPaginatedClientResponseModelGranteeClientModel(data []GranteeClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelGranteeClientModel

NewPaginatedClientResponseModelGranteeClientModel instantiates a new PaginatedClientResponseModelGranteeClientModel 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 NewPaginatedClientResponseModelGranteeClientModelWithDefaults added in v1.2.2

func NewPaginatedClientResponseModelGranteeClientModelWithDefaults() *PaginatedClientResponseModelGranteeClientModel

NewPaginatedClientResponseModelGranteeClientModelWithDefaults instantiates a new PaginatedClientResponseModelGranteeClientModel 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 (*PaginatedClientResponseModelGranteeClientModel) GetData added in v1.2.2

GetData returns the Data field value

func (*PaginatedClientResponseModelGranteeClientModel) GetDataOk added in v1.2.2

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelGranteeClientModel) GetPagination added in v1.2.2

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelGranteeClientModel) GetPaginationOk added in v1.2.2

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelGranteeClientModel) MarshalJSON added in v1.2.2

func (*PaginatedClientResponseModelGranteeClientModel) SetData added in v1.2.2

SetData sets field value

func (*PaginatedClientResponseModelGranteeClientModel) SetPagination added in v1.2.2

SetPagination sets field value

func (PaginatedClientResponseModelGranteeClientModel) ToMap added in v1.2.2

func (o PaginatedClientResponseModelGranteeClientModel) ToMap() (map[string]interface{}, error)

func (*PaginatedClientResponseModelGranteeClientModel) UnmarshalJSON added in v1.2.2

func (o *PaginatedClientResponseModelGranteeClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginatedClientResponseModelIntegrationClientModel

type PaginatedClientResponseModelIntegrationClientModel struct {
	Data       []IntegrationClientModel  `json:"data"`
	Pagination PaginationClientInfoModel `json:"pagination"`
}

PaginatedClientResponseModelIntegrationClientModel struct for PaginatedClientResponseModelIntegrationClientModel

func NewPaginatedClientResponseModelIntegrationClientModel

func NewPaginatedClientResponseModelIntegrationClientModel(data []IntegrationClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelIntegrationClientModel

NewPaginatedClientResponseModelIntegrationClientModel instantiates a new PaginatedClientResponseModelIntegrationClientModel 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 NewPaginatedClientResponseModelIntegrationClientModelWithDefaults

func NewPaginatedClientResponseModelIntegrationClientModelWithDefaults() *PaginatedClientResponseModelIntegrationClientModel

NewPaginatedClientResponseModelIntegrationClientModelWithDefaults instantiates a new PaginatedClientResponseModelIntegrationClientModel 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 (*PaginatedClientResponseModelIntegrationClientModel) GetData

GetData returns the Data field value

func (*PaginatedClientResponseModelIntegrationClientModel) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelIntegrationClientModel) GetPagination

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelIntegrationClientModel) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelIntegrationClientModel) MarshalJSON

func (*PaginatedClientResponseModelIntegrationClientModel) SetData

SetData sets field value

func (*PaginatedClientResponseModelIntegrationClientModel) SetPagination

SetPagination sets field value

func (PaginatedClientResponseModelIntegrationClientModel) ToMap

func (*PaginatedClientResponseModelIntegrationClientModel) UnmarshalJSON

func (o *PaginatedClientResponseModelIntegrationClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginatedClientResponseModelPermissionClientModel

type PaginatedClientResponseModelPermissionClientModel struct {
	Data       []PermissionClientModel   `json:"data"`
	Pagination PaginationClientInfoModel `json:"pagination"`
}

PaginatedClientResponseModelPermissionClientModel struct for PaginatedClientResponseModelPermissionClientModel

func NewPaginatedClientResponseModelPermissionClientModel

func NewPaginatedClientResponseModelPermissionClientModel(data []PermissionClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelPermissionClientModel

NewPaginatedClientResponseModelPermissionClientModel instantiates a new PaginatedClientResponseModelPermissionClientModel 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 NewPaginatedClientResponseModelPermissionClientModelWithDefaults

func NewPaginatedClientResponseModelPermissionClientModelWithDefaults() *PaginatedClientResponseModelPermissionClientModel

NewPaginatedClientResponseModelPermissionClientModelWithDefaults instantiates a new PaginatedClientResponseModelPermissionClientModel 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 (*PaginatedClientResponseModelPermissionClientModel) GetData

GetData returns the Data field value

func (*PaginatedClientResponseModelPermissionClientModel) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelPermissionClientModel) GetPagination

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelPermissionClientModel) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelPermissionClientModel) MarshalJSON

func (*PaginatedClientResponseModelPermissionClientModel) SetData

SetData sets field value

func (*PaginatedClientResponseModelPermissionClientModel) SetPagination

SetPagination sets field value

func (PaginatedClientResponseModelPermissionClientModel) ToMap

func (o PaginatedClientResponseModelPermissionClientModel) ToMap() (map[string]interface{}, error)

func (*PaginatedClientResponseModelPermissionClientModel) UnmarshalJSON

func (o *PaginatedClientResponseModelPermissionClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginatedClientResponseModelResourceClientModel

type PaginatedClientResponseModelResourceClientModel struct {
	Data       []ResourceClientModel     `json:"data"`
	Pagination PaginationClientInfoModel `json:"pagination"`
}

PaginatedClientResponseModelResourceClientModel struct for PaginatedClientResponseModelResourceClientModel

func NewPaginatedClientResponseModelResourceClientModel

func NewPaginatedClientResponseModelResourceClientModel(data []ResourceClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelResourceClientModel

NewPaginatedClientResponseModelResourceClientModel instantiates a new PaginatedClientResponseModelResourceClientModel 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 NewPaginatedClientResponseModelResourceClientModelWithDefaults

func NewPaginatedClientResponseModelResourceClientModelWithDefaults() *PaginatedClientResponseModelResourceClientModel

NewPaginatedClientResponseModelResourceClientModelWithDefaults instantiates a new PaginatedClientResponseModelResourceClientModel 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 (*PaginatedClientResponseModelResourceClientModel) GetData

GetData returns the Data field value

func (*PaginatedClientResponseModelResourceClientModel) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelResourceClientModel) GetPagination

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelResourceClientModel) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelResourceClientModel) MarshalJSON

func (*PaginatedClientResponseModelResourceClientModel) SetData

SetData sets field value

func (*PaginatedClientResponseModelResourceClientModel) SetPagination

SetPagination sets field value

func (PaginatedClientResponseModelResourceClientModel) ToMap

func (o PaginatedClientResponseModelResourceClientModel) ToMap() (map[string]interface{}, error)

func (*PaginatedClientResponseModelResourceClientModel) UnmarshalJSON

func (o *PaginatedClientResponseModelResourceClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginatedClientResponseModelResourceTypeClientModel

type PaginatedClientResponseModelResourceTypeClientModel struct {
	Data       []ResourceTypeClientModel `json:"data"`
	Pagination PaginationClientInfoModel `json:"pagination"`
}

PaginatedClientResponseModelResourceTypeClientModel struct for PaginatedClientResponseModelResourceTypeClientModel

func NewPaginatedClientResponseModelResourceTypeClientModel

func NewPaginatedClientResponseModelResourceTypeClientModel(data []ResourceTypeClientModel, pagination PaginationClientInfoModel) *PaginatedClientResponseModelResourceTypeClientModel

NewPaginatedClientResponseModelResourceTypeClientModel instantiates a new PaginatedClientResponseModelResourceTypeClientModel 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 NewPaginatedClientResponseModelResourceTypeClientModelWithDefaults

func NewPaginatedClientResponseModelResourceTypeClientModelWithDefaults() *PaginatedClientResponseModelResourceTypeClientModel

NewPaginatedClientResponseModelResourceTypeClientModelWithDefaults instantiates a new PaginatedClientResponseModelResourceTypeClientModel 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 (*PaginatedClientResponseModelResourceTypeClientModel) GetData

GetData returns the Data field value

func (*PaginatedClientResponseModelResourceTypeClientModel) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PaginatedClientResponseModelResourceTypeClientModel) GetPagination

GetPagination returns the Pagination field value

func (*PaginatedClientResponseModelResourceTypeClientModel) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value and a boolean to check if the value has been set.

func (PaginatedClientResponseModelResourceTypeClientModel) MarshalJSON

func (*PaginatedClientResponseModelResourceTypeClientModel) SetData

SetData sets field value

func (*PaginatedClientResponseModelResourceTypeClientModel) SetPagination

SetPagination sets field value

func (PaginatedClientResponseModelResourceTypeClientModel) ToMap

func (*PaginatedClientResponseModelResourceTypeClientModel) UnmarshalJSON

func (o *PaginatedClientResponseModelResourceTypeClientModel) UnmarshalJSON(bytes []byte) (err error)

type PaginationClientInfoModel

type PaginationClientInfoModel struct {
	Limit   int32         `json:"limit"`
	Offset  int32         `json:"offset"`
	Total   NullableInt32 `json:"total,omitempty"`
	HasMore NullableBool  `json:"has_more,omitempty"`
}

PaginationClientInfoModel struct for PaginationClientInfoModel

func NewPaginationClientInfoModel

func NewPaginationClientInfoModel(limit int32, offset int32) *PaginationClientInfoModel

NewPaginationClientInfoModel instantiates a new PaginationClientInfoModel 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 NewPaginationClientInfoModelWithDefaults

func NewPaginationClientInfoModelWithDefaults() *PaginationClientInfoModel

NewPaginationClientInfoModelWithDefaults instantiates a new PaginationClientInfoModel 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 (*PaginationClientInfoModel) GetHasMore added in v1.2.2

func (o *PaginationClientInfoModel) GetHasMore() bool

GetHasMore returns the HasMore field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaginationClientInfoModel) GetHasMoreOk added in v1.2.2

func (o *PaginationClientInfoModel) GetHasMoreOk() (*bool, bool)

GetHasMoreOk returns a tuple with the HasMore field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PaginationClientInfoModel) GetLimit

func (o *PaginationClientInfoModel) GetLimit() int32

GetLimit returns the Limit field value

func (*PaginationClientInfoModel) GetLimitOk

func (o *PaginationClientInfoModel) GetLimitOk() (*int32, bool)

GetLimitOk returns a tuple with the Limit field value and a boolean to check if the value has been set.

func (*PaginationClientInfoModel) GetOffset

func (o *PaginationClientInfoModel) GetOffset() int32

GetOffset returns the Offset field value

func (*PaginationClientInfoModel) GetOffsetOk

func (o *PaginationClientInfoModel) GetOffsetOk() (*int32, bool)

GetOffsetOk returns a tuple with the Offset field value and a boolean to check if the value has been set.

func (*PaginationClientInfoModel) GetTotal

func (o *PaginationClientInfoModel) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaginationClientInfoModel) GetTotalOk

func (o *PaginationClientInfoModel) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PaginationClientInfoModel) HasHasMore added in v1.2.2

func (o *PaginationClientInfoModel) HasHasMore() bool

HasHasMore returns a boolean if a field has been set.

func (*PaginationClientInfoModel) HasTotal

func (o *PaginationClientInfoModel) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (PaginationClientInfoModel) MarshalJSON

func (o PaginationClientInfoModel) MarshalJSON() ([]byte, error)

func (*PaginationClientInfoModel) SetHasMore added in v1.2.2

func (o *PaginationClientInfoModel) SetHasMore(v bool)

SetHasMore gets a reference to the given NullableBool and assigns it to the HasMore field.

func (*PaginationClientInfoModel) SetHasMoreNil added in v1.2.2

func (o *PaginationClientInfoModel) SetHasMoreNil()

SetHasMoreNil sets the value for HasMore to be an explicit nil

func (*PaginationClientInfoModel) SetLimit

func (o *PaginationClientInfoModel) SetLimit(v int32)

SetLimit sets field value

func (*PaginationClientInfoModel) SetOffset

func (o *PaginationClientInfoModel) SetOffset(v int32)

SetOffset sets field value

func (*PaginationClientInfoModel) SetTotal

func (o *PaginationClientInfoModel) SetTotal(v int32)

SetTotal gets a reference to the given NullableInt32 and assigns it to the Total field.

func (*PaginationClientInfoModel) SetTotalNil

func (o *PaginationClientInfoModel) SetTotalNil()

SetTotalNil sets the value for Total to be an explicit nil

func (PaginationClientInfoModel) ToMap

func (o PaginationClientInfoModel) ToMap() (map[string]interface{}, error)

func (*PaginationClientInfoModel) UnmarshalJSON

func (o *PaginationClientInfoModel) UnmarshalJSON(bytes []byte) (err error)

func (*PaginationClientInfoModel) UnsetHasMore added in v1.2.2

func (o *PaginationClientInfoModel) UnsetHasMore()

UnsetHasMore ensures that no value is present for HasMore, not even an explicit nil

func (*PaginationClientInfoModel) UnsetTotal

func (o *PaginationClientInfoModel) UnsetTotal()

UnsetTotal ensures that no value is present for Total, not even an explicit nil

type PassMfaClientResponse added in v1.2.2

type PassMfaClientResponse struct {
	Message          string                      `json:"message"`
	AffectedRequests AccessRequestsAffectedByMfa `json:"affected_requests"`
}

PassMfaClientResponse struct for PassMfaClientResponse

func NewPassMfaClientResponse added in v1.2.2

func NewPassMfaClientResponse(message string, affectedRequests AccessRequestsAffectedByMfa) *PassMfaClientResponse

NewPassMfaClientResponse instantiates a new PassMfaClientResponse 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 NewPassMfaClientResponseWithDefaults added in v1.2.2

func NewPassMfaClientResponseWithDefaults() *PassMfaClientResponse

NewPassMfaClientResponseWithDefaults instantiates a new PassMfaClientResponse 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 (*PassMfaClientResponse) GetAffectedRequests added in v1.2.2

func (o *PassMfaClientResponse) GetAffectedRequests() AccessRequestsAffectedByMfa

GetAffectedRequests returns the AffectedRequests field value

func (*PassMfaClientResponse) GetAffectedRequestsOk added in v1.2.2

func (o *PassMfaClientResponse) GetAffectedRequestsOk() (*AccessRequestsAffectedByMfa, bool)

GetAffectedRequestsOk returns a tuple with the AffectedRequests field value and a boolean to check if the value has been set.

func (*PassMfaClientResponse) GetMessage added in v1.2.2

func (o *PassMfaClientResponse) GetMessage() string

GetMessage returns the Message field value

func (*PassMfaClientResponse) GetMessageOk added in v1.2.2

func (o *PassMfaClientResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (PassMfaClientResponse) MarshalJSON added in v1.2.2

func (o PassMfaClientResponse) MarshalJSON() ([]byte, error)

func (*PassMfaClientResponse) SetAffectedRequests added in v1.2.2

func (o *PassMfaClientResponse) SetAffectedRequests(v AccessRequestsAffectedByMfa)

SetAffectedRequests sets field value

func (*PassMfaClientResponse) SetMessage added in v1.2.2

func (o *PassMfaClientResponse) SetMessage(v string)

SetMessage sets field value

func (PassMfaClientResponse) ToMap added in v1.2.2

func (o PassMfaClientResponse) ToMap() (map[string]interface{}, error)

func (*PassMfaClientResponse) UnmarshalJSON added in v1.2.2

func (o *PassMfaClientResponse) UnmarshalJSON(bytes []byte) (err error)

type PermissionClientModel

type PermissionClientModel struct {
	Id   string `json:"id"`
	Name string `json:"name"`
}

PermissionClientModel struct for PermissionClientModel

func NewPermissionClientModel

func NewPermissionClientModel(id string, name string) *PermissionClientModel

NewPermissionClientModel instantiates a new PermissionClientModel 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 NewPermissionClientModelWithDefaults

func NewPermissionClientModelWithDefaults() *PermissionClientModel

NewPermissionClientModelWithDefaults instantiates a new PermissionClientModel 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 (*PermissionClientModel) GetId

func (o *PermissionClientModel) GetId() string

GetId returns the Id field value

func (*PermissionClientModel) GetIdOk

func (o *PermissionClientModel) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*PermissionClientModel) GetName

func (o *PermissionClientModel) GetName() string

GetName returns the Name field value

func (*PermissionClientModel) GetNameOk

func (o *PermissionClientModel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (PermissionClientModel) MarshalJSON

func (o PermissionClientModel) MarshalJSON() ([]byte, error)

func (*PermissionClientModel) SetId

func (o *PermissionClientModel) SetId(v string)

SetId sets field value

func (*PermissionClientModel) SetName

func (o *PermissionClientModel) SetName(v string)

SetName sets field value

func (PermissionClientModel) ToMap

func (o PermissionClientModel) ToMap() (map[string]interface{}, error)

func (*PermissionClientModel) UnmarshalJSON

func (o *PermissionClientModel) UnmarshalJSON(bytes []byte) (err error)

type RequestAgainClientModel

type RequestAgainClientModel struct {
	Justification             string            `json:"justification"`
	CustomFields              map[string]string `json:"custom_fields,omitempty"`
	RunPreApprovalValidations NullableBool      `json:"run_pre_approval_validations,omitempty"`
}

RequestAgainClientModel struct for RequestAgainClientModel

func NewRequestAgainClientModel

func NewRequestAgainClientModel(justification string) *RequestAgainClientModel

NewRequestAgainClientModel instantiates a new RequestAgainClientModel 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 NewRequestAgainClientModelWithDefaults

func NewRequestAgainClientModelWithDefaults() *RequestAgainClientModel

NewRequestAgainClientModelWithDefaults instantiates a new RequestAgainClientModel 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 (*RequestAgainClientModel) GetCustomFields added in v1.2.2

func (o *RequestAgainClientModel) GetCustomFields() map[string]string

GetCustomFields returns the CustomFields field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestAgainClientModel) GetCustomFieldsOk added in v1.2.2

func (o *RequestAgainClientModel) GetCustomFieldsOk() (*map[string]string, bool)

GetCustomFieldsOk returns a tuple with the CustomFields field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestAgainClientModel) GetJustification

func (o *RequestAgainClientModel) GetJustification() string

GetJustification returns the Justification field value

func (*RequestAgainClientModel) GetJustificationOk

func (o *RequestAgainClientModel) GetJustificationOk() (*string, bool)

GetJustificationOk returns a tuple with the Justification field value and a boolean to check if the value has been set.

func (*RequestAgainClientModel) GetRunPreApprovalValidations added in v1.2.2

func (o *RequestAgainClientModel) GetRunPreApprovalValidations() bool

GetRunPreApprovalValidations returns the RunPreApprovalValidations field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestAgainClientModel) GetRunPreApprovalValidationsOk added in v1.2.2

func (o *RequestAgainClientModel) GetRunPreApprovalValidationsOk() (*bool, bool)

GetRunPreApprovalValidationsOk returns a tuple with the RunPreApprovalValidations field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestAgainClientModel) HasCustomFields added in v1.2.2

func (o *RequestAgainClientModel) HasCustomFields() bool

HasCustomFields returns a boolean if a field has been set.

func (*RequestAgainClientModel) HasRunPreApprovalValidations added in v1.2.2

func (o *RequestAgainClientModel) HasRunPreApprovalValidations() bool

HasRunPreApprovalValidations returns a boolean if a field has been set.

func (RequestAgainClientModel) MarshalJSON

func (o RequestAgainClientModel) MarshalJSON() ([]byte, error)

func (*RequestAgainClientModel) SetCustomFields added in v1.2.2

func (o *RequestAgainClientModel) SetCustomFields(v map[string]string)

SetCustomFields gets a reference to the given map[string]string and assigns it to the CustomFields field.

func (*RequestAgainClientModel) SetJustification

func (o *RequestAgainClientModel) SetJustification(v string)

SetJustification sets field value

func (*RequestAgainClientModel) SetRunPreApprovalValidations added in v1.2.2

func (o *RequestAgainClientModel) SetRunPreApprovalValidations(v bool)

SetRunPreApprovalValidations gets a reference to the given NullableBool and assigns it to the RunPreApprovalValidations field.

func (*RequestAgainClientModel) SetRunPreApprovalValidationsNil added in v1.2.2

func (o *RequestAgainClientModel) SetRunPreApprovalValidationsNil()

SetRunPreApprovalValidationsNil sets the value for RunPreApprovalValidations to be an explicit nil

func (RequestAgainClientModel) ToMap

func (o RequestAgainClientModel) ToMap() (map[string]interface{}, error)

func (*RequestAgainClientModel) UnmarshalJSON

func (o *RequestAgainClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*RequestAgainClientModel) UnsetRunPreApprovalValidations added in v1.2.2

func (o *RequestAgainClientModel) UnsetRunPreApprovalValidations()

UnsetRunPreApprovalValidations ensures that no value is present for RunPreApprovalValidations, not even an explicit nil

type RequestCustomFieldModel added in v1.2.2

type RequestCustomFieldModel struct {
	Id          string                         `json:"id"`
	Type        string                         `json:"type"`
	Label       string                         `json:"label"`
	Placeholder string                         `json:"placeholder"`
	Values      []RequestCustomFieldValueModel `json:"values"`
	Default     NullableString                 `json:"default,omitempty"`
	Required    bool                           `json:"required"`
}

RequestCustomFieldModel struct for RequestCustomFieldModel

func NewRequestCustomFieldModel added in v1.2.2

func NewRequestCustomFieldModel(id string, type_ string, label string, placeholder string, values []RequestCustomFieldValueModel, required bool) *RequestCustomFieldModel

NewRequestCustomFieldModel instantiates a new RequestCustomFieldModel 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 NewRequestCustomFieldModelWithDefaults added in v1.2.2

func NewRequestCustomFieldModelWithDefaults() *RequestCustomFieldModel

NewRequestCustomFieldModelWithDefaults instantiates a new RequestCustomFieldModel 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 (*RequestCustomFieldModel) GetDefault added in v1.2.2

func (o *RequestCustomFieldModel) GetDefault() string

GetDefault returns the Default field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestCustomFieldModel) GetDefaultOk added in v1.2.2

func (o *RequestCustomFieldModel) GetDefaultOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestCustomFieldModel) GetId added in v1.2.2

func (o *RequestCustomFieldModel) GetId() string

GetId returns the Id field value

func (*RequestCustomFieldModel) GetIdOk added in v1.2.2

func (o *RequestCustomFieldModel) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*RequestCustomFieldModel) GetLabel added in v1.2.2

func (o *RequestCustomFieldModel) GetLabel() string

GetLabel returns the Label field value

func (*RequestCustomFieldModel) GetLabelOk added in v1.2.2

func (o *RequestCustomFieldModel) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*RequestCustomFieldModel) GetPlaceholder added in v1.2.2

func (o *RequestCustomFieldModel) GetPlaceholder() string

GetPlaceholder returns the Placeholder field value

func (*RequestCustomFieldModel) GetPlaceholderOk added in v1.2.2

func (o *RequestCustomFieldModel) GetPlaceholderOk() (*string, bool)

GetPlaceholderOk returns a tuple with the Placeholder field value and a boolean to check if the value has been set.

func (*RequestCustomFieldModel) GetRequired added in v1.2.2

func (o *RequestCustomFieldModel) GetRequired() bool

GetRequired returns the Required field value

func (*RequestCustomFieldModel) GetRequiredOk added in v1.2.2

func (o *RequestCustomFieldModel) GetRequiredOk() (*bool, bool)

GetRequiredOk returns a tuple with the Required field value and a boolean to check if the value has been set.

func (*RequestCustomFieldModel) GetType added in v1.2.2

func (o *RequestCustomFieldModel) GetType() string

GetType returns the Type field value

func (*RequestCustomFieldModel) GetTypeOk added in v1.2.2

func (o *RequestCustomFieldModel) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*RequestCustomFieldModel) GetValues added in v1.2.2

GetValues returns the Values field value

func (*RequestCustomFieldModel) GetValuesOk added in v1.2.2

GetValuesOk returns a tuple with the Values field value and a boolean to check if the value has been set.

func (*RequestCustomFieldModel) HasDefault added in v1.2.2

func (o *RequestCustomFieldModel) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (RequestCustomFieldModel) MarshalJSON added in v1.2.2

func (o RequestCustomFieldModel) MarshalJSON() ([]byte, error)

func (*RequestCustomFieldModel) SetDefault added in v1.2.2

func (o *RequestCustomFieldModel) SetDefault(v string)

SetDefault gets a reference to the given NullableString and assigns it to the Default field.

func (*RequestCustomFieldModel) SetDefaultNil added in v1.2.2

func (o *RequestCustomFieldModel) SetDefaultNil()

SetDefaultNil sets the value for Default to be an explicit nil

func (*RequestCustomFieldModel) SetId added in v1.2.2

func (o *RequestCustomFieldModel) SetId(v string)

SetId sets field value

func (*RequestCustomFieldModel) SetLabel added in v1.2.2

func (o *RequestCustomFieldModel) SetLabel(v string)

SetLabel sets field value

func (*RequestCustomFieldModel) SetPlaceholder added in v1.2.2

func (o *RequestCustomFieldModel) SetPlaceholder(v string)

SetPlaceholder sets field value

func (*RequestCustomFieldModel) SetRequired added in v1.2.2

func (o *RequestCustomFieldModel) SetRequired(v bool)

SetRequired sets field value

func (*RequestCustomFieldModel) SetType added in v1.2.2

func (o *RequestCustomFieldModel) SetType(v string)

SetType sets field value

func (*RequestCustomFieldModel) SetValues added in v1.2.2

SetValues sets field value

func (RequestCustomFieldModel) ToMap added in v1.2.2

func (o RequestCustomFieldModel) ToMap() (map[string]interface{}, error)

func (*RequestCustomFieldModel) UnmarshalJSON added in v1.2.2

func (o *RequestCustomFieldModel) UnmarshalJSON(bytes []byte) (err error)

func (*RequestCustomFieldModel) UnsetDefault added in v1.2.2

func (o *RequestCustomFieldModel) UnsetDefault()

UnsetDefault ensures that no value is present for Default, not even an explicit nil

type RequestCustomFieldValueModel added in v1.2.2

type RequestCustomFieldValueModel struct {
	Key   string `json:"key"`
	Value string `json:"value"`
}

RequestCustomFieldValueModel struct for RequestCustomFieldValueModel

func NewRequestCustomFieldValueModel added in v1.2.2

func NewRequestCustomFieldValueModel(key string, value string) *RequestCustomFieldValueModel

NewRequestCustomFieldValueModel instantiates a new RequestCustomFieldValueModel 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 NewRequestCustomFieldValueModelWithDefaults added in v1.2.2

func NewRequestCustomFieldValueModelWithDefaults() *RequestCustomFieldValueModel

NewRequestCustomFieldValueModelWithDefaults instantiates a new RequestCustomFieldValueModel 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 (*RequestCustomFieldValueModel) GetKey added in v1.2.2

GetKey returns the Key field value

func (*RequestCustomFieldValueModel) GetKeyOk added in v1.2.2

func (o *RequestCustomFieldValueModel) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*RequestCustomFieldValueModel) GetValue added in v1.2.2

func (o *RequestCustomFieldValueModel) GetValue() string

GetValue returns the Value field value

func (*RequestCustomFieldValueModel) GetValueOk added in v1.2.2

func (o *RequestCustomFieldValueModel) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (RequestCustomFieldValueModel) MarshalJSON added in v1.2.2

func (o RequestCustomFieldValueModel) MarshalJSON() ([]byte, error)

func (*RequestCustomFieldValueModel) SetKey added in v1.2.2

func (o *RequestCustomFieldValueModel) SetKey(v string)

SetKey sets field value

func (*RequestCustomFieldValueModel) SetValue added in v1.2.2

func (o *RequestCustomFieldValueModel) SetValue(v string)

SetValue sets field value

func (RequestCustomFieldValueModel) ToMap added in v1.2.2

func (o RequestCustomFieldValueModel) ToMap() (map[string]interface{}, error)

func (*RequestCustomFieldValueModel) UnmarshalJSON added in v1.2.2

func (o *RequestCustomFieldValueModel) UnmarshalJSON(bytes []byte) (err error)

type RequestStatusClientModel

type RequestStatusClientModel struct {
	Status      string            `json:"status"`
	Description NullableString    `json:"description,omitempty"`
	Metadata    map[string]string `json:"metadata"`
}

RequestStatusClientModel struct for RequestStatusClientModel

func NewRequestStatusClientModel

func NewRequestStatusClientModel(status string, metadata map[string]string) *RequestStatusClientModel

NewRequestStatusClientModel instantiates a new RequestStatusClientModel 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 NewRequestStatusClientModelWithDefaults

func NewRequestStatusClientModelWithDefaults() *RequestStatusClientModel

NewRequestStatusClientModelWithDefaults instantiates a new RequestStatusClientModel 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 (*RequestStatusClientModel) GetDescription

func (o *RequestStatusClientModel) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestStatusClientModel) GetDescriptionOk

func (o *RequestStatusClientModel) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestStatusClientModel) GetMetadata

func (o *RequestStatusClientModel) GetMetadata() map[string]string

GetMetadata returns the Metadata field value

func (*RequestStatusClientModel) GetMetadataOk

func (o *RequestStatusClientModel) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*RequestStatusClientModel) GetStatus

func (o *RequestStatusClientModel) GetStatus() string

GetStatus returns the Status field value

func (*RequestStatusClientModel) GetStatusOk

func (o *RequestStatusClientModel) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*RequestStatusClientModel) HasDescription

func (o *RequestStatusClientModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (RequestStatusClientModel) MarshalJSON

func (o RequestStatusClientModel) MarshalJSON() ([]byte, error)

func (*RequestStatusClientModel) SetDescription

func (o *RequestStatusClientModel) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*RequestStatusClientModel) SetDescriptionNil

func (o *RequestStatusClientModel) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*RequestStatusClientModel) SetMetadata

func (o *RequestStatusClientModel) SetMetadata(v map[string]string)

SetMetadata sets field value

func (*RequestStatusClientModel) SetStatus

func (o *RequestStatusClientModel) SetStatus(v string)

SetStatus sets field value

func (RequestStatusClientModel) ToMap

func (o RequestStatusClientModel) ToMap() (map[string]interface{}, error)

func (*RequestStatusClientModel) UnmarshalJSON

func (o *RequestStatusClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*RequestStatusClientModel) UnsetDescription

func (o *RequestStatusClientModel) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type ResourceClientModel

type ResourceClientModel struct {
	Id          string                  `json:"id"`
	SourceId    string                  `json:"source_id"`
	Name        string                  `json:"name"`
	Path        string                  `json:"path"`
	Type        ResourceTypeClientModel `json:"type"`
	Integration IntegrationClientModel  `json:"integration"`
}

ResourceClientModel struct for ResourceClientModel

func NewResourceClientModel

func NewResourceClientModel(id string, sourceId string, name string, path string, type_ ResourceTypeClientModel, integration IntegrationClientModel) *ResourceClientModel

NewResourceClientModel instantiates a new ResourceClientModel 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 NewResourceClientModelWithDefaults

func NewResourceClientModelWithDefaults() *ResourceClientModel

NewResourceClientModelWithDefaults instantiates a new ResourceClientModel 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 (*ResourceClientModel) GetId

func (o *ResourceClientModel) GetId() string

GetId returns the Id field value

func (*ResourceClientModel) GetIdOk

func (o *ResourceClientModel) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ResourceClientModel) GetIntegration

func (o *ResourceClientModel) GetIntegration() IntegrationClientModel

GetIntegration returns the Integration field value

func (*ResourceClientModel) GetIntegrationOk

func (o *ResourceClientModel) GetIntegrationOk() (*IntegrationClientModel, bool)

GetIntegrationOk returns a tuple with the Integration field value and a boolean to check if the value has been set.

func (*ResourceClientModel) GetName

func (o *ResourceClientModel) GetName() string

GetName returns the Name field value

func (*ResourceClientModel) GetNameOk

func (o *ResourceClientModel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ResourceClientModel) GetPath

func (o *ResourceClientModel) GetPath() string

GetPath returns the Path field value

func (*ResourceClientModel) GetPathOk

func (o *ResourceClientModel) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*ResourceClientModel) GetSourceId added in v1.0.0

func (o *ResourceClientModel) GetSourceId() string

GetSourceId returns the SourceId field value

func (*ResourceClientModel) GetSourceIdOk added in v1.0.0

func (o *ResourceClientModel) GetSourceIdOk() (*string, bool)

GetSourceIdOk returns a tuple with the SourceId field value and a boolean to check if the value has been set.

func (*ResourceClientModel) GetType

GetType returns the Type field value

func (*ResourceClientModel) GetTypeOk

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (ResourceClientModel) MarshalJSON

func (o ResourceClientModel) MarshalJSON() ([]byte, error)

func (*ResourceClientModel) SetId

func (o *ResourceClientModel) SetId(v string)

SetId sets field value

func (*ResourceClientModel) SetIntegration

func (o *ResourceClientModel) SetIntegration(v IntegrationClientModel)

SetIntegration sets field value

func (*ResourceClientModel) SetName

func (o *ResourceClientModel) SetName(v string)

SetName sets field value

func (*ResourceClientModel) SetPath

func (o *ResourceClientModel) SetPath(v string)

SetPath sets field value

func (*ResourceClientModel) SetSourceId added in v1.0.0

func (o *ResourceClientModel) SetSourceId(v string)

SetSourceId sets field value

func (*ResourceClientModel) SetType

SetType sets field value

func (ResourceClientModel) ToMap

func (o ResourceClientModel) ToMap() (map[string]interface{}, error)

func (*ResourceClientModel) UnmarshalJSON

func (o *ResourceClientModel) UnmarshalJSON(bytes []byte) (err error)

type ResourceFilter added in v1.0.0

type ResourceFilter struct {
	Type  ResourceFilterType `json:"type"`
	Value string             `json:"value"`
}

ResourceFilter struct for ResourceFilter

func NewResourceFilter added in v1.0.0

func NewResourceFilter(type_ ResourceFilterType, value string) *ResourceFilter

NewResourceFilter instantiates a new ResourceFilter 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 NewResourceFilterWithDefaults added in v1.0.0

func NewResourceFilterWithDefaults() *ResourceFilter

NewResourceFilterWithDefaults instantiates a new ResourceFilter 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 (*ResourceFilter) GetType added in v1.0.0

func (o *ResourceFilter) GetType() ResourceFilterType

GetType returns the Type field value

func (*ResourceFilter) GetTypeOk added in v1.0.0

func (o *ResourceFilter) GetTypeOk() (*ResourceFilterType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*ResourceFilter) GetValue added in v1.0.0

func (o *ResourceFilter) GetValue() string

GetValue returns the Value field value

func (*ResourceFilter) GetValueOk added in v1.0.0

func (o *ResourceFilter) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (ResourceFilter) MarshalJSON added in v1.0.0

func (o ResourceFilter) MarshalJSON() ([]byte, error)

func (*ResourceFilter) SetType added in v1.0.0

func (o *ResourceFilter) SetType(v ResourceFilterType)

SetType sets field value

func (*ResourceFilter) SetValue added in v1.0.0

func (o *ResourceFilter) SetValue(v string)

SetValue sets field value

func (ResourceFilter) ToMap added in v1.0.0

func (o ResourceFilter) ToMap() (map[string]interface{}, error)

func (*ResourceFilter) UnmarshalJSON added in v1.0.0

func (o *ResourceFilter) UnmarshalJSON(bytes []byte) (err error)

type ResourceFilterType added in v1.0.0

type ResourceFilterType string

ResourceFilterType the model 'ResourceFilterType'

const (
	RESOURCEFILTERTYPE_ID          ResourceFilterType = "id"
	RESOURCEFILTERTYPE_SEARCH_TERM ResourceFilterType = "search_term"
)

List of ResourceFilterType

func NewResourceFilterTypeFromValue added in v1.0.0

func NewResourceFilterTypeFromValue(v string) (*ResourceFilterType, error)

NewResourceFilterTypeFromValue returns a pointer to a valid ResourceFilterType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ResourceFilterType) IsValid added in v1.0.0

func (v ResourceFilterType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ResourceFilterType) Ptr added in v1.0.0

Ptr returns reference to ResourceFilterType value

func (*ResourceFilterType) UnmarshalJSON added in v1.0.0

func (v *ResourceFilterType) UnmarshalJSON(src []byte) error

type ResourceTypeClientModel

type ResourceTypeClientModel struct {
	Id                       string                 `json:"id"`
	Name                     string                 `json:"name"`
	DisplayPath              string                 `json:"display_path"`
	AllowMultiplePermissions bool                   `json:"allow_multiple_permissions"`
	Icons                    IconsConfigClientModel `json:"icons"`
}

ResourceTypeClientModel struct for ResourceTypeClientModel

func NewResourceTypeClientModel

func NewResourceTypeClientModel(id string, name string, displayPath string, allowMultiplePermissions bool, icons IconsConfigClientModel) *ResourceTypeClientModel

NewResourceTypeClientModel instantiates a new ResourceTypeClientModel 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 NewResourceTypeClientModelWithDefaults

func NewResourceTypeClientModelWithDefaults() *ResourceTypeClientModel

NewResourceTypeClientModelWithDefaults instantiates a new ResourceTypeClientModel 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 (*ResourceTypeClientModel) GetAllowMultiplePermissions

func (o *ResourceTypeClientModel) GetAllowMultiplePermissions() bool

GetAllowMultiplePermissions returns the AllowMultiplePermissions field value

func (*ResourceTypeClientModel) GetAllowMultiplePermissionsOk

func (o *ResourceTypeClientModel) GetAllowMultiplePermissionsOk() (*bool, bool)

GetAllowMultiplePermissionsOk returns a tuple with the AllowMultiplePermissions field value and a boolean to check if the value has been set.

func (*ResourceTypeClientModel) GetDisplayPath

func (o *ResourceTypeClientModel) GetDisplayPath() string

GetDisplayPath returns the DisplayPath field value

func (*ResourceTypeClientModel) GetDisplayPathOk

func (o *ResourceTypeClientModel) GetDisplayPathOk() (*string, bool)

GetDisplayPathOk returns a tuple with the DisplayPath field value and a boolean to check if the value has been set.

func (*ResourceTypeClientModel) GetIcons

GetIcons returns the Icons field value

func (*ResourceTypeClientModel) GetIconsOk

GetIconsOk returns a tuple with the Icons field value and a boolean to check if the value has been set.

func (*ResourceTypeClientModel) GetId

func (o *ResourceTypeClientModel) GetId() string

GetId returns the Id field value

func (*ResourceTypeClientModel) GetIdOk

func (o *ResourceTypeClientModel) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ResourceTypeClientModel) GetName

func (o *ResourceTypeClientModel) GetName() string

GetName returns the Name field value

func (*ResourceTypeClientModel) GetNameOk

func (o *ResourceTypeClientModel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (ResourceTypeClientModel) MarshalJSON

func (o ResourceTypeClientModel) MarshalJSON() ([]byte, error)

func (*ResourceTypeClientModel) SetAllowMultiplePermissions

func (o *ResourceTypeClientModel) SetAllowMultiplePermissions(v bool)

SetAllowMultiplePermissions sets field value

func (*ResourceTypeClientModel) SetDisplayPath

func (o *ResourceTypeClientModel) SetDisplayPath(v string)

SetDisplayPath sets field value

func (*ResourceTypeClientModel) SetIcons

SetIcons sets field value

func (*ResourceTypeClientModel) SetId

func (o *ResourceTypeClientModel) SetId(v string)

SetId sets field value

func (*ResourceTypeClientModel) SetName

func (o *ResourceTypeClientModel) SetName(v string)

SetName sets field value

func (ResourceTypeClientModel) ToMap

func (o ResourceTypeClientModel) ToMap() (map[string]interface{}, error)

func (*ResourceTypeClientModel) UnmarshalJSON

func (o *ResourceTypeClientModel) UnmarshalJSON(bytes []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 SessionTypeClientModel

type SessionTypeClientModel struct {
	Id    string                 `json:"id"`
	Name  string                 `json:"name"`
	Icons IconsConfigClientModel `json:"icons"`
}

SessionTypeClientModel struct for SessionTypeClientModel

func NewSessionTypeClientModel

func NewSessionTypeClientModel(id string, name string, icons IconsConfigClientModel) *SessionTypeClientModel

NewSessionTypeClientModel instantiates a new SessionTypeClientModel 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 NewSessionTypeClientModelWithDefaults

func NewSessionTypeClientModelWithDefaults() *SessionTypeClientModel

NewSessionTypeClientModelWithDefaults instantiates a new SessionTypeClientModel 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 (*SessionTypeClientModel) GetIcons

GetIcons returns the Icons field value

func (*SessionTypeClientModel) GetIconsOk

GetIconsOk returns a tuple with the Icons field value and a boolean to check if the value has been set.

func (*SessionTypeClientModel) GetId

func (o *SessionTypeClientModel) GetId() string

GetId returns the Id field value

func (*SessionTypeClientModel) GetIdOk

func (o *SessionTypeClientModel) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*SessionTypeClientModel) GetName

func (o *SessionTypeClientModel) GetName() string

GetName returns the Name field value

func (*SessionTypeClientModel) GetNameOk

func (o *SessionTypeClientModel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (SessionTypeClientModel) MarshalJSON

func (o SessionTypeClientModel) MarshalJSON() ([]byte, error)

func (*SessionTypeClientModel) SetIcons

SetIcons sets field value

func (*SessionTypeClientModel) SetId

func (o *SessionTypeClientModel) SetId(v string)

SetId sets field value

func (*SessionTypeClientModel) SetName

func (o *SessionTypeClientModel) SetName(v string)

SetName sets field value

func (SessionTypeClientModel) ToMap

func (o SessionTypeClientModel) ToMap() (map[string]interface{}, error)

func (*SessionTypeClientModel) UnmarshalJSON

func (o *SessionTypeClientModel) UnmarshalJSON(bytes []byte) (err error)

type StandardMcpRequest added in v1.3.0

type StandardMcpRequest struct {
	Id      string                 `json:"id"`
	Params  map[string]interface{} `json:"params,omitempty"`
	Jsonrpc string                 `json:"jsonrpc"`
	Method  string                 `json:"method"`
}

StandardMcpRequest struct for StandardMcpRequest

func NewStandardMcpRequest added in v1.3.0

func NewStandardMcpRequest(id string, jsonrpc string, method string) *StandardMcpRequest

NewStandardMcpRequest instantiates a new StandardMcpRequest 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 NewStandardMcpRequestWithDefaults added in v1.3.0

func NewStandardMcpRequestWithDefaults() *StandardMcpRequest

NewStandardMcpRequestWithDefaults instantiates a new StandardMcpRequest 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 (*StandardMcpRequest) GetId added in v1.3.0

func (o *StandardMcpRequest) GetId() string

GetId returns the Id field value

func (*StandardMcpRequest) GetIdOk added in v1.3.0

func (o *StandardMcpRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*StandardMcpRequest) GetJsonrpc added in v1.3.0

func (o *StandardMcpRequest) GetJsonrpc() string

GetJsonrpc returns the Jsonrpc field value

func (*StandardMcpRequest) GetJsonrpcOk added in v1.3.0

func (o *StandardMcpRequest) GetJsonrpcOk() (*string, bool)

GetJsonrpcOk returns a tuple with the Jsonrpc field value and a boolean to check if the value has been set.

func (*StandardMcpRequest) GetMethod added in v1.3.0

func (o *StandardMcpRequest) GetMethod() string

GetMethod returns the Method field value

func (*StandardMcpRequest) GetMethodOk added in v1.3.0

func (o *StandardMcpRequest) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*StandardMcpRequest) GetParams added in v1.3.0

func (o *StandardMcpRequest) GetParams() map[string]interface{}

GetParams returns the Params field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StandardMcpRequest) GetParamsOk added in v1.3.0

func (o *StandardMcpRequest) GetParamsOk() (map[string]interface{}, bool)

GetParamsOk returns a tuple with the Params field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StandardMcpRequest) HasParams added in v1.3.0

func (o *StandardMcpRequest) HasParams() bool

HasParams returns a boolean if a field has been set.

func (StandardMcpRequest) MarshalJSON added in v1.3.0

func (o StandardMcpRequest) MarshalJSON() ([]byte, error)

func (*StandardMcpRequest) SetId added in v1.3.0

func (o *StandardMcpRequest) SetId(v string)

SetId sets field value

func (*StandardMcpRequest) SetJsonrpc added in v1.3.0

func (o *StandardMcpRequest) SetJsonrpc(v string)

SetJsonrpc sets field value

func (*StandardMcpRequest) SetMethod added in v1.3.0

func (o *StandardMcpRequest) SetMethod(v string)

SetMethod sets field value

func (*StandardMcpRequest) SetParams added in v1.3.0

func (o *StandardMcpRequest) SetParams(v map[string]interface{})

SetParams gets a reference to the given map[string]interface{} and assigns it to the Params field.

func (StandardMcpRequest) ToMap added in v1.3.0

func (o StandardMcpRequest) ToMap() (map[string]interface{}, error)

func (*StandardMcpRequest) UnmarshalJSON added in v1.3.0

func (o *StandardMcpRequest) UnmarshalJSON(bytes []byte) (err error)

type SystemPromptClientModel added in v1.2.2

type SystemPromptClientModel struct {
	Id          string  `json:"id"`
	Name        string  `json:"name"`
	Description string  `json:"description"`
	Version     float64 `json:"version"`
	IsDefault   bool    `json:"is_default"`
}

SystemPromptClientModel struct for SystemPromptClientModel

func NewSystemPromptClientModel added in v1.2.2

func NewSystemPromptClientModel(id string, name string, description string, version float64, isDefault bool) *SystemPromptClientModel

NewSystemPromptClientModel instantiates a new SystemPromptClientModel 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 NewSystemPromptClientModelWithDefaults added in v1.2.2

func NewSystemPromptClientModelWithDefaults() *SystemPromptClientModel

NewSystemPromptClientModelWithDefaults instantiates a new SystemPromptClientModel 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 (*SystemPromptClientModel) GetDescription added in v1.2.2

func (o *SystemPromptClientModel) GetDescription() string

GetDescription returns the Description field value

func (*SystemPromptClientModel) GetDescriptionOk added in v1.2.2

func (o *SystemPromptClientModel) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*SystemPromptClientModel) GetId added in v1.2.2

func (o *SystemPromptClientModel) GetId() string

GetId returns the Id field value

func (*SystemPromptClientModel) GetIdOk added in v1.2.2

func (o *SystemPromptClientModel) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*SystemPromptClientModel) GetIsDefault added in v1.2.2

func (o *SystemPromptClientModel) GetIsDefault() bool

GetIsDefault returns the IsDefault field value

func (*SystemPromptClientModel) GetIsDefaultOk added in v1.2.2

func (o *SystemPromptClientModel) GetIsDefaultOk() (*bool, bool)

GetIsDefaultOk returns a tuple with the IsDefault field value and a boolean to check if the value has been set.

func (*SystemPromptClientModel) GetName added in v1.2.2

func (o *SystemPromptClientModel) GetName() string

GetName returns the Name field value

func (*SystemPromptClientModel) GetNameOk added in v1.2.2

func (o *SystemPromptClientModel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SystemPromptClientModel) GetVersion added in v1.2.2

func (o *SystemPromptClientModel) GetVersion() float64

GetVersion returns the Version field value

func (*SystemPromptClientModel) GetVersionOk added in v1.2.2

func (o *SystemPromptClientModel) GetVersionOk() (*float64, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (SystemPromptClientModel) MarshalJSON added in v1.2.2

func (o SystemPromptClientModel) MarshalJSON() ([]byte, error)

func (*SystemPromptClientModel) SetDescription added in v1.2.2

func (o *SystemPromptClientModel) SetDescription(v string)

SetDescription sets field value

func (*SystemPromptClientModel) SetId added in v1.2.2

func (o *SystemPromptClientModel) SetId(v string)

SetId sets field value

func (*SystemPromptClientModel) SetIsDefault added in v1.2.2

func (o *SystemPromptClientModel) SetIsDefault(v bool)

SetIsDefault sets field value

func (*SystemPromptClientModel) SetName added in v1.2.2

func (o *SystemPromptClientModel) SetName(v string)

SetName sets field value

func (*SystemPromptClientModel) SetVersion added in v1.2.2

func (o *SystemPromptClientModel) SetVersion(v float64)

SetVersion sets field value

func (SystemPromptClientModel) ToMap added in v1.2.2

func (o SystemPromptClientModel) ToMap() (map[string]interface{}, error)

func (*SystemPromptClientModel) UnmarshalJSON added in v1.2.2

func (o *SystemPromptClientModel) UnmarshalJSON(bytes []byte) (err error)

type Unmasked added in v1.2.2

type Unmasked struct {
	Id          string          `json:"id"`
	AccountId   string          `json:"account_id"`
	UserId      string          `json:"user_id"`
	Name        string          `json:"name"`
	Token       string          `json:"token"`
	ExpiryDate  NullableFloat64 `json:"expiry_date,omitempty"`
	CreatedDate float64         `json:"created_date"`
}

Unmasked struct for Unmasked

func NewUnmasked added in v1.2.2

func NewUnmasked(id string, accountId string, userId string, name string, token string, createdDate float64) *Unmasked

NewUnmasked instantiates a new Unmasked 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 NewUnmaskedWithDefaults added in v1.2.2

func NewUnmaskedWithDefaults() *Unmasked

NewUnmaskedWithDefaults instantiates a new Unmasked 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 (*Unmasked) GetAccountId added in v1.2.2

func (o *Unmasked) GetAccountId() string

GetAccountId returns the AccountId field value

func (*Unmasked) GetAccountIdOk added in v1.2.2

func (o *Unmasked) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId field value and a boolean to check if the value has been set.

func (*Unmasked) GetCreatedDate added in v1.2.2

func (o *Unmasked) GetCreatedDate() float64

GetCreatedDate returns the CreatedDate field value

func (*Unmasked) GetCreatedDateOk added in v1.2.2

func (o *Unmasked) GetCreatedDateOk() (*float64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value and a boolean to check if the value has been set.

func (*Unmasked) GetExpiryDate added in v1.2.2

func (o *Unmasked) GetExpiryDate() float64

GetExpiryDate returns the ExpiryDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Unmasked) GetExpiryDateOk added in v1.2.2

func (o *Unmasked) GetExpiryDateOk() (*float64, bool)

GetExpiryDateOk returns a tuple with the ExpiryDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Unmasked) GetId added in v1.2.2

func (o *Unmasked) GetId() string

GetId returns the Id field value

func (*Unmasked) GetIdOk added in v1.2.2

func (o *Unmasked) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Unmasked) GetName added in v1.2.2

func (o *Unmasked) GetName() string

GetName returns the Name field value

func (*Unmasked) GetNameOk added in v1.2.2

func (o *Unmasked) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Unmasked) GetToken added in v1.2.2

func (o *Unmasked) GetToken() string

GetToken returns the Token field value

func (*Unmasked) GetTokenOk added in v1.2.2

func (o *Unmasked) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value and a boolean to check if the value has been set.

func (*Unmasked) GetUserId added in v1.2.2

func (o *Unmasked) GetUserId() string

GetUserId returns the UserId field value

func (*Unmasked) GetUserIdOk added in v1.2.2

func (o *Unmasked) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (*Unmasked) HasExpiryDate added in v1.2.2

func (o *Unmasked) HasExpiryDate() bool

HasExpiryDate returns a boolean if a field has been set.

func (Unmasked) MarshalJSON added in v1.2.2

func (o Unmasked) MarshalJSON() ([]byte, error)

func (*Unmasked) SetAccountId added in v1.2.2

func (o *Unmasked) SetAccountId(v string)

SetAccountId sets field value

func (*Unmasked) SetCreatedDate added in v1.2.2

func (o *Unmasked) SetCreatedDate(v float64)

SetCreatedDate sets field value

func (*Unmasked) SetExpiryDate added in v1.2.2

func (o *Unmasked) SetExpiryDate(v float64)

SetExpiryDate gets a reference to the given NullableFloat64 and assigns it to the ExpiryDate field.

func (*Unmasked) SetExpiryDateNil added in v1.2.2

func (o *Unmasked) SetExpiryDateNil()

SetExpiryDateNil sets the value for ExpiryDate to be an explicit nil

func (*Unmasked) SetId added in v1.2.2

func (o *Unmasked) SetId(v string)

SetId sets field value

func (*Unmasked) SetName added in v1.2.2

func (o *Unmasked) SetName(v string)

SetName sets field value

func (*Unmasked) SetToken added in v1.2.2

func (o *Unmasked) SetToken(v string)

SetToken sets field value

func (*Unmasked) SetUserId added in v1.2.2

func (o *Unmasked) SetUserId(v string)

SetUserId sets field value

func (Unmasked) ToMap added in v1.2.2

func (o Unmasked) ToMap() (map[string]interface{}, error)

func (*Unmasked) UnmarshalJSON added in v1.2.2

func (o *Unmasked) UnmarshalJSON(bytes []byte) (err error)

func (*Unmasked) UnsetExpiryDate added in v1.2.2

func (o *Unmasked) UnsetExpiryDate()

UnsetExpiryDate ensures that no value is present for ExpiryDate, not even an explicit nil

type UpdateExpiryRequestClientModel added in v1.2.2

type UpdateExpiryRequestClientModel struct {
	ExpiryDate NullableFloat64 `json:"expiry_date,omitempty"`
}

UpdateExpiryRequestClientModel struct for UpdateExpiryRequestClientModel

func NewUpdateExpiryRequestClientModel added in v1.2.2

func NewUpdateExpiryRequestClientModel() *UpdateExpiryRequestClientModel

NewUpdateExpiryRequestClientModel instantiates a new UpdateExpiryRequestClientModel 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 NewUpdateExpiryRequestClientModelWithDefaults added in v1.2.2

func NewUpdateExpiryRequestClientModelWithDefaults() *UpdateExpiryRequestClientModel

NewUpdateExpiryRequestClientModelWithDefaults instantiates a new UpdateExpiryRequestClientModel 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 (*UpdateExpiryRequestClientModel) GetExpiryDate added in v1.2.2

func (o *UpdateExpiryRequestClientModel) GetExpiryDate() float64

GetExpiryDate returns the ExpiryDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateExpiryRequestClientModel) GetExpiryDateOk added in v1.2.2

func (o *UpdateExpiryRequestClientModel) GetExpiryDateOk() (*float64, bool)

GetExpiryDateOk returns a tuple with the ExpiryDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateExpiryRequestClientModel) HasExpiryDate added in v1.2.2

func (o *UpdateExpiryRequestClientModel) HasExpiryDate() bool

HasExpiryDate returns a boolean if a field has been set.

func (UpdateExpiryRequestClientModel) MarshalJSON added in v1.2.2

func (o UpdateExpiryRequestClientModel) MarshalJSON() ([]byte, error)

func (*UpdateExpiryRequestClientModel) SetExpiryDate added in v1.2.2

func (o *UpdateExpiryRequestClientModel) SetExpiryDate(v float64)

SetExpiryDate gets a reference to the given NullableFloat64 and assigns it to the ExpiryDate field.

func (*UpdateExpiryRequestClientModel) SetExpiryDateNil added in v1.2.2

func (o *UpdateExpiryRequestClientModel) SetExpiryDateNil()

SetExpiryDateNil sets the value for ExpiryDate to be an explicit nil

func (UpdateExpiryRequestClientModel) ToMap added in v1.2.2

func (o UpdateExpiryRequestClientModel) ToMap() (map[string]interface{}, error)

func (*UpdateExpiryRequestClientModel) UnsetExpiryDate added in v1.2.2

func (o *UpdateExpiryRequestClientModel) UnsetExpiryDate()

UnsetExpiryDate ensures that no value is present for ExpiryDate, not even an explicit nil

type UpdateRequestFavoriteStateModel added in v1.2.2

type UpdateRequestFavoriteStateModel struct {
	Favorite bool `json:"favorite"`
}

UpdateRequestFavoriteStateModel struct for UpdateRequestFavoriteStateModel

func NewUpdateRequestFavoriteStateModel added in v1.2.2

func NewUpdateRequestFavoriteStateModel(favorite bool) *UpdateRequestFavoriteStateModel

NewUpdateRequestFavoriteStateModel instantiates a new UpdateRequestFavoriteStateModel 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 NewUpdateRequestFavoriteStateModelWithDefaults added in v1.2.2

func NewUpdateRequestFavoriteStateModelWithDefaults() *UpdateRequestFavoriteStateModel

NewUpdateRequestFavoriteStateModelWithDefaults instantiates a new UpdateRequestFavoriteStateModel 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 (*UpdateRequestFavoriteStateModel) GetFavorite added in v1.2.2

func (o *UpdateRequestFavoriteStateModel) GetFavorite() bool

GetFavorite returns the Favorite field value

func (*UpdateRequestFavoriteStateModel) GetFavoriteOk added in v1.2.2

func (o *UpdateRequestFavoriteStateModel) GetFavoriteOk() (*bool, bool)

GetFavoriteOk returns a tuple with the Favorite field value and a boolean to check if the value has been set.

func (UpdateRequestFavoriteStateModel) MarshalJSON added in v1.2.2

func (o UpdateRequestFavoriteStateModel) MarshalJSON() ([]byte, error)

func (*UpdateRequestFavoriteStateModel) SetFavorite added in v1.2.2

func (o *UpdateRequestFavoriteStateModel) SetFavorite(v bool)

SetFavorite sets field value

func (UpdateRequestFavoriteStateModel) ToMap added in v1.2.2

func (o UpdateRequestFavoriteStateModel) ToMap() (map[string]interface{}, error)

func (*UpdateRequestFavoriteStateModel) UnmarshalJSON added in v1.2.2

func (o *UpdateRequestFavoriteStateModel) UnmarshalJSON(bytes []byte) (err error)

type UserClientModel

type UserClientModel struct {
	Id    string         `json:"id"`
	Name  string         `json:"name"`
	Email string         `json:"email"`
	Photo NullableString `json:"photo,omitempty"`
}

UserClientModel struct for UserClientModel

func NewUserClientModel

func NewUserClientModel(id string, name string, email string) *UserClientModel

NewUserClientModel instantiates a new UserClientModel 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 NewUserClientModelWithDefaults

func NewUserClientModelWithDefaults() *UserClientModel

NewUserClientModelWithDefaults instantiates a new UserClientModel 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 (*UserClientModel) GetEmail

func (o *UserClientModel) GetEmail() string

GetEmail returns the Email field value

func (*UserClientModel) GetEmailOk

func (o *UserClientModel) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*UserClientModel) GetId

func (o *UserClientModel) GetId() string

GetId returns the Id field value

func (*UserClientModel) GetIdOk

func (o *UserClientModel) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UserClientModel) GetName

func (o *UserClientModel) GetName() string

GetName returns the Name field value

func (*UserClientModel) GetNameOk

func (o *UserClientModel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UserClientModel) GetPhoto

func (o *UserClientModel) GetPhoto() string

GetPhoto returns the Photo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserClientModel) GetPhotoOk

func (o *UserClientModel) GetPhotoOk() (*string, bool)

GetPhotoOk returns a tuple with the Photo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserClientModel) HasPhoto

func (o *UserClientModel) HasPhoto() bool

HasPhoto returns a boolean if a field has been set.

func (UserClientModel) MarshalJSON

func (o UserClientModel) MarshalJSON() ([]byte, error)

func (*UserClientModel) SetEmail

func (o *UserClientModel) SetEmail(v string)

SetEmail sets field value

func (*UserClientModel) SetId

func (o *UserClientModel) SetId(v string)

SetId sets field value

func (*UserClientModel) SetName

func (o *UserClientModel) SetName(v string)

SetName sets field value

func (*UserClientModel) SetPhoto

func (o *UserClientModel) SetPhoto(v string)

SetPhoto gets a reference to the given NullableString and assigns it to the Photo field.

func (*UserClientModel) SetPhotoNil

func (o *UserClientModel) SetPhotoNil()

SetPhotoNil sets the value for Photo to be an explicit nil

func (UserClientModel) ToMap

func (o UserClientModel) ToMap() (map[string]interface{}, error)

func (*UserClientModel) UnmarshalJSON

func (o *UserClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*UserClientModel) UnsetPhoto

func (o *UserClientModel) UnsetPhoto()

UnsetPhoto ensures that no value is present for Photo, not even an explicit nil

type UserMfaEnrolledResponse added in v1.2.2

type UserMfaEnrolledResponse struct {
	IsMfaEnrolled bool `json:"is_mfa_enrolled"`
}

UserMfaEnrolledResponse struct for UserMfaEnrolledResponse

func NewUserMfaEnrolledResponse added in v1.2.2

func NewUserMfaEnrolledResponse(isMfaEnrolled bool) *UserMfaEnrolledResponse

NewUserMfaEnrolledResponse instantiates a new UserMfaEnrolledResponse 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 NewUserMfaEnrolledResponseWithDefaults added in v1.2.2

func NewUserMfaEnrolledResponseWithDefaults() *UserMfaEnrolledResponse

NewUserMfaEnrolledResponseWithDefaults instantiates a new UserMfaEnrolledResponse 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 (*UserMfaEnrolledResponse) GetIsMfaEnrolled added in v1.2.2

func (o *UserMfaEnrolledResponse) GetIsMfaEnrolled() bool

GetIsMfaEnrolled returns the IsMfaEnrolled field value

func (*UserMfaEnrolledResponse) GetIsMfaEnrolledOk added in v1.2.2

func (o *UserMfaEnrolledResponse) GetIsMfaEnrolledOk() (*bool, bool)

GetIsMfaEnrolledOk returns a tuple with the IsMfaEnrolled field value and a boolean to check if the value has been set.

func (UserMfaEnrolledResponse) MarshalJSON added in v1.2.2

func (o UserMfaEnrolledResponse) MarshalJSON() ([]byte, error)

func (*UserMfaEnrolledResponse) SetIsMfaEnrolled added in v1.2.2

func (o *UserMfaEnrolledResponse) SetIsMfaEnrolled(v bool)

SetIsMfaEnrolled sets field value

func (UserMfaEnrolledResponse) ToMap added in v1.2.2

func (o UserMfaEnrolledResponse) ToMap() (map[string]interface{}, error)

func (*UserMfaEnrolledResponse) UnmarshalJSON added in v1.2.2

func (o *UserMfaEnrolledResponse) UnmarshalJSON(bytes []byte) (err error)

type UserPersonalToken added in v1.2.2

type UserPersonalToken struct {
	Id          string          `json:"id"`
	AccountId   string          `json:"account_id"`
	UserId      string          `json:"user_id"`
	Name        string          `json:"name"`
	MaskedToken string          `json:"masked_token"`
	ExpiryDate  NullableFloat64 `json:"expiry_date,omitempty"`
	CreatedDate float64         `json:"created_date"`
}

UserPersonalToken struct for UserPersonalToken

func NewUserPersonalToken added in v1.2.2

func NewUserPersonalToken(id string, accountId string, userId string, name string, maskedToken string, createdDate float64) *UserPersonalToken

NewUserPersonalToken instantiates a new UserPersonalToken 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 NewUserPersonalTokenWithDefaults added in v1.2.2

func NewUserPersonalTokenWithDefaults() *UserPersonalToken

NewUserPersonalTokenWithDefaults instantiates a new UserPersonalToken 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 (*UserPersonalToken) GetAccountId added in v1.2.2

func (o *UserPersonalToken) GetAccountId() string

GetAccountId returns the AccountId field value

func (*UserPersonalToken) GetAccountIdOk added in v1.2.2

func (o *UserPersonalToken) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId field value and a boolean to check if the value has been set.

func (*UserPersonalToken) GetCreatedDate added in v1.2.2

func (o *UserPersonalToken) GetCreatedDate() float64

GetCreatedDate returns the CreatedDate field value

func (*UserPersonalToken) GetCreatedDateOk added in v1.2.2

func (o *UserPersonalToken) GetCreatedDateOk() (*float64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value and a boolean to check if the value has been set.

func (*UserPersonalToken) GetExpiryDate added in v1.2.2

func (o *UserPersonalToken) GetExpiryDate() float64

GetExpiryDate returns the ExpiryDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserPersonalToken) GetExpiryDateOk added in v1.2.2

func (o *UserPersonalToken) GetExpiryDateOk() (*float64, bool)

GetExpiryDateOk returns a tuple with the ExpiryDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserPersonalToken) GetId added in v1.2.2

func (o *UserPersonalToken) GetId() string

GetId returns the Id field value

func (*UserPersonalToken) GetIdOk added in v1.2.2

func (o *UserPersonalToken) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UserPersonalToken) GetMaskedToken added in v1.2.2

func (o *UserPersonalToken) GetMaskedToken() string

GetMaskedToken returns the MaskedToken field value

func (*UserPersonalToken) GetMaskedTokenOk added in v1.2.2

func (o *UserPersonalToken) GetMaskedTokenOk() (*string, bool)

GetMaskedTokenOk returns a tuple with the MaskedToken field value and a boolean to check if the value has been set.

func (*UserPersonalToken) GetName added in v1.2.2

func (o *UserPersonalToken) GetName() string

GetName returns the Name field value

func (*UserPersonalToken) GetNameOk added in v1.2.2

func (o *UserPersonalToken) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UserPersonalToken) GetUserId added in v1.2.2

func (o *UserPersonalToken) GetUserId() string

GetUserId returns the UserId field value

func (*UserPersonalToken) GetUserIdOk added in v1.2.2

func (o *UserPersonalToken) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (*UserPersonalToken) HasExpiryDate added in v1.2.2

func (o *UserPersonalToken) HasExpiryDate() bool

HasExpiryDate returns a boolean if a field has been set.

func (UserPersonalToken) MarshalJSON added in v1.2.2

func (o UserPersonalToken) MarshalJSON() ([]byte, error)

func (*UserPersonalToken) SetAccountId added in v1.2.2

func (o *UserPersonalToken) SetAccountId(v string)

SetAccountId sets field value

func (*UserPersonalToken) SetCreatedDate added in v1.2.2

func (o *UserPersonalToken) SetCreatedDate(v float64)

SetCreatedDate sets field value

func (*UserPersonalToken) SetExpiryDate added in v1.2.2

func (o *UserPersonalToken) SetExpiryDate(v float64)

SetExpiryDate gets a reference to the given NullableFloat64 and assigns it to the ExpiryDate field.

func (*UserPersonalToken) SetExpiryDateNil added in v1.2.2

func (o *UserPersonalToken) SetExpiryDateNil()

SetExpiryDateNil sets the value for ExpiryDate to be an explicit nil

func (*UserPersonalToken) SetId added in v1.2.2

func (o *UserPersonalToken) SetId(v string)

SetId sets field value

func (*UserPersonalToken) SetMaskedToken added in v1.2.2

func (o *UserPersonalToken) SetMaskedToken(v string)

SetMaskedToken sets field value

func (*UserPersonalToken) SetName added in v1.2.2

func (o *UserPersonalToken) SetName(v string)

SetName sets field value

func (*UserPersonalToken) SetUserId added in v1.2.2

func (o *UserPersonalToken) SetUserId(v string)

SetUserId sets field value

func (UserPersonalToken) ToMap added in v1.2.2

func (o UserPersonalToken) ToMap() (map[string]interface{}, error)

func (*UserPersonalToken) UnmarshalJSON added in v1.2.2

func (o *UserPersonalToken) UnmarshalJSON(bytes []byte) (err error)

func (*UserPersonalToken) UnsetExpiryDate added in v1.2.2

func (o *UserPersonalToken) UnsetExpiryDate()

UnsetExpiryDate ensures that no value is present for ExpiryDate, not even an explicit nil

type UserSessionAPIService added in v1.0.0

type UserSessionAPIService service

UserSessionAPIService UserSessionAPI service

func (*UserSessionAPIService) GetUserSession added in v1.0.0

GetUserSession Method for GetUserSession

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUserSessionRequest

func (*UserSessionAPIService) GetUserSessionExecute added in v1.0.0

Execute executes the request

@return UserSessionClientModel

func (*UserSessionAPIService) IsMfaEnrolled added in v1.2.2

IsMfaEnrolled Check if user already enrolled MFA (added authenticator app) in Frontegg

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiIsMfaEnrolledRequest

func (*UserSessionAPIService) IsMfaEnrolledExecute added in v1.2.2

Execute executes the request

@return UserMfaEnrolledResponse

type UserSessionClientModel added in v1.0.0

type UserSessionClientModel struct {
	User     UserClientModel         `json:"user"`
	Account  AccountClientModel      `json:"account"`
	Settings UserSettingsClientModel `json:"settings"`
}

UserSessionClientModel struct for UserSessionClientModel

func NewUserSessionClientModel added in v1.0.0

func NewUserSessionClientModel(user UserClientModel, account AccountClientModel, settings UserSettingsClientModel) *UserSessionClientModel

NewUserSessionClientModel instantiates a new UserSessionClientModel 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 NewUserSessionClientModelWithDefaults added in v1.0.0

func NewUserSessionClientModelWithDefaults() *UserSessionClientModel

NewUserSessionClientModelWithDefaults instantiates a new UserSessionClientModel 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 (*UserSessionClientModel) GetAccount added in v1.0.0

GetAccount returns the Account field value

func (*UserSessionClientModel) GetAccountOk added in v1.0.0

func (o *UserSessionClientModel) GetAccountOk() (*AccountClientModel, bool)

GetAccountOk returns a tuple with the Account field value and a boolean to check if the value has been set.

func (*UserSessionClientModel) GetSettings added in v1.1.0

GetSettings returns the Settings field value

func (*UserSessionClientModel) GetSettingsOk added in v1.1.0

func (o *UserSessionClientModel) GetSettingsOk() (*UserSettingsClientModel, bool)

GetSettingsOk returns a tuple with the Settings field value and a boolean to check if the value has been set.

func (*UserSessionClientModel) GetUser added in v1.0.0

GetUser returns the User field value

func (*UserSessionClientModel) GetUserOk added in v1.0.0

func (o *UserSessionClientModel) GetUserOk() (*UserClientModel, bool)

GetUserOk returns a tuple with the User field value and a boolean to check if the value has been set.

func (UserSessionClientModel) MarshalJSON added in v1.0.0

func (o UserSessionClientModel) MarshalJSON() ([]byte, error)

func (*UserSessionClientModel) SetAccount added in v1.0.0

func (o *UserSessionClientModel) SetAccount(v AccountClientModel)

SetAccount sets field value

func (*UserSessionClientModel) SetSettings added in v1.1.0

SetSettings sets field value

func (*UserSessionClientModel) SetUser added in v1.0.0

SetUser sets field value

func (UserSessionClientModel) ToMap added in v1.0.0

func (o UserSessionClientModel) ToMap() (map[string]interface{}, error)

func (*UserSessionClientModel) UnmarshalJSON added in v1.0.0

func (o *UserSessionClientModel) UnmarshalJSON(bytes []byte) (err error)

type UserSettingsClientModel added in v1.1.0

type UserSettingsClientModel struct {
	RequireDurationForAccessRequest bool                      `json:"require_duration_for_access_request"`
	MfaEnabledForAccount            bool                      `json:"mfa_enabled_for_account"`
	RequestCustomFields             []RequestCustomFieldModel `json:"request_custom_fields"`
	LogoutRedirectUrl               NullableString            `json:"logout_redirect_url,omitempty"`
	DisableApproverReason           NullableBool              `json:"disable_approver_reason,omitempty"`
}

UserSettingsClientModel struct for UserSettingsClientModel

func NewUserSettingsClientModel added in v1.1.0

func NewUserSettingsClientModel(requireDurationForAccessRequest bool, mfaEnabledForAccount bool, requestCustomFields []RequestCustomFieldModel) *UserSettingsClientModel

NewUserSettingsClientModel instantiates a new UserSettingsClientModel 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 NewUserSettingsClientModelWithDefaults added in v1.1.0

func NewUserSettingsClientModelWithDefaults() *UserSettingsClientModel

NewUserSettingsClientModelWithDefaults instantiates a new UserSettingsClientModel 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 (*UserSettingsClientModel) GetDisableApproverReason added in v1.3.0

func (o *UserSettingsClientModel) GetDisableApproverReason() bool

GetDisableApproverReason returns the DisableApproverReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserSettingsClientModel) GetDisableApproverReasonOk added in v1.3.0

func (o *UserSettingsClientModel) GetDisableApproverReasonOk() (*bool, bool)

GetDisableApproverReasonOk returns a tuple with the DisableApproverReason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserSettingsClientModel) GetLogoutRedirectUrl added in v1.2.2

func (o *UserSettingsClientModel) GetLogoutRedirectUrl() string

GetLogoutRedirectUrl returns the LogoutRedirectUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserSettingsClientModel) GetLogoutRedirectUrlOk added in v1.2.2

func (o *UserSettingsClientModel) GetLogoutRedirectUrlOk() (*string, bool)

GetLogoutRedirectUrlOk returns a tuple with the LogoutRedirectUrl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserSettingsClientModel) GetMfaEnabledForAccount added in v1.2.2

func (o *UserSettingsClientModel) GetMfaEnabledForAccount() bool

GetMfaEnabledForAccount returns the MfaEnabledForAccount field value

func (*UserSettingsClientModel) GetMfaEnabledForAccountOk added in v1.2.2

func (o *UserSettingsClientModel) GetMfaEnabledForAccountOk() (*bool, bool)

GetMfaEnabledForAccountOk returns a tuple with the MfaEnabledForAccount field value and a boolean to check if the value has been set.

func (*UserSettingsClientModel) GetRequestCustomFields added in v1.2.2

func (o *UserSettingsClientModel) GetRequestCustomFields() []RequestCustomFieldModel

GetRequestCustomFields returns the RequestCustomFields field value

func (*UserSettingsClientModel) GetRequestCustomFieldsOk added in v1.2.2

func (o *UserSettingsClientModel) GetRequestCustomFieldsOk() ([]RequestCustomFieldModel, bool)

GetRequestCustomFieldsOk returns a tuple with the RequestCustomFields field value and a boolean to check if the value has been set.

func (*UserSettingsClientModel) GetRequireDurationForAccessRequest added in v1.1.0

func (o *UserSettingsClientModel) GetRequireDurationForAccessRequest() bool

GetRequireDurationForAccessRequest returns the RequireDurationForAccessRequest field value

func (*UserSettingsClientModel) GetRequireDurationForAccessRequestOk added in v1.1.0

func (o *UserSettingsClientModel) GetRequireDurationForAccessRequestOk() (*bool, bool)

GetRequireDurationForAccessRequestOk returns a tuple with the RequireDurationForAccessRequest field value and a boolean to check if the value has been set.

func (*UserSettingsClientModel) HasDisableApproverReason added in v1.3.0

func (o *UserSettingsClientModel) HasDisableApproverReason() bool

HasDisableApproverReason returns a boolean if a field has been set.

func (*UserSettingsClientModel) HasLogoutRedirectUrl added in v1.2.2

func (o *UserSettingsClientModel) HasLogoutRedirectUrl() bool

HasLogoutRedirectUrl returns a boolean if a field has been set.

func (UserSettingsClientModel) MarshalJSON added in v1.1.0

func (o UserSettingsClientModel) MarshalJSON() ([]byte, error)

func (*UserSettingsClientModel) SetDisableApproverReason added in v1.3.0

func (o *UserSettingsClientModel) SetDisableApproverReason(v bool)

SetDisableApproverReason gets a reference to the given NullableBool and assigns it to the DisableApproverReason field.

func (*UserSettingsClientModel) SetDisableApproverReasonNil added in v1.3.0

func (o *UserSettingsClientModel) SetDisableApproverReasonNil()

SetDisableApproverReasonNil sets the value for DisableApproverReason to be an explicit nil

func (*UserSettingsClientModel) SetLogoutRedirectUrl added in v1.2.2

func (o *UserSettingsClientModel) SetLogoutRedirectUrl(v string)

SetLogoutRedirectUrl gets a reference to the given NullableString and assigns it to the LogoutRedirectUrl field.

func (*UserSettingsClientModel) SetLogoutRedirectUrlNil added in v1.2.2

func (o *UserSettingsClientModel) SetLogoutRedirectUrlNil()

SetLogoutRedirectUrlNil sets the value for LogoutRedirectUrl to be an explicit nil

func (*UserSettingsClientModel) SetMfaEnabledForAccount added in v1.2.2

func (o *UserSettingsClientModel) SetMfaEnabledForAccount(v bool)

SetMfaEnabledForAccount sets field value

func (*UserSettingsClientModel) SetRequestCustomFields added in v1.2.2

func (o *UserSettingsClientModel) SetRequestCustomFields(v []RequestCustomFieldModel)

SetRequestCustomFields sets field value

func (*UserSettingsClientModel) SetRequireDurationForAccessRequest added in v1.1.0

func (o *UserSettingsClientModel) SetRequireDurationForAccessRequest(v bool)

SetRequireDurationForAccessRequest sets field value

func (UserSettingsClientModel) ToMap added in v1.1.0

func (o UserSettingsClientModel) ToMap() (map[string]interface{}, error)

func (*UserSettingsClientModel) UnmarshalJSON added in v1.1.0

func (o *UserSettingsClientModel) UnmarshalJSON(bytes []byte) (err error)

func (*UserSettingsClientModel) UnsetDisableApproverReason added in v1.3.0

func (o *UserSettingsClientModel) UnsetDisableApproverReason()

UnsetDisableApproverReason ensures that no value is present for DisableApproverReason, not even an explicit nil

func (*UserSettingsClientModel) UnsetLogoutRedirectUrl added in v1.2.2

func (o *UserSettingsClientModel) UnsetLogoutRedirectUrl()

UnsetLogoutRedirectUrl ensures that no value is present for LogoutRedirectUrl, not even an explicit nil

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL