openapi_client

package
v0.1.1 Latest Latest
Warning

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

Go to latest
Published: Jan 23, 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 (
	// 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 AllowedAuthorizationDomainTypeEnumValues = []AuthorizationDomainType{
	"DOMAIN_TYPE_UNSPECIFIED",
	"DOMAIN_TYPE_ORGANIZATION",
}

All allowed values of AuthorizationDomainType enum

View Source
var AllowedComponentsNodeTypeEnumValues = []ComponentsNodeType{
	"TYPE_COMPONENT",
	"TYPE_BLUEPRINT",
	"TYPE_TRIGGER",
	"TYPE_WIDGET",
}

All allowed values of ComponentsNodeType enum

View Source
var AllowedProtobufNullValueEnumValues = []ProtobufNullValue{
	"NULL_VALUE",
}

All allowed values of ProtobufNullValue enum

View Source
var AllowedSecretProviderEnumValues = []SecretProvider{
	"PROVIDER_UNKNOWN",
	"PROVIDER_LOCAL",
}

All allowed values of SecretProvider enum

View Source
var AllowedWorkflowNodeExecutionResultEnumValues = []WorkflowNodeExecutionResult{
	"RESULT_UNKNOWN",
	"RESULT_PASSED",
	"RESULT_FAILED",
	"RESULT_CANCELLED",
}

All allowed values of WorkflowNodeExecutionResult enum

View Source
var AllowedWorkflowNodeExecutionResultReasonEnumValues = []WorkflowNodeExecutionResultReason{
	"RESULT_REASON_OK",
	"RESULT_REASON_ERROR",
}

All allowed values of WorkflowNodeExecutionResultReason enum

View Source
var AllowedWorkflowNodeExecutionStateEnumValues = []WorkflowNodeExecutionState{
	"STATE_UNKNOWN",
	"STATE_PENDING",
	"STATE_STARTED",
	"STATE_FINISHED",
}

All allowed values of WorkflowNodeExecutionState 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 {
	ApplicationAPI *ApplicationAPIService

	BlueprintAPI *BlueprintAPIService

	ComponentAPI *ComponentAPIService

	GroupsAPI *GroupsAPIService

	MeAPI *MeAPIService

	OrganizationAPI *OrganizationAPIService

	RolesAPI *RolesAPIService

	SecretAPI *SecretAPIService

	TriggerAPI *TriggerAPIService

	UsersAPI *UsersAPIService

	WidgetAPI *WidgetAPIService

	WorkflowAPI *WorkflowAPIService

	WorkflowEventAPI *WorkflowEventAPIService

	WorkflowNodeAPI *WorkflowNodeAPIService

	WorkflowNodeExecutionAPI *WorkflowNodeExecutionAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Superplane Organizations API API v1.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 ApiApplicationsListApplicationsRequest

type ApiApplicationsListApplicationsRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApiApplicationsListApplicationsRequest) Execute

type ApiBlueprintsCreateBlueprintRequest

type ApiBlueprintsCreateBlueprintRequest struct {
	ApiService *BlueprintAPIService
	// contains filtered or unexported fields
}

func (ApiBlueprintsCreateBlueprintRequest) Execute

type ApiBlueprintsDeleteBlueprintRequest

type ApiBlueprintsDeleteBlueprintRequest struct {
	ApiService *BlueprintAPIService
	// contains filtered or unexported fields
}

func (ApiBlueprintsDeleteBlueprintRequest) Execute

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

type ApiBlueprintsDescribeBlueprintRequest

type ApiBlueprintsDescribeBlueprintRequest struct {
	ApiService *BlueprintAPIService
	// contains filtered or unexported fields
}

func (ApiBlueprintsDescribeBlueprintRequest) Execute

type ApiBlueprintsListBlueprintsRequest

type ApiBlueprintsListBlueprintsRequest struct {
	ApiService *BlueprintAPIService
	// contains filtered or unexported fields
}

func (ApiBlueprintsListBlueprintsRequest) Execute

type ApiBlueprintsUpdateBlueprintRequest

type ApiBlueprintsUpdateBlueprintRequest struct {
	ApiService *BlueprintAPIService
	// contains filtered or unexported fields
}

func (ApiBlueprintsUpdateBlueprintRequest) Execute

type ApiComponentsDescribeComponentRequest

type ApiComponentsDescribeComponentRequest struct {
	ApiService *ComponentAPIService
	// contains filtered or unexported fields
}

func (ApiComponentsDescribeComponentRequest) Execute

type ApiComponentsListComponentActionsRequest

type ApiComponentsListComponentActionsRequest struct {
	ApiService *ComponentAPIService
	// contains filtered or unexported fields
}

func (ApiComponentsListComponentActionsRequest) Execute

type ApiComponentsListComponentsRequest

type ApiComponentsListComponentsRequest struct {
	ApiService *ComponentAPIService
	// contains filtered or unexported fields
}

func (ApiComponentsListComponentsRequest) Execute

type ApiGroupsAddUserToGroupRequest

type ApiGroupsAddUserToGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsAddUserToGroupRequest) Body

func (ApiGroupsAddUserToGroupRequest) Execute

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

type ApiGroupsCreateGroupRequest

type ApiGroupsCreateGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsCreateGroupRequest) Body

func (ApiGroupsCreateGroupRequest) Execute

type ApiGroupsDeleteGroupRequest

type ApiGroupsDeleteGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsDeleteGroupRequest) DomainId

func (ApiGroupsDeleteGroupRequest) DomainType

func (ApiGroupsDeleteGroupRequest) Execute

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

type ApiGroupsDescribeGroupRequest

type ApiGroupsDescribeGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsDescribeGroupRequest) DomainId

func (ApiGroupsDescribeGroupRequest) DomainType

func (ApiGroupsDescribeGroupRequest) Execute

type ApiGroupsListGroupUsersRequest

type ApiGroupsListGroupUsersRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsListGroupUsersRequest) DomainId

func (ApiGroupsListGroupUsersRequest) DomainType

func (ApiGroupsListGroupUsersRequest) Execute

type ApiGroupsListGroupsRequest

type ApiGroupsListGroupsRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsListGroupsRequest) DomainId

func (ApiGroupsListGroupsRequest) DomainType

func (ApiGroupsListGroupsRequest) Execute

type ApiGroupsRemoveUserFromGroupRequest

type ApiGroupsRemoveUserFromGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsRemoveUserFromGroupRequest) Execute

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

type ApiGroupsUpdateGroupRequest

type ApiGroupsUpdateGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGroupsUpdateGroupRequest) Body

func (ApiGroupsUpdateGroupRequest) Execute

type ApiMeMeRequest

type ApiMeMeRequest struct {
	ApiService *MeAPIService
	// contains filtered or unexported fields
}

func (ApiMeMeRequest) Execute

type ApiMeRegenerateTokenRequest

type ApiMeRegenerateTokenRequest struct {
	ApiService *MeAPIService
	// contains filtered or unexported fields
}

func (ApiMeRegenerateTokenRequest) Execute

type ApiOrganizationsAcceptInviteLinkRequest added in v0.0.43

type ApiOrganizationsAcceptInviteLinkRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsAcceptInviteLinkRequest) CreatedAt added in v0.0.43

func (ApiOrganizationsAcceptInviteLinkRequest) Enabled added in v0.0.43

func (ApiOrganizationsAcceptInviteLinkRequest) Execute added in v0.0.43

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

func (ApiOrganizationsAcceptInviteLinkRequest) Id added in v0.0.43

func (ApiOrganizationsAcceptInviteLinkRequest) OrganizationId added in v0.0.43

func (ApiOrganizationsAcceptInviteLinkRequest) UpdatedAt added in v0.0.43

type ApiOrganizationsCreateInvitationRequest

type ApiOrganizationsCreateInvitationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsCreateInvitationRequest) Execute

type ApiOrganizationsDeleteOrganizationRequest

type ApiOrganizationsDeleteOrganizationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsDeleteOrganizationRequest) Execute

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

type ApiOrganizationsDescribeApplicationRequest

type ApiOrganizationsDescribeApplicationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsDescribeApplicationRequest) Execute

type ApiOrganizationsDescribeOrganizationRequest

type ApiOrganizationsDescribeOrganizationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsDescribeOrganizationRequest) Execute

type ApiOrganizationsGetInviteLinkRequest added in v0.0.43

type ApiOrganizationsGetInviteLinkRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsGetInviteLinkRequest) Execute added in v0.0.43

type ApiOrganizationsInstallApplicationRequest

type ApiOrganizationsInstallApplicationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsInstallApplicationRequest) Execute

type ApiOrganizationsListApplicationResourcesRequest added in v0.0.43

type ApiOrganizationsListApplicationResourcesRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsListApplicationResourcesRequest) Execute added in v0.0.43

func (ApiOrganizationsListApplicationResourcesRequest) Type_ added in v0.0.43

type ApiOrganizationsListApplicationsRequest

type ApiOrganizationsListApplicationsRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsListApplicationsRequest) Execute

type ApiOrganizationsListInvitationsRequest

type ApiOrganizationsListInvitationsRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsListInvitationsRequest) Execute

type ApiOrganizationsRemoveInvitationRequest

type ApiOrganizationsRemoveInvitationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsRemoveInvitationRequest) Execute

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

type ApiOrganizationsRemoveUserRequest

type ApiOrganizationsRemoveUserRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsRemoveUserRequest) Execute

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

type ApiOrganizationsResetInviteLinkRequest added in v0.0.43

type ApiOrganizationsResetInviteLinkRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsResetInviteLinkRequest) Execute added in v0.0.43

type ApiOrganizationsUninstallApplicationRequest

type ApiOrganizationsUninstallApplicationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsUninstallApplicationRequest) Execute

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

type ApiOrganizationsUpdateApplicationRequest

type ApiOrganizationsUpdateApplicationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsUpdateApplicationRequest) Execute

type ApiOrganizationsUpdateInviteLinkRequest added in v0.0.43

type ApiOrganizationsUpdateInviteLinkRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsUpdateInviteLinkRequest) Body added in v0.0.43

func (ApiOrganizationsUpdateInviteLinkRequest) Execute added in v0.0.43

type ApiOrganizationsUpdateOrganizationRequest

type ApiOrganizationsUpdateOrganizationRequest struct {
	ApiService *OrganizationAPIService
	// contains filtered or unexported fields
}

func (ApiOrganizationsUpdateOrganizationRequest) Execute

type ApiRolesAssignRoleRequest

type ApiRolesAssignRoleRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesAssignRoleRequest) Body

func (ApiRolesAssignRoleRequest) Execute

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

type ApiRolesCreateRoleRequest

type ApiRolesCreateRoleRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesCreateRoleRequest) Body

func (ApiRolesCreateRoleRequest) Execute

type ApiRolesDeleteRoleRequest

type ApiRolesDeleteRoleRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesDeleteRoleRequest) DomainId

func (ApiRolesDeleteRoleRequest) DomainType

func (ApiRolesDeleteRoleRequest) Execute

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

type ApiRolesDescribeRoleRequest

type ApiRolesDescribeRoleRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesDescribeRoleRequest) DomainId

func (ApiRolesDescribeRoleRequest) DomainType

func (ApiRolesDescribeRoleRequest) Execute

type ApiRolesListRolesRequest

type ApiRolesListRolesRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesListRolesRequest) DomainId

func (ApiRolesListRolesRequest) DomainType

func (r ApiRolesListRolesRequest) DomainType(domainType string) ApiRolesListRolesRequest

func (ApiRolesListRolesRequest) Execute

type ApiRolesUpdateRoleRequest

type ApiRolesUpdateRoleRequest struct {
	ApiService *RolesAPIService
	// contains filtered or unexported fields
}

func (ApiRolesUpdateRoleRequest) Body

func (ApiRolesUpdateRoleRequest) Execute

type ApiSecretsCreateSecretRequest

type ApiSecretsCreateSecretRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsCreateSecretRequest) Body

func (ApiSecretsCreateSecretRequest) Execute

type ApiSecretsDeleteSecretRequest

type ApiSecretsDeleteSecretRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsDeleteSecretRequest) DomainId

func (ApiSecretsDeleteSecretRequest) DomainType

func (ApiSecretsDeleteSecretRequest) Execute

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

type ApiSecretsDescribeSecretRequest

type ApiSecretsDescribeSecretRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsDescribeSecretRequest) DomainId

func (ApiSecretsDescribeSecretRequest) DomainType

func (ApiSecretsDescribeSecretRequest) Execute

type ApiSecretsListSecretsRequest

type ApiSecretsListSecretsRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsListSecretsRequest) DomainId

func (ApiSecretsListSecretsRequest) DomainType

func (ApiSecretsListSecretsRequest) Execute

type ApiSecretsUpdateSecretRequest

type ApiSecretsUpdateSecretRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiSecretsUpdateSecretRequest) Body

func (ApiSecretsUpdateSecretRequest) Execute

type ApiTriggersDescribeTriggerRequest

type ApiTriggersDescribeTriggerRequest struct {
	ApiService *TriggerAPIService
	// contains filtered or unexported fields
}

func (ApiTriggersDescribeTriggerRequest) Execute

type ApiTriggersListTriggersRequest

type ApiTriggersListTriggersRequest struct {
	ApiService *TriggerAPIService
	// contains filtered or unexported fields
}

func (ApiTriggersListTriggersRequest) Execute

type ApiUsersListUserPermissionsRequest

type ApiUsersListUserPermissionsRequest struct {
	ApiService *UsersAPIService
	// contains filtered or unexported fields
}

func (ApiUsersListUserPermissionsRequest) DomainId

func (ApiUsersListUserPermissionsRequest) DomainType

func (ApiUsersListUserPermissionsRequest) Execute

type ApiUsersListUserRolesRequest

type ApiUsersListUserRolesRequest struct {
	ApiService *UsersAPIService
	// contains filtered or unexported fields
}

func (ApiUsersListUserRolesRequest) DomainId

func (ApiUsersListUserRolesRequest) DomainType

func (ApiUsersListUserRolesRequest) Execute

type ApiUsersListUsersRequest

type ApiUsersListUsersRequest struct {
	ApiService *UsersAPIService
	// contains filtered or unexported fields
}

func (ApiUsersListUsersRequest) DomainId

func (ApiUsersListUsersRequest) DomainType

func (r ApiUsersListUsersRequest) DomainType(domainType string) ApiUsersListUsersRequest

func (ApiUsersListUsersRequest) Execute

type ApiWidgetsDescribeWidgetRequest added in v0.0.18

type ApiWidgetsDescribeWidgetRequest struct {
	ApiService *WidgetAPIService
	// contains filtered or unexported fields
}

func (ApiWidgetsDescribeWidgetRequest) Execute added in v0.0.18

type ApiWidgetsListWidgetsRequest added in v0.0.18

type ApiWidgetsListWidgetsRequest struct {
	ApiService *WidgetAPIService
	// contains filtered or unexported fields
}

func (ApiWidgetsListWidgetsRequest) Execute added in v0.0.18

type ApiWorkflowsCancelExecutionRequest

type ApiWorkflowsCancelExecutionRequest struct {
	ApiService *WorkflowNodeExecutionAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsCancelExecutionRequest) Body

func (ApiWorkflowsCancelExecutionRequest) Execute

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

type ApiWorkflowsCreateWorkflowRequest

type ApiWorkflowsCreateWorkflowRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsCreateWorkflowRequest) Execute

type ApiWorkflowsDeleteNodeQueueItemRequest

type ApiWorkflowsDeleteNodeQueueItemRequest struct {
	ApiService *WorkflowNodeAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsDeleteNodeQueueItemRequest) Execute

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

type ApiWorkflowsDeleteWorkflowRequest

type ApiWorkflowsDeleteWorkflowRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsDeleteWorkflowRequest) Execute

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

type ApiWorkflowsDescribeWorkflowRequest

type ApiWorkflowsDescribeWorkflowRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsDescribeWorkflowRequest) Execute

type ApiWorkflowsEmitNodeEventRequest

type ApiWorkflowsEmitNodeEventRequest struct {
	ApiService *WorkflowNodeAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsEmitNodeEventRequest) Body

func (ApiWorkflowsEmitNodeEventRequest) Execute

type ApiWorkflowsInvokeNodeExecutionActionRequest

type ApiWorkflowsInvokeNodeExecutionActionRequest struct {
	ApiService *WorkflowNodeExecutionAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsInvokeNodeExecutionActionRequest) Execute

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

type ApiWorkflowsInvokeNodeTriggerActionRequest added in v0.0.18

type ApiWorkflowsInvokeNodeTriggerActionRequest struct {
	ApiService *WorkflowNodeAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsInvokeNodeTriggerActionRequest) Body added in v0.0.18

func (ApiWorkflowsInvokeNodeTriggerActionRequest) Execute added in v0.0.18

type ApiWorkflowsListChildExecutionsRequest

type ApiWorkflowsListChildExecutionsRequest struct {
	ApiService *WorkflowNodeExecutionAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsListChildExecutionsRequest) Body

func (ApiWorkflowsListChildExecutionsRequest) Execute

type ApiWorkflowsListEventExecutionsRequest

type ApiWorkflowsListEventExecutionsRequest struct {
	ApiService *WorkflowEventAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsListEventExecutionsRequest) Execute

type ApiWorkflowsListNodeEventsRequest

type ApiWorkflowsListNodeEventsRequest struct {
	ApiService *WorkflowNodeAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsListNodeEventsRequest) Before

func (ApiWorkflowsListNodeEventsRequest) Execute

func (ApiWorkflowsListNodeEventsRequest) Limit

type ApiWorkflowsListNodeExecutionsRequest

type ApiWorkflowsListNodeExecutionsRequest struct {
	ApiService *WorkflowNodeAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsListNodeExecutionsRequest) Before

func (ApiWorkflowsListNodeExecutionsRequest) Execute

func (ApiWorkflowsListNodeExecutionsRequest) Limit

func (ApiWorkflowsListNodeExecutionsRequest) Results

func (ApiWorkflowsListNodeExecutionsRequest) States

type ApiWorkflowsListNodeQueueItemsRequest

type ApiWorkflowsListNodeQueueItemsRequest struct {
	ApiService *WorkflowNodeAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsListNodeQueueItemsRequest) Before

func (ApiWorkflowsListNodeQueueItemsRequest) Execute

func (ApiWorkflowsListNodeQueueItemsRequest) Limit

type ApiWorkflowsListWorkflowEventsRequest

type ApiWorkflowsListWorkflowEventsRequest struct {
	ApiService *WorkflowEventAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsListWorkflowEventsRequest) Before

func (ApiWorkflowsListWorkflowEventsRequest) Execute

func (ApiWorkflowsListWorkflowEventsRequest) Limit

type ApiWorkflowsListWorkflowsRequest

type ApiWorkflowsListWorkflowsRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsListWorkflowsRequest) Execute

func (ApiWorkflowsListWorkflowsRequest) IncludeTemplates added in v0.0.45

func (r ApiWorkflowsListWorkflowsRequest) IncludeTemplates(includeTemplates bool) ApiWorkflowsListWorkflowsRequest

type ApiWorkflowsUpdateWorkflowRequest

type ApiWorkflowsUpdateWorkflowRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiWorkflowsUpdateWorkflowRequest) Body

func (ApiWorkflowsUpdateWorkflowRequest) Execute

type AppInstallationNodeRef

type AppInstallationNodeRef struct {
	WorkflowId   *string `json:"workflowId,omitempty"`
	WorkflowName *string `json:"workflowName,omitempty"`
	NodeId       *string `json:"nodeId,omitempty"`
	NodeName     *string `json:"nodeName,omitempty"`
}

AppInstallationNodeRef struct for AppInstallationNodeRef

func NewAppInstallationNodeRef

func NewAppInstallationNodeRef() *AppInstallationNodeRef

NewAppInstallationNodeRef instantiates a new AppInstallationNodeRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAppInstallationNodeRefWithDefaults

func NewAppInstallationNodeRefWithDefaults() *AppInstallationNodeRef

NewAppInstallationNodeRefWithDefaults instantiates a new AppInstallationNodeRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AppInstallationNodeRef) GetNodeId

func (o *AppInstallationNodeRef) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*AppInstallationNodeRef) GetNodeIdOk

func (o *AppInstallationNodeRef) GetNodeIdOk() (*string, bool)

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

func (*AppInstallationNodeRef) GetNodeName

func (o *AppInstallationNodeRef) GetNodeName() string

GetNodeName returns the NodeName field value if set, zero value otherwise.

func (*AppInstallationNodeRef) GetNodeNameOk

func (o *AppInstallationNodeRef) GetNodeNameOk() (*string, bool)

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

func (*AppInstallationNodeRef) GetWorkflowId

func (o *AppInstallationNodeRef) GetWorkflowId() string

GetWorkflowId returns the WorkflowId field value if set, zero value otherwise.

func (*AppInstallationNodeRef) GetWorkflowIdOk

func (o *AppInstallationNodeRef) GetWorkflowIdOk() (*string, bool)

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

func (*AppInstallationNodeRef) GetWorkflowName

func (o *AppInstallationNodeRef) GetWorkflowName() string

GetWorkflowName returns the WorkflowName field value if set, zero value otherwise.

func (*AppInstallationNodeRef) GetWorkflowNameOk

func (o *AppInstallationNodeRef) GetWorkflowNameOk() (*string, bool)

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

func (*AppInstallationNodeRef) HasNodeId

func (o *AppInstallationNodeRef) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*AppInstallationNodeRef) HasNodeName

func (o *AppInstallationNodeRef) HasNodeName() bool

HasNodeName returns a boolean if a field has been set.

func (*AppInstallationNodeRef) HasWorkflowId

func (o *AppInstallationNodeRef) HasWorkflowId() bool

HasWorkflowId returns a boolean if a field has been set.

func (*AppInstallationNodeRef) HasWorkflowName

func (o *AppInstallationNodeRef) HasWorkflowName() bool

HasWorkflowName returns a boolean if a field has been set.

func (AppInstallationNodeRef) MarshalJSON

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

func (*AppInstallationNodeRef) SetNodeId

func (o *AppInstallationNodeRef) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*AppInstallationNodeRef) SetNodeName

func (o *AppInstallationNodeRef) SetNodeName(v string)

SetNodeName gets a reference to the given string and assigns it to the NodeName field.

func (*AppInstallationNodeRef) SetWorkflowId

func (o *AppInstallationNodeRef) SetWorkflowId(v string)

SetWorkflowId gets a reference to the given string and assigns it to the WorkflowId field.

func (*AppInstallationNodeRef) SetWorkflowName

func (o *AppInstallationNodeRef) SetWorkflowName(v string)

SetWorkflowName gets a reference to the given string and assigns it to the WorkflowName field.

func (AppInstallationNodeRef) ToMap

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

type ApplicationAPIService

type ApplicationAPIService service

ApplicationAPIService ApplicationAPI service

func (*ApplicationAPIService) ApplicationsListApplications

func (a *ApplicationAPIService) ApplicationsListApplications(ctx context.Context) ApiApplicationsListApplicationsRequest

ApplicationsListApplications List available applications

List available applications

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

func (*ApplicationAPIService) ApplicationsListApplicationsExecute

Execute executes the request

@return SuperplaneApplicationsListApplicationsResponse

type ApplicationsApplicationDefinition

type ApplicationsApplicationDefinition struct {
	Name                     *string               `json:"name,omitempty"`
	Label                    *string               `json:"label,omitempty"`
	Icon                     *string               `json:"icon,omitempty"`
	Description              *string               `json:"description,omitempty"`
	Configuration            []ConfigurationField  `json:"configuration,omitempty"`
	Components               []ComponentsComponent `json:"components,omitempty"`
	Triggers                 []TriggersTrigger     `json:"triggers,omitempty"`
	InstallationInstructions *string               `json:"installationInstructions,omitempty"`
}

ApplicationsApplicationDefinition struct for ApplicationsApplicationDefinition

func NewApplicationsApplicationDefinition

func NewApplicationsApplicationDefinition() *ApplicationsApplicationDefinition

NewApplicationsApplicationDefinition instantiates a new ApplicationsApplicationDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApplicationsApplicationDefinitionWithDefaults

func NewApplicationsApplicationDefinitionWithDefaults() *ApplicationsApplicationDefinition

NewApplicationsApplicationDefinitionWithDefaults instantiates a new ApplicationsApplicationDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApplicationsApplicationDefinition) GetComponents

GetComponents returns the Components field value if set, zero value otherwise.

func (*ApplicationsApplicationDefinition) GetComponentsOk

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

func (*ApplicationsApplicationDefinition) GetConfiguration

func (o *ApplicationsApplicationDefinition) GetConfiguration() []ConfigurationField

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

func (*ApplicationsApplicationDefinition) GetConfigurationOk

func (o *ApplicationsApplicationDefinition) GetConfigurationOk() ([]ConfigurationField, bool)

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

func (*ApplicationsApplicationDefinition) GetDescription

func (o *ApplicationsApplicationDefinition) GetDescription() string

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

func (*ApplicationsApplicationDefinition) GetDescriptionOk

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

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

func (*ApplicationsApplicationDefinition) GetIcon

GetIcon returns the Icon field value if set, zero value otherwise.

func (*ApplicationsApplicationDefinition) GetIconOk

func (o *ApplicationsApplicationDefinition) GetIconOk() (*string, bool)

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

func (*ApplicationsApplicationDefinition) GetInstallationInstructions added in v0.0.45

func (o *ApplicationsApplicationDefinition) GetInstallationInstructions() string

GetInstallationInstructions returns the InstallationInstructions field value if set, zero value otherwise.

func (*ApplicationsApplicationDefinition) GetInstallationInstructionsOk added in v0.0.45

func (o *ApplicationsApplicationDefinition) GetInstallationInstructionsOk() (*string, bool)

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

func (*ApplicationsApplicationDefinition) GetLabel

GetLabel returns the Label field value if set, zero value otherwise.

func (*ApplicationsApplicationDefinition) GetLabelOk

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

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

func (*ApplicationsApplicationDefinition) GetName

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

func (*ApplicationsApplicationDefinition) GetNameOk

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

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

func (*ApplicationsApplicationDefinition) GetTriggers

GetTriggers returns the Triggers field value if set, zero value otherwise.

func (*ApplicationsApplicationDefinition) GetTriggersOk

func (o *ApplicationsApplicationDefinition) GetTriggersOk() ([]TriggersTrigger, bool)

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

func (*ApplicationsApplicationDefinition) HasComponents

func (o *ApplicationsApplicationDefinition) HasComponents() bool

HasComponents returns a boolean if a field has been set.

func (*ApplicationsApplicationDefinition) HasConfiguration

func (o *ApplicationsApplicationDefinition) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ApplicationsApplicationDefinition) HasDescription

func (o *ApplicationsApplicationDefinition) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ApplicationsApplicationDefinition) HasIcon

HasIcon returns a boolean if a field has been set.

func (*ApplicationsApplicationDefinition) HasInstallationInstructions added in v0.0.45

func (o *ApplicationsApplicationDefinition) HasInstallationInstructions() bool

HasInstallationInstructions returns a boolean if a field has been set.

func (*ApplicationsApplicationDefinition) HasLabel

HasLabel returns a boolean if a field has been set.

func (*ApplicationsApplicationDefinition) HasName

HasName returns a boolean if a field has been set.

func (*ApplicationsApplicationDefinition) HasTriggers

func (o *ApplicationsApplicationDefinition) HasTriggers() bool

HasTriggers returns a boolean if a field has been set.

func (ApplicationsApplicationDefinition) MarshalJSON

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

func (*ApplicationsApplicationDefinition) SetComponents

SetComponents gets a reference to the given []ComponentsComponent and assigns it to the Components field.

func (*ApplicationsApplicationDefinition) SetConfiguration

func (o *ApplicationsApplicationDefinition) SetConfiguration(v []ConfigurationField)

SetConfiguration gets a reference to the given []ConfigurationField and assigns it to the Configuration field.

func (*ApplicationsApplicationDefinition) SetDescription

func (o *ApplicationsApplicationDefinition) SetDescription(v string)

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

func (*ApplicationsApplicationDefinition) SetIcon

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*ApplicationsApplicationDefinition) SetInstallationInstructions added in v0.0.45

func (o *ApplicationsApplicationDefinition) SetInstallationInstructions(v string)

SetInstallationInstructions gets a reference to the given string and assigns it to the InstallationInstructions field.

func (*ApplicationsApplicationDefinition) SetLabel

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*ApplicationsApplicationDefinition) SetName

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

func (*ApplicationsApplicationDefinition) SetTriggers

SetTriggers gets a reference to the given []TriggersTrigger and assigns it to the Triggers field.

func (ApplicationsApplicationDefinition) ToMap

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

type AuthorizationDomainType

type AuthorizationDomainType string

AuthorizationDomainType the model 'AuthorizationDomainType'

const (
	AUTHORIZATIONDOMAINTYPE_DOMAIN_TYPE_UNSPECIFIED  AuthorizationDomainType = "DOMAIN_TYPE_UNSPECIFIED"
	AUTHORIZATIONDOMAINTYPE_DOMAIN_TYPE_ORGANIZATION AuthorizationDomainType = "DOMAIN_TYPE_ORGANIZATION"
)

List of AuthorizationDomainType

func NewAuthorizationDomainTypeFromValue

func NewAuthorizationDomainTypeFromValue(v string) (*AuthorizationDomainType, error)

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

func (AuthorizationDomainType) IsValid

func (v AuthorizationDomainType) IsValid() bool

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

func (AuthorizationDomainType) Ptr

Ptr returns reference to AuthorizationDomainType value

func (*AuthorizationDomainType) UnmarshalJSON

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

type AuthorizationPermission

type AuthorizationPermission struct {
	Resource   *string                  `json:"resource,omitempty"`
	Action     *string                  `json:"action,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
}

AuthorizationPermission struct for AuthorizationPermission

func NewAuthorizationPermission

func NewAuthorizationPermission() *AuthorizationPermission

NewAuthorizationPermission instantiates a new AuthorizationPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorizationPermissionWithDefaults

func NewAuthorizationPermissionWithDefaults() *AuthorizationPermission

NewAuthorizationPermissionWithDefaults instantiates a new AuthorizationPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorizationPermission) GetAction

func (o *AuthorizationPermission) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*AuthorizationPermission) GetActionOk

func (o *AuthorizationPermission) GetActionOk() (*string, bool)

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

func (*AuthorizationPermission) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*AuthorizationPermission) GetDomainTypeOk

func (o *AuthorizationPermission) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*AuthorizationPermission) GetResource

func (o *AuthorizationPermission) GetResource() string

GetResource returns the Resource field value if set, zero value otherwise.

func (*AuthorizationPermission) GetResourceOk

func (o *AuthorizationPermission) GetResourceOk() (*string, bool)

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

func (*AuthorizationPermission) HasAction

func (o *AuthorizationPermission) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*AuthorizationPermission) HasDomainType

func (o *AuthorizationPermission) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*AuthorizationPermission) HasResource

func (o *AuthorizationPermission) HasResource() bool

HasResource returns a boolean if a field has been set.

func (AuthorizationPermission) MarshalJSON

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

func (*AuthorizationPermission) SetAction

func (o *AuthorizationPermission) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*AuthorizationPermission) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*AuthorizationPermission) SetResource

func (o *AuthorizationPermission) SetResource(v string)

SetResource gets a reference to the given string and assigns it to the Resource field.

func (AuthorizationPermission) ToMap

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

type BlueprintAPIService service

BlueprintAPIService BlueprintAPI service

func (*BlueprintAPIService) BlueprintsCreateBlueprint

func (a *BlueprintAPIService) BlueprintsCreateBlueprint(ctx context.Context) ApiBlueprintsCreateBlueprintRequest

BlueprintsCreateBlueprint Create blueprint

Creates a new blueprint

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

func (*BlueprintAPIService) BlueprintsCreateBlueprintExecute

Execute executes the request

@return BlueprintsCreateBlueprintResponse

func (*BlueprintAPIService) BlueprintsDeleteBlueprint

func (a *BlueprintAPIService) BlueprintsDeleteBlueprint(ctx context.Context, id string) ApiBlueprintsDeleteBlueprintRequest

BlueprintsDeleteBlueprint Delete blueprint

Deletes an existing blueprint

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

func (*BlueprintAPIService) BlueprintsDeleteBlueprintExecute

func (a *BlueprintAPIService) BlueprintsDeleteBlueprintExecute(r ApiBlueprintsDeleteBlueprintRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*BlueprintAPIService) BlueprintsDescribeBlueprint

func (a *BlueprintAPIService) BlueprintsDescribeBlueprint(ctx context.Context, id string) ApiBlueprintsDescribeBlueprintRequest

BlueprintsDescribeBlueprint Describe blueprint

Returns a blueprint

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

func (*BlueprintAPIService) BlueprintsDescribeBlueprintExecute

Execute executes the request

@return BlueprintsDescribeBlueprintResponse

func (*BlueprintAPIService) BlueprintsListBlueprints

func (a *BlueprintAPIService) BlueprintsListBlueprints(ctx context.Context) ApiBlueprintsListBlueprintsRequest

BlueprintsListBlueprints List blueprints

Returns a list of all blueprints

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

func (*BlueprintAPIService) BlueprintsListBlueprintsExecute

Execute executes the request

@return BlueprintsListBlueprintsResponse

func (*BlueprintAPIService) BlueprintsUpdateBlueprint

func (a *BlueprintAPIService) BlueprintsUpdateBlueprint(ctx context.Context, id string) ApiBlueprintsUpdateBlueprintRequest

BlueprintsUpdateBlueprint Update blueprint

Updates an existing blueprint

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

func (*BlueprintAPIService) BlueprintsUpdateBlueprintExecute

Execute executes the request

@return BlueprintsUpdateBlueprintResponse

type BlueprintsBlueprint

type BlueprintsBlueprint struct {
	Id             *string                             `json:"id,omitempty"`
	OrganizationId *string                             `json:"organizationId,omitempty"`
	Name           *string                             `json:"name,omitempty"`
	Description    *string                             `json:"description,omitempty"`
	CreatedAt      *time.Time                          `json:"createdAt,omitempty"`
	UpdatedAt      *time.Time                          `json:"updatedAt,omitempty"`
	Nodes          []ComponentsNode                    `json:"nodes,omitempty"`
	Edges          []ComponentsEdge                    `json:"edges,omitempty"`
	Configuration  []ConfigurationField                `json:"configuration,omitempty"`
	OutputChannels []SuperplaneBlueprintsOutputChannel `json:"outputChannels,omitempty"`
	Icon           *string                             `json:"icon,omitempty"`
	Color          *string                             `json:"color,omitempty"`
	CreatedBy      *SuperplaneBlueprintsUserRef        `json:"createdBy,omitempty"`
}

BlueprintsBlueprint struct for BlueprintsBlueprint

func NewBlueprintsBlueprint

func NewBlueprintsBlueprint() *BlueprintsBlueprint

NewBlueprintsBlueprint instantiates a new BlueprintsBlueprint object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBlueprintsBlueprintWithDefaults

func NewBlueprintsBlueprintWithDefaults() *BlueprintsBlueprint

NewBlueprintsBlueprintWithDefaults instantiates a new BlueprintsBlueprint object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BlueprintsBlueprint) GetColor

func (o *BlueprintsBlueprint) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetColorOk

func (o *BlueprintsBlueprint) GetColorOk() (*string, bool)

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

func (*BlueprintsBlueprint) GetConfiguration

func (o *BlueprintsBlueprint) GetConfiguration() []ConfigurationField

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

func (*BlueprintsBlueprint) GetConfigurationOk

func (o *BlueprintsBlueprint) GetConfigurationOk() ([]ConfigurationField, bool)

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

func (*BlueprintsBlueprint) GetCreatedAt

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

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

func (*BlueprintsBlueprint) GetCreatedAtOk

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

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

func (*BlueprintsBlueprint) GetCreatedBy

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetCreatedByOk

func (o *BlueprintsBlueprint) GetCreatedByOk() (*SuperplaneBlueprintsUserRef, bool)

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

func (*BlueprintsBlueprint) GetDescription

func (o *BlueprintsBlueprint) GetDescription() string

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

func (*BlueprintsBlueprint) GetDescriptionOk

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

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

func (*BlueprintsBlueprint) GetEdges

func (o *BlueprintsBlueprint) GetEdges() []ComponentsEdge

GetEdges returns the Edges field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetEdgesOk

func (o *BlueprintsBlueprint) GetEdgesOk() ([]ComponentsEdge, bool)

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

func (*BlueprintsBlueprint) GetIcon

func (o *BlueprintsBlueprint) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetIconOk

func (o *BlueprintsBlueprint) GetIconOk() (*string, bool)

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

func (*BlueprintsBlueprint) GetId

func (o *BlueprintsBlueprint) GetId() string

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

func (*BlueprintsBlueprint) GetIdOk

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

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

func (*BlueprintsBlueprint) GetName

func (o *BlueprintsBlueprint) GetName() string

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

func (*BlueprintsBlueprint) GetNameOk

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

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

func (*BlueprintsBlueprint) GetNodes

func (o *BlueprintsBlueprint) GetNodes() []ComponentsNode

GetNodes returns the Nodes field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetNodesOk

func (o *BlueprintsBlueprint) GetNodesOk() ([]ComponentsNode, bool)

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

func (*BlueprintsBlueprint) GetOrganizationId

func (o *BlueprintsBlueprint) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetOrganizationIdOk

func (o *BlueprintsBlueprint) GetOrganizationIdOk() (*string, bool)

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

func (*BlueprintsBlueprint) GetOutputChannels

func (o *BlueprintsBlueprint) GetOutputChannels() []SuperplaneBlueprintsOutputChannel

GetOutputChannels returns the OutputChannels field value if set, zero value otherwise.

func (*BlueprintsBlueprint) GetOutputChannelsOk

func (o *BlueprintsBlueprint) GetOutputChannelsOk() ([]SuperplaneBlueprintsOutputChannel, bool)

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

func (*BlueprintsBlueprint) GetUpdatedAt

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

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

func (*BlueprintsBlueprint) GetUpdatedAtOk

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

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

func (*BlueprintsBlueprint) HasColor

func (o *BlueprintsBlueprint) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasConfiguration

func (o *BlueprintsBlueprint) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasCreatedAt

func (o *BlueprintsBlueprint) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasCreatedBy

func (o *BlueprintsBlueprint) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasDescription

func (o *BlueprintsBlueprint) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasEdges

func (o *BlueprintsBlueprint) HasEdges() bool

HasEdges returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasIcon

func (o *BlueprintsBlueprint) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasId

func (o *BlueprintsBlueprint) HasId() bool

HasId returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasName

func (o *BlueprintsBlueprint) HasName() bool

HasName returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasNodes

func (o *BlueprintsBlueprint) HasNodes() bool

HasNodes returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasOrganizationId

func (o *BlueprintsBlueprint) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasOutputChannels

func (o *BlueprintsBlueprint) HasOutputChannels() bool

HasOutputChannels returns a boolean if a field has been set.

func (*BlueprintsBlueprint) HasUpdatedAt

func (o *BlueprintsBlueprint) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (BlueprintsBlueprint) MarshalJSON

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

func (*BlueprintsBlueprint) SetColor

func (o *BlueprintsBlueprint) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*BlueprintsBlueprint) SetConfiguration

func (o *BlueprintsBlueprint) SetConfiguration(v []ConfigurationField)

SetConfiguration gets a reference to the given []ConfigurationField and assigns it to the Configuration field.

func (*BlueprintsBlueprint) SetCreatedAt

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

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

func (*BlueprintsBlueprint) SetCreatedBy

SetCreatedBy gets a reference to the given SuperplaneBlueprintsUserRef and assigns it to the CreatedBy field.

func (*BlueprintsBlueprint) SetDescription

func (o *BlueprintsBlueprint) SetDescription(v string)

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

func (*BlueprintsBlueprint) SetEdges

func (o *BlueprintsBlueprint) SetEdges(v []ComponentsEdge)

SetEdges gets a reference to the given []ComponentsEdge and assigns it to the Edges field.

func (*BlueprintsBlueprint) SetIcon

func (o *BlueprintsBlueprint) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*BlueprintsBlueprint) SetId

func (o *BlueprintsBlueprint) SetId(v string)

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

func (*BlueprintsBlueprint) SetName

func (o *BlueprintsBlueprint) SetName(v string)

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

func (*BlueprintsBlueprint) SetNodes

func (o *BlueprintsBlueprint) SetNodes(v []ComponentsNode)

SetNodes gets a reference to the given []ComponentsNode and assigns it to the Nodes field.

func (*BlueprintsBlueprint) SetOrganizationId

func (o *BlueprintsBlueprint) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*BlueprintsBlueprint) SetOutputChannels

func (o *BlueprintsBlueprint) SetOutputChannels(v []SuperplaneBlueprintsOutputChannel)

SetOutputChannels gets a reference to the given []SuperplaneBlueprintsOutputChannel and assigns it to the OutputChannels field.

func (*BlueprintsBlueprint) SetUpdatedAt

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

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

func (BlueprintsBlueprint) ToMap

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

type BlueprintsCreateBlueprintRequest

type BlueprintsCreateBlueprintRequest struct {
	Blueprint *BlueprintsBlueprint `json:"blueprint,omitempty"`
}

BlueprintsCreateBlueprintRequest struct for BlueprintsCreateBlueprintRequest

func NewBlueprintsCreateBlueprintRequest

func NewBlueprintsCreateBlueprintRequest() *BlueprintsCreateBlueprintRequest

NewBlueprintsCreateBlueprintRequest instantiates a new BlueprintsCreateBlueprintRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBlueprintsCreateBlueprintRequestWithDefaults

func NewBlueprintsCreateBlueprintRequestWithDefaults() *BlueprintsCreateBlueprintRequest

NewBlueprintsCreateBlueprintRequestWithDefaults instantiates a new BlueprintsCreateBlueprintRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BlueprintsCreateBlueprintRequest) GetBlueprint

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*BlueprintsCreateBlueprintRequest) GetBlueprintOk

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

func (*BlueprintsCreateBlueprintRequest) HasBlueprint

func (o *BlueprintsCreateBlueprintRequest) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (BlueprintsCreateBlueprintRequest) MarshalJSON

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

func (*BlueprintsCreateBlueprintRequest) SetBlueprint

SetBlueprint gets a reference to the given BlueprintsBlueprint and assigns it to the Blueprint field.

func (BlueprintsCreateBlueprintRequest) ToMap

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

type BlueprintsCreateBlueprintResponse

type BlueprintsCreateBlueprintResponse struct {
	Blueprint *BlueprintsBlueprint `json:"blueprint,omitempty"`
}

BlueprintsCreateBlueprintResponse struct for BlueprintsCreateBlueprintResponse

func NewBlueprintsCreateBlueprintResponse

func NewBlueprintsCreateBlueprintResponse() *BlueprintsCreateBlueprintResponse

NewBlueprintsCreateBlueprintResponse instantiates a new BlueprintsCreateBlueprintResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBlueprintsCreateBlueprintResponseWithDefaults

func NewBlueprintsCreateBlueprintResponseWithDefaults() *BlueprintsCreateBlueprintResponse

NewBlueprintsCreateBlueprintResponseWithDefaults instantiates a new BlueprintsCreateBlueprintResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BlueprintsCreateBlueprintResponse) GetBlueprint

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*BlueprintsCreateBlueprintResponse) GetBlueprintOk

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

func (*BlueprintsCreateBlueprintResponse) HasBlueprint

func (o *BlueprintsCreateBlueprintResponse) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (BlueprintsCreateBlueprintResponse) MarshalJSON

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

func (*BlueprintsCreateBlueprintResponse) SetBlueprint

SetBlueprint gets a reference to the given BlueprintsBlueprint and assigns it to the Blueprint field.

func (BlueprintsCreateBlueprintResponse) ToMap

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

type BlueprintsDescribeBlueprintResponse

type BlueprintsDescribeBlueprintResponse struct {
	Blueprint *BlueprintsBlueprint `json:"blueprint,omitempty"`
}

BlueprintsDescribeBlueprintResponse struct for BlueprintsDescribeBlueprintResponse

func NewBlueprintsDescribeBlueprintResponse

func NewBlueprintsDescribeBlueprintResponse() *BlueprintsDescribeBlueprintResponse

NewBlueprintsDescribeBlueprintResponse instantiates a new BlueprintsDescribeBlueprintResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBlueprintsDescribeBlueprintResponseWithDefaults

func NewBlueprintsDescribeBlueprintResponseWithDefaults() *BlueprintsDescribeBlueprintResponse

NewBlueprintsDescribeBlueprintResponseWithDefaults instantiates a new BlueprintsDescribeBlueprintResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BlueprintsDescribeBlueprintResponse) GetBlueprint

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*BlueprintsDescribeBlueprintResponse) GetBlueprintOk

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

func (*BlueprintsDescribeBlueprintResponse) HasBlueprint

func (o *BlueprintsDescribeBlueprintResponse) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (BlueprintsDescribeBlueprintResponse) MarshalJSON

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

func (*BlueprintsDescribeBlueprintResponse) SetBlueprint

SetBlueprint gets a reference to the given BlueprintsBlueprint and assigns it to the Blueprint field.

func (BlueprintsDescribeBlueprintResponse) ToMap

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

type BlueprintsListBlueprintsResponse

type BlueprintsListBlueprintsResponse struct {
	Blueprints []BlueprintsBlueprint `json:"blueprints,omitempty"`
}

BlueprintsListBlueprintsResponse struct for BlueprintsListBlueprintsResponse

func NewBlueprintsListBlueprintsResponse

func NewBlueprintsListBlueprintsResponse() *BlueprintsListBlueprintsResponse

NewBlueprintsListBlueprintsResponse instantiates a new BlueprintsListBlueprintsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBlueprintsListBlueprintsResponseWithDefaults

func NewBlueprintsListBlueprintsResponseWithDefaults() *BlueprintsListBlueprintsResponse

NewBlueprintsListBlueprintsResponseWithDefaults instantiates a new BlueprintsListBlueprintsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BlueprintsListBlueprintsResponse) GetBlueprints

GetBlueprints returns the Blueprints field value if set, zero value otherwise.

func (*BlueprintsListBlueprintsResponse) GetBlueprintsOk

func (o *BlueprintsListBlueprintsResponse) GetBlueprintsOk() ([]BlueprintsBlueprint, bool)

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

func (*BlueprintsListBlueprintsResponse) HasBlueprints

func (o *BlueprintsListBlueprintsResponse) HasBlueprints() bool

HasBlueprints returns a boolean if a field has been set.

func (BlueprintsListBlueprintsResponse) MarshalJSON

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

func (*BlueprintsListBlueprintsResponse) SetBlueprints

SetBlueprints gets a reference to the given []BlueprintsBlueprint and assigns it to the Blueprints field.

func (BlueprintsListBlueprintsResponse) ToMap

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

type BlueprintsUpdateBlueprintBody

type BlueprintsUpdateBlueprintBody struct {
	Blueprint *BlueprintsBlueprint `json:"blueprint,omitempty"`
}

BlueprintsUpdateBlueprintBody struct for BlueprintsUpdateBlueprintBody

func NewBlueprintsUpdateBlueprintBody

func NewBlueprintsUpdateBlueprintBody() *BlueprintsUpdateBlueprintBody

NewBlueprintsUpdateBlueprintBody instantiates a new BlueprintsUpdateBlueprintBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBlueprintsUpdateBlueprintBodyWithDefaults

func NewBlueprintsUpdateBlueprintBodyWithDefaults() *BlueprintsUpdateBlueprintBody

NewBlueprintsUpdateBlueprintBodyWithDefaults instantiates a new BlueprintsUpdateBlueprintBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BlueprintsUpdateBlueprintBody) GetBlueprint

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*BlueprintsUpdateBlueprintBody) GetBlueprintOk

func (o *BlueprintsUpdateBlueprintBody) GetBlueprintOk() (*BlueprintsBlueprint, bool)

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

func (*BlueprintsUpdateBlueprintBody) HasBlueprint

func (o *BlueprintsUpdateBlueprintBody) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (BlueprintsUpdateBlueprintBody) MarshalJSON

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

func (*BlueprintsUpdateBlueprintBody) SetBlueprint

SetBlueprint gets a reference to the given BlueprintsBlueprint and assigns it to the Blueprint field.

func (BlueprintsUpdateBlueprintBody) ToMap

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

type BlueprintsUpdateBlueprintResponse

type BlueprintsUpdateBlueprintResponse struct {
	Blueprint *BlueprintsBlueprint `json:"blueprint,omitempty"`
}

BlueprintsUpdateBlueprintResponse struct for BlueprintsUpdateBlueprintResponse

func NewBlueprintsUpdateBlueprintResponse

func NewBlueprintsUpdateBlueprintResponse() *BlueprintsUpdateBlueprintResponse

NewBlueprintsUpdateBlueprintResponse instantiates a new BlueprintsUpdateBlueprintResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBlueprintsUpdateBlueprintResponseWithDefaults

func NewBlueprintsUpdateBlueprintResponseWithDefaults() *BlueprintsUpdateBlueprintResponse

NewBlueprintsUpdateBlueprintResponseWithDefaults instantiates a new BlueprintsUpdateBlueprintResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BlueprintsUpdateBlueprintResponse) GetBlueprint

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*BlueprintsUpdateBlueprintResponse) GetBlueprintOk

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

func (*BlueprintsUpdateBlueprintResponse) HasBlueprint

func (o *BlueprintsUpdateBlueprintResponse) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (BlueprintsUpdateBlueprintResponse) MarshalJSON

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

func (*BlueprintsUpdateBlueprintResponse) SetBlueprint

SetBlueprint gets a reference to the given BlueprintsBlueprint and assigns it to the Blueprint field.

func (BlueprintsUpdateBlueprintResponse) ToMap

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

type ComponentAPIService

type ComponentAPIService service

ComponentAPIService ComponentAPI service

func (*ComponentAPIService) ComponentsDescribeComponent

func (a *ComponentAPIService) ComponentsDescribeComponent(ctx context.Context, name string) ApiComponentsDescribeComponentRequest

ComponentsDescribeComponent Describe component

Returns a component by its name

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

func (*ComponentAPIService) ComponentsDescribeComponentExecute

Execute executes the request

@return ComponentsDescribeComponentResponse

func (*ComponentAPIService) ComponentsListComponentActions

func (a *ComponentAPIService) ComponentsListComponentActions(ctx context.Context, name string) ApiComponentsListComponentActionsRequest

ComponentsListComponentActions List component actions

Returns available actions for a component

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

func (*ComponentAPIService) ComponentsListComponentActionsExecute

Execute executes the request

@return ComponentsListComponentActionsResponse

func (*ComponentAPIService) ComponentsListComponents

func (a *ComponentAPIService) ComponentsListComponents(ctx context.Context) ApiComponentsListComponentsRequest

ComponentsListComponents List components

Returns a list of all components

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

func (*ComponentAPIService) ComponentsListComponentsExecute

Execute executes the request

@return ComponentsListComponentsResponse

type ComponentsAppInstallationRef

type ComponentsAppInstallationRef struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

ComponentsAppInstallationRef struct for ComponentsAppInstallationRef

func NewComponentsAppInstallationRef

func NewComponentsAppInstallationRef() *ComponentsAppInstallationRef

NewComponentsAppInstallationRef instantiates a new ComponentsAppInstallationRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewComponentsAppInstallationRefWithDefaults

func NewComponentsAppInstallationRefWithDefaults() *ComponentsAppInstallationRef

NewComponentsAppInstallationRefWithDefaults instantiates a new ComponentsAppInstallationRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ComponentsAppInstallationRef) GetId

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

func (*ComponentsAppInstallationRef) GetIdOk

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

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

func (*ComponentsAppInstallationRef) GetName

func (o *ComponentsAppInstallationRef) GetName() string

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

func (*ComponentsAppInstallationRef) GetNameOk

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

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

func (*ComponentsAppInstallationRef) HasId

HasId returns a boolean if a field has been set.

func (*ComponentsAppInstallationRef) HasName

func (o *ComponentsAppInstallationRef) HasName() bool

HasName returns a boolean if a field has been set.

func (ComponentsAppInstallationRef) MarshalJSON

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

func (*ComponentsAppInstallationRef) SetId

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

func (*ComponentsAppInstallationRef) SetName

func (o *ComponentsAppInstallationRef) SetName(v string)

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

func (ComponentsAppInstallationRef) ToMap

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

type ComponentsComponent

type ComponentsComponent struct {
	Name           *string                             `json:"name,omitempty"`
	Label          *string                             `json:"label,omitempty"`
	Description    *string                             `json:"description,omitempty"`
	Configuration  []ConfigurationField                `json:"configuration,omitempty"`
	OutputChannels []SuperplaneComponentsOutputChannel `json:"outputChannels,omitempty"`
	Icon           *string                             `json:"icon,omitempty"`
	Color          *string                             `json:"color,omitempty"`
	ExampleOutput  map[string]interface{}              `json:"exampleOutput,omitempty"`
}

ComponentsComponent struct for ComponentsComponent

func NewComponentsComponent

func NewComponentsComponent() *ComponentsComponent

NewComponentsComponent instantiates a new ComponentsComponent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewComponentsComponentWithDefaults

func NewComponentsComponentWithDefaults() *ComponentsComponent

NewComponentsComponentWithDefaults instantiates a new ComponentsComponent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ComponentsComponent) GetColor

func (o *ComponentsComponent) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*ComponentsComponent) GetColorOk

func (o *ComponentsComponent) GetColorOk() (*string, bool)

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

func (*ComponentsComponent) GetConfiguration

func (o *ComponentsComponent) GetConfiguration() []ConfigurationField

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

func (*ComponentsComponent) GetConfigurationOk

func (o *ComponentsComponent) GetConfigurationOk() ([]ConfigurationField, bool)

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

func (*ComponentsComponent) GetDescription

func (o *ComponentsComponent) GetDescription() string

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

func (*ComponentsComponent) GetDescriptionOk

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

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

func (*ComponentsComponent) GetExampleOutput added in v0.0.45

func (o *ComponentsComponent) GetExampleOutput() map[string]interface{}

GetExampleOutput returns the ExampleOutput field value if set, zero value otherwise.

func (*ComponentsComponent) GetExampleOutputOk added in v0.0.45

func (o *ComponentsComponent) GetExampleOutputOk() (map[string]interface{}, bool)

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

func (*ComponentsComponent) GetIcon

func (o *ComponentsComponent) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*ComponentsComponent) GetIconOk

func (o *ComponentsComponent) GetIconOk() (*string, bool)

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

func (*ComponentsComponent) GetLabel

func (o *ComponentsComponent) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*ComponentsComponent) GetLabelOk

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

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

func (*ComponentsComponent) GetName

func (o *ComponentsComponent) GetName() string

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

func (*ComponentsComponent) GetNameOk

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

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

func (*ComponentsComponent) GetOutputChannels

func (o *ComponentsComponent) GetOutputChannels() []SuperplaneComponentsOutputChannel

GetOutputChannels returns the OutputChannels field value if set, zero value otherwise.

func (*ComponentsComponent) GetOutputChannelsOk

func (o *ComponentsComponent) GetOutputChannelsOk() ([]SuperplaneComponentsOutputChannel, bool)

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

func (*ComponentsComponent) HasColor

func (o *ComponentsComponent) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*ComponentsComponent) HasConfiguration

func (o *ComponentsComponent) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ComponentsComponent) HasDescription

func (o *ComponentsComponent) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ComponentsComponent) HasExampleOutput added in v0.0.45

func (o *ComponentsComponent) HasExampleOutput() bool

HasExampleOutput returns a boolean if a field has been set.

func (*ComponentsComponent) HasIcon

func (o *ComponentsComponent) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*ComponentsComponent) HasLabel

func (o *ComponentsComponent) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ComponentsComponent) HasName

func (o *ComponentsComponent) HasName() bool

HasName returns a boolean if a field has been set.

func (*ComponentsComponent) HasOutputChannels

func (o *ComponentsComponent) HasOutputChannels() bool

HasOutputChannels returns a boolean if a field has been set.

func (ComponentsComponent) MarshalJSON

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

func (*ComponentsComponent) SetColor

func (o *ComponentsComponent) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*ComponentsComponent) SetConfiguration

func (o *ComponentsComponent) SetConfiguration(v []ConfigurationField)

SetConfiguration gets a reference to the given []ConfigurationField and assigns it to the Configuration field.

func (*ComponentsComponent) SetDescription

func (o *ComponentsComponent) SetDescription(v string)

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

func (*ComponentsComponent) SetExampleOutput added in v0.0.45

func (o *ComponentsComponent) SetExampleOutput(v map[string]interface{})

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

func (*ComponentsComponent) SetIcon

func (o *ComponentsComponent) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*ComponentsComponent) SetLabel

func (o *ComponentsComponent) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*ComponentsComponent) SetName

func (o *ComponentsComponent) SetName(v string)

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

func (*ComponentsComponent) SetOutputChannels

func (o *ComponentsComponent) SetOutputChannels(v []SuperplaneComponentsOutputChannel)

SetOutputChannels gets a reference to the given []SuperplaneComponentsOutputChannel and assigns it to the OutputChannels field.

func (ComponentsComponent) ToMap

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

type ComponentsComponentAction

type ComponentsComponentAction struct {
	Name        *string              `json:"name,omitempty"`
	Description *string              `json:"description,omitempty"`
	Parameters  []ConfigurationField `json:"parameters,omitempty"`
}

ComponentsComponentAction struct for ComponentsComponentAction

func NewComponentsComponentAction

func NewComponentsComponentAction() *ComponentsComponentAction

NewComponentsComponentAction instantiates a new ComponentsComponentAction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewComponentsComponentActionWithDefaults

func NewComponentsComponentActionWithDefaults() *ComponentsComponentAction

NewComponentsComponentActionWithDefaults instantiates a new ComponentsComponentAction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ComponentsComponentAction) GetDescription

func (o *ComponentsComponentAction) GetDescription() string

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

func (*ComponentsComponentAction) GetDescriptionOk

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

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

func (*ComponentsComponentAction) GetName

func (o *ComponentsComponentAction) GetName() string

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

func (*ComponentsComponentAction) GetNameOk

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

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

func (*ComponentsComponentAction) GetParameters

func (o *ComponentsComponentAction) GetParameters() []ConfigurationField

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*ComponentsComponentAction) GetParametersOk

func (o *ComponentsComponentAction) GetParametersOk() ([]ConfigurationField, bool)

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

func (*ComponentsComponentAction) HasDescription

func (o *ComponentsComponentAction) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ComponentsComponentAction) HasName

func (o *ComponentsComponentAction) HasName() bool

HasName returns a boolean if a field has been set.

func (*ComponentsComponentAction) HasParameters

func (o *ComponentsComponentAction) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (ComponentsComponentAction) MarshalJSON

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

func (*ComponentsComponentAction) SetDescription

func (o *ComponentsComponentAction) SetDescription(v string)

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

func (*ComponentsComponentAction) SetName

func (o *ComponentsComponentAction) SetName(v string)

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

func (*ComponentsComponentAction) SetParameters

func (o *ComponentsComponentAction) SetParameters(v []ConfigurationField)

SetParameters gets a reference to the given []ConfigurationField and assigns it to the Parameters field.

func (ComponentsComponentAction) ToMap

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

type ComponentsDescribeComponentResponse

type ComponentsDescribeComponentResponse struct {
	Component *ComponentsComponent `json:"component,omitempty"`
}

ComponentsDescribeComponentResponse struct for ComponentsDescribeComponentResponse

func NewComponentsDescribeComponentResponse

func NewComponentsDescribeComponentResponse() *ComponentsDescribeComponentResponse

NewComponentsDescribeComponentResponse instantiates a new ComponentsDescribeComponentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewComponentsDescribeComponentResponseWithDefaults

func NewComponentsDescribeComponentResponseWithDefaults() *ComponentsDescribeComponentResponse

NewComponentsDescribeComponentResponseWithDefaults instantiates a new ComponentsDescribeComponentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ComponentsDescribeComponentResponse) GetComponent

GetComponent returns the Component field value if set, zero value otherwise.

func (*ComponentsDescribeComponentResponse) GetComponentOk

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

func (*ComponentsDescribeComponentResponse) HasComponent

func (o *ComponentsDescribeComponentResponse) HasComponent() bool

HasComponent returns a boolean if a field has been set.

func (ComponentsDescribeComponentResponse) MarshalJSON

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

func (*ComponentsDescribeComponentResponse) SetComponent

SetComponent gets a reference to the given ComponentsComponent and assigns it to the Component field.

func (ComponentsDescribeComponentResponse) ToMap

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

type ComponentsEdge

type ComponentsEdge struct {
	SourceId *string `json:"sourceId,omitempty"`
	TargetId *string `json:"targetId,omitempty"`
	Channel  *string `json:"channel,omitempty"`
}

ComponentsEdge struct for ComponentsEdge

func NewComponentsEdge

func NewComponentsEdge() *ComponentsEdge

NewComponentsEdge instantiates a new ComponentsEdge object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewComponentsEdgeWithDefaults

func NewComponentsEdgeWithDefaults() *ComponentsEdge

NewComponentsEdgeWithDefaults instantiates a new ComponentsEdge object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ComponentsEdge) GetChannel

func (o *ComponentsEdge) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*ComponentsEdge) GetChannelOk

func (o *ComponentsEdge) GetChannelOk() (*string, bool)

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

func (*ComponentsEdge) GetSourceId

func (o *ComponentsEdge) GetSourceId() string

GetSourceId returns the SourceId field value if set, zero value otherwise.

func (*ComponentsEdge) GetSourceIdOk

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

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

func (*ComponentsEdge) GetTargetId

func (o *ComponentsEdge) GetTargetId() string

GetTargetId returns the TargetId field value if set, zero value otherwise.

func (*ComponentsEdge) GetTargetIdOk

func (o *ComponentsEdge) GetTargetIdOk() (*string, bool)

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

func (*ComponentsEdge) HasChannel

func (o *ComponentsEdge) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*ComponentsEdge) HasSourceId

func (o *ComponentsEdge) HasSourceId() bool

HasSourceId returns a boolean if a field has been set.

func (*ComponentsEdge) HasTargetId

func (o *ComponentsEdge) HasTargetId() bool

HasTargetId returns a boolean if a field has been set.

func (ComponentsEdge) MarshalJSON

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

func (*ComponentsEdge) SetChannel

func (o *ComponentsEdge) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*ComponentsEdge) SetSourceId

func (o *ComponentsEdge) SetSourceId(v string)

SetSourceId gets a reference to the given string and assigns it to the SourceId field.

func (*ComponentsEdge) SetTargetId

func (o *ComponentsEdge) SetTargetId(v string)

SetTargetId gets a reference to the given string and assigns it to the TargetId field.

func (ComponentsEdge) ToMap

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

type ComponentsListComponentActionsResponse

type ComponentsListComponentActionsResponse struct {
	Actions []ComponentsComponentAction `json:"actions,omitempty"`
}

ComponentsListComponentActionsResponse struct for ComponentsListComponentActionsResponse

func NewComponentsListComponentActionsResponse

func NewComponentsListComponentActionsResponse() *ComponentsListComponentActionsResponse

NewComponentsListComponentActionsResponse instantiates a new ComponentsListComponentActionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewComponentsListComponentActionsResponseWithDefaults

func NewComponentsListComponentActionsResponseWithDefaults() *ComponentsListComponentActionsResponse

NewComponentsListComponentActionsResponseWithDefaults instantiates a new ComponentsListComponentActionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ComponentsListComponentActionsResponse) GetActions

GetActions returns the Actions field value if set, zero value otherwise.

func (*ComponentsListComponentActionsResponse) GetActionsOk

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

func (*ComponentsListComponentActionsResponse) HasActions

HasActions returns a boolean if a field has been set.

func (ComponentsListComponentActionsResponse) MarshalJSON

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

func (*ComponentsListComponentActionsResponse) SetActions

SetActions gets a reference to the given []ComponentsComponentAction and assigns it to the Actions field.

func (ComponentsListComponentActionsResponse) ToMap

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

type ComponentsListComponentsResponse

type ComponentsListComponentsResponse struct {
	Components []ComponentsComponent `json:"components,omitempty"`
}

ComponentsListComponentsResponse struct for ComponentsListComponentsResponse

func NewComponentsListComponentsResponse

func NewComponentsListComponentsResponse() *ComponentsListComponentsResponse

NewComponentsListComponentsResponse instantiates a new ComponentsListComponentsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewComponentsListComponentsResponseWithDefaults

func NewComponentsListComponentsResponseWithDefaults() *ComponentsListComponentsResponse

NewComponentsListComponentsResponseWithDefaults instantiates a new ComponentsListComponentsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ComponentsListComponentsResponse) GetComponents

GetComponents returns the Components field value if set, zero value otherwise.

func (*ComponentsListComponentsResponse) GetComponentsOk

func (o *ComponentsListComponentsResponse) GetComponentsOk() ([]ComponentsComponent, bool)

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

func (*ComponentsListComponentsResponse) HasComponents

func (o *ComponentsListComponentsResponse) HasComponents() bool

HasComponents returns a boolean if a field has been set.

func (ComponentsListComponentsResponse) MarshalJSON

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

func (*ComponentsListComponentsResponse) SetComponents

SetComponents gets a reference to the given []ComponentsComponent and assigns it to the Components field.

func (ComponentsListComponentsResponse) ToMap

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

type ComponentsNode

type ComponentsNode struct {
	Id              *string                       `json:"id,omitempty"`
	Name            *string                       `json:"name,omitempty"`
	Type            *ComponentsNodeType           `json:"type,omitempty"`
	Configuration   map[string]interface{}        `json:"configuration,omitempty"`
	Metadata        map[string]interface{}        `json:"metadata,omitempty"`
	Position        *ComponentsPosition           `json:"position,omitempty"`
	Component       *NodeComponentRef             `json:"component,omitempty"`
	Blueprint       *NodeBlueprintRef             `json:"blueprint,omitempty"`
	Trigger         *NodeTriggerRef               `json:"trigger,omitempty"`
	Widget          *NodeWidgetRef                `json:"widget,omitempty"`
	IsCollapsed     *bool                         `json:"isCollapsed,omitempty"`
	AppInstallation *ComponentsAppInstallationRef `json:"appInstallation,omitempty"`
	ErrorMessage    *string                       `json:"errorMessage,omitempty"`
}

ComponentsNode struct for ComponentsNode

func NewComponentsNode

func NewComponentsNode() *ComponentsNode

NewComponentsNode instantiates a new ComponentsNode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewComponentsNodeWithDefaults

func NewComponentsNodeWithDefaults() *ComponentsNode

NewComponentsNodeWithDefaults instantiates a new ComponentsNode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ComponentsNode) GetAppInstallation

func (o *ComponentsNode) GetAppInstallation() ComponentsAppInstallationRef

GetAppInstallation returns the AppInstallation field value if set, zero value otherwise.

func (*ComponentsNode) GetAppInstallationOk

func (o *ComponentsNode) GetAppInstallationOk() (*ComponentsAppInstallationRef, bool)

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

func (*ComponentsNode) GetBlueprint

func (o *ComponentsNode) GetBlueprint() NodeBlueprintRef

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*ComponentsNode) GetBlueprintOk

func (o *ComponentsNode) GetBlueprintOk() (*NodeBlueprintRef, bool)

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

func (*ComponentsNode) GetComponent

func (o *ComponentsNode) GetComponent() NodeComponentRef

GetComponent returns the Component field value if set, zero value otherwise.

func (*ComponentsNode) GetComponentOk

func (o *ComponentsNode) GetComponentOk() (*NodeComponentRef, bool)

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

func (*ComponentsNode) GetConfiguration

func (o *ComponentsNode) GetConfiguration() map[string]interface{}

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

func (*ComponentsNode) GetConfigurationOk

func (o *ComponentsNode) GetConfigurationOk() (map[string]interface{}, bool)

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

func (*ComponentsNode) GetErrorMessage

func (o *ComponentsNode) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise.

func (*ComponentsNode) GetErrorMessageOk

func (o *ComponentsNode) GetErrorMessageOk() (*string, bool)

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

func (*ComponentsNode) GetId

func (o *ComponentsNode) GetId() string

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

func (*ComponentsNode) GetIdOk

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

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

func (*ComponentsNode) GetIsCollapsed

func (o *ComponentsNode) GetIsCollapsed() bool

GetIsCollapsed returns the IsCollapsed field value if set, zero value otherwise.

func (*ComponentsNode) GetIsCollapsedOk

func (o *ComponentsNode) GetIsCollapsedOk() (*bool, bool)

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

func (*ComponentsNode) GetMetadata

func (o *ComponentsNode) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ComponentsNode) GetMetadataOk

func (o *ComponentsNode) GetMetadataOk() (map[string]interface{}, bool)

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

func (*ComponentsNode) GetName

func (o *ComponentsNode) GetName() string

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

func (*ComponentsNode) GetNameOk

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

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

func (*ComponentsNode) GetPosition

func (o *ComponentsNode) GetPosition() ComponentsPosition

GetPosition returns the Position field value if set, zero value otherwise.

func (*ComponentsNode) GetPositionOk

func (o *ComponentsNode) GetPositionOk() (*ComponentsPosition, bool)

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

func (*ComponentsNode) GetTrigger

func (o *ComponentsNode) GetTrigger() NodeTriggerRef

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

func (*ComponentsNode) GetTriggerOk

func (o *ComponentsNode) GetTriggerOk() (*NodeTriggerRef, bool)

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

func (*ComponentsNode) GetType

func (o *ComponentsNode) GetType() ComponentsNodeType

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

func (*ComponentsNode) GetTypeOk

func (o *ComponentsNode) GetTypeOk() (*ComponentsNodeType, bool)

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

func (*ComponentsNode) GetWidget added in v0.0.18

func (o *ComponentsNode) GetWidget() NodeWidgetRef

GetWidget returns the Widget field value if set, zero value otherwise.

func (*ComponentsNode) GetWidgetOk added in v0.0.18

func (o *ComponentsNode) GetWidgetOk() (*NodeWidgetRef, bool)

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

func (*ComponentsNode) HasAppInstallation

func (o *ComponentsNode) HasAppInstallation() bool

HasAppInstallation returns a boolean if a field has been set.

func (*ComponentsNode) HasBlueprint

func (o *ComponentsNode) HasBlueprint() bool

HasBlueprint returns a boolean if a field has been set.

func (*ComponentsNode) HasComponent

func (o *ComponentsNode) HasComponent() bool

HasComponent returns a boolean if a field has been set.

func (*ComponentsNode) HasConfiguration

func (o *ComponentsNode) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ComponentsNode) HasErrorMessage

func (o *ComponentsNode) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*ComponentsNode) HasId

func (o *ComponentsNode) HasId() bool

HasId returns a boolean if a field has been set.

func (*ComponentsNode) HasIsCollapsed

func (o *ComponentsNode) HasIsCollapsed() bool

HasIsCollapsed returns a boolean if a field has been set.

func (*ComponentsNode) HasMetadata

func (o *ComponentsNode) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ComponentsNode) HasName

func (o *ComponentsNode) HasName() bool

HasName returns a boolean if a field has been set.

func (*ComponentsNode) HasPosition

func (o *ComponentsNode) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*ComponentsNode) HasTrigger

func (o *ComponentsNode) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (*ComponentsNode) HasType

func (o *ComponentsNode) HasType() bool

HasType returns a boolean if a field has been set.

func (*ComponentsNode) HasWidget added in v0.0.18

func (o *ComponentsNode) HasWidget() bool

HasWidget returns a boolean if a field has been set.

func (ComponentsNode) MarshalJSON

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

func (*ComponentsNode) SetAppInstallation

func (o *ComponentsNode) SetAppInstallation(v ComponentsAppInstallationRef)

SetAppInstallation gets a reference to the given ComponentsAppInstallationRef and assigns it to the AppInstallation field.

func (*ComponentsNode) SetBlueprint

func (o *ComponentsNode) SetBlueprint(v NodeBlueprintRef)

SetBlueprint gets a reference to the given NodeBlueprintRef and assigns it to the Blueprint field.

func (*ComponentsNode) SetComponent

func (o *ComponentsNode) SetComponent(v NodeComponentRef)

SetComponent gets a reference to the given NodeComponentRef and assigns it to the Component field.

func (*ComponentsNode) SetConfiguration

func (o *ComponentsNode) SetConfiguration(v map[string]interface{})

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

func (*ComponentsNode) SetErrorMessage

func (o *ComponentsNode) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given string and assigns it to the ErrorMessage field.

func (*ComponentsNode) SetId

func (o *ComponentsNode) SetId(v string)

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

func (*ComponentsNode) SetIsCollapsed

func (o *ComponentsNode) SetIsCollapsed(v bool)

SetIsCollapsed gets a reference to the given bool and assigns it to the IsCollapsed field.

func (*ComponentsNode) SetMetadata

func (o *ComponentsNode) SetMetadata(v map[string]interface{})

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

func (*ComponentsNode) SetName

func (o *ComponentsNode) SetName(v string)

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

func (*ComponentsNode) SetPosition

func (o *ComponentsNode) SetPosition(v ComponentsPosition)

SetPosition gets a reference to the given ComponentsPosition and assigns it to the Position field.

func (*ComponentsNode) SetTrigger

func (o *ComponentsNode) SetTrigger(v NodeTriggerRef)

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

func (*ComponentsNode) SetType

func (o *ComponentsNode) SetType(v ComponentsNodeType)

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

func (*ComponentsNode) SetWidget added in v0.0.18

func (o *ComponentsNode) SetWidget(v NodeWidgetRef)

SetWidget gets a reference to the given NodeWidgetRef and assigns it to the Widget field.

func (ComponentsNode) ToMap

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

type ComponentsNodeType

type ComponentsNodeType string

ComponentsNodeType the model 'ComponentsNodeType'

const (
	COMPONENTSNODETYPE_TYPE_COMPONENT ComponentsNodeType = "TYPE_COMPONENT"
	COMPONENTSNODETYPE_TYPE_BLUEPRINT ComponentsNodeType = "TYPE_BLUEPRINT"
	COMPONENTSNODETYPE_TYPE_TRIGGER   ComponentsNodeType = "TYPE_TRIGGER"
	COMPONENTSNODETYPE_TYPE_WIDGET    ComponentsNodeType = "TYPE_WIDGET"
)

List of ComponentsNodeType

func NewComponentsNodeTypeFromValue

func NewComponentsNodeTypeFromValue(v string) (*ComponentsNodeType, error)

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

func (ComponentsNodeType) IsValid

func (v ComponentsNodeType) IsValid() bool

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

func (ComponentsNodeType) Ptr

Ptr returns reference to ComponentsNodeType value

func (*ComponentsNodeType) UnmarshalJSON

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

type ComponentsPosition

type ComponentsPosition struct {
	X *int32 `json:"x,omitempty"`
	Y *int32 `json:"y,omitempty"`
}

ComponentsPosition struct for ComponentsPosition

func NewComponentsPosition

func NewComponentsPosition() *ComponentsPosition

NewComponentsPosition instantiates a new ComponentsPosition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewComponentsPositionWithDefaults

func NewComponentsPositionWithDefaults() *ComponentsPosition

NewComponentsPositionWithDefaults instantiates a new ComponentsPosition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ComponentsPosition) GetX

func (o *ComponentsPosition) GetX() int32

GetX returns the X field value if set, zero value otherwise.

func (*ComponentsPosition) GetXOk

func (o *ComponentsPosition) GetXOk() (*int32, bool)

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

func (*ComponentsPosition) GetY

func (o *ComponentsPosition) GetY() int32

GetY returns the Y field value if set, zero value otherwise.

func (*ComponentsPosition) GetYOk

func (o *ComponentsPosition) GetYOk() (*int32, bool)

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

func (*ComponentsPosition) HasX

func (o *ComponentsPosition) HasX() bool

HasX returns a boolean if a field has been set.

func (*ComponentsPosition) HasY

func (o *ComponentsPosition) HasY() bool

HasY returns a boolean if a field has been set.

func (ComponentsPosition) MarshalJSON

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

func (*ComponentsPosition) SetX

func (o *ComponentsPosition) SetX(v int32)

SetX gets a reference to the given int32 and assigns it to the X field.

func (*ComponentsPosition) SetY

func (o *ComponentsPosition) SetY(v int32)

SetY gets a reference to the given int32 and assigns it to the Y field.

func (ComponentsPosition) ToMap

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type ConfigurationAnyPredicateListTypeOptions

type ConfigurationAnyPredicateListTypeOptions struct {
	Operators []ConfigurationSelectOption `json:"operators,omitempty"`
}

ConfigurationAnyPredicateListTypeOptions struct for ConfigurationAnyPredicateListTypeOptions

func NewConfigurationAnyPredicateListTypeOptions

func NewConfigurationAnyPredicateListTypeOptions() *ConfigurationAnyPredicateListTypeOptions

NewConfigurationAnyPredicateListTypeOptions instantiates a new ConfigurationAnyPredicateListTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationAnyPredicateListTypeOptionsWithDefaults

func NewConfigurationAnyPredicateListTypeOptionsWithDefaults() *ConfigurationAnyPredicateListTypeOptions

NewConfigurationAnyPredicateListTypeOptionsWithDefaults instantiates a new ConfigurationAnyPredicateListTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationAnyPredicateListTypeOptions) GetOperators

GetOperators returns the Operators field value if set, zero value otherwise.

func (*ConfigurationAnyPredicateListTypeOptions) GetOperatorsOk

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

func (*ConfigurationAnyPredicateListTypeOptions) HasOperators

HasOperators returns a boolean if a field has been set.

func (ConfigurationAnyPredicateListTypeOptions) MarshalJSON

func (*ConfigurationAnyPredicateListTypeOptions) SetOperators

SetOperators gets a reference to the given []ConfigurationSelectOption and assigns it to the Operators field.

func (ConfigurationAnyPredicateListTypeOptions) ToMap

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

type ConfigurationDateTimeTypeOptions

type ConfigurationDateTimeTypeOptions struct {
	Format *string `json:"format,omitempty"`
}

ConfigurationDateTimeTypeOptions struct for ConfigurationDateTimeTypeOptions

func NewConfigurationDateTimeTypeOptions

func NewConfigurationDateTimeTypeOptions() *ConfigurationDateTimeTypeOptions

NewConfigurationDateTimeTypeOptions instantiates a new ConfigurationDateTimeTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationDateTimeTypeOptionsWithDefaults

func NewConfigurationDateTimeTypeOptionsWithDefaults() *ConfigurationDateTimeTypeOptions

NewConfigurationDateTimeTypeOptionsWithDefaults instantiates a new ConfigurationDateTimeTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationDateTimeTypeOptions) GetFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*ConfigurationDateTimeTypeOptions) GetFormatOk

func (o *ConfigurationDateTimeTypeOptions) GetFormatOk() (*string, bool)

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

func (*ConfigurationDateTimeTypeOptions) HasFormat

func (o *ConfigurationDateTimeTypeOptions) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (ConfigurationDateTimeTypeOptions) MarshalJSON

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

func (*ConfigurationDateTimeTypeOptions) SetFormat

func (o *ConfigurationDateTimeTypeOptions) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (ConfigurationDateTimeTypeOptions) ToMap

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

type ConfigurationDateTypeOptions

type ConfigurationDateTypeOptions struct {
	Format *string `json:"format,omitempty"`
}

ConfigurationDateTypeOptions struct for ConfigurationDateTypeOptions

func NewConfigurationDateTypeOptions

func NewConfigurationDateTypeOptions() *ConfigurationDateTypeOptions

NewConfigurationDateTypeOptions instantiates a new ConfigurationDateTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationDateTypeOptionsWithDefaults

func NewConfigurationDateTypeOptionsWithDefaults() *ConfigurationDateTypeOptions

NewConfigurationDateTypeOptionsWithDefaults instantiates a new ConfigurationDateTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationDateTypeOptions) GetFormat

func (o *ConfigurationDateTypeOptions) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*ConfigurationDateTypeOptions) GetFormatOk

func (o *ConfigurationDateTypeOptions) GetFormatOk() (*string, bool)

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

func (*ConfigurationDateTypeOptions) HasFormat

func (o *ConfigurationDateTypeOptions) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (ConfigurationDateTypeOptions) MarshalJSON

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

func (*ConfigurationDateTypeOptions) SetFormat

func (o *ConfigurationDateTypeOptions) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (ConfigurationDateTypeOptions) ToMap

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

type ConfigurationExpressionTypeOptions added in v0.0.43

type ConfigurationExpressionTypeOptions struct {
	MinLength *int32 `json:"minLength,omitempty"`
	MaxLength *int32 `json:"maxLength,omitempty"`
}

ConfigurationExpressionTypeOptions struct for ConfigurationExpressionTypeOptions

func NewConfigurationExpressionTypeOptions added in v0.0.43

func NewConfigurationExpressionTypeOptions() *ConfigurationExpressionTypeOptions

NewConfigurationExpressionTypeOptions instantiates a new ConfigurationExpressionTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationExpressionTypeOptionsWithDefaults added in v0.0.43

func NewConfigurationExpressionTypeOptionsWithDefaults() *ConfigurationExpressionTypeOptions

NewConfigurationExpressionTypeOptionsWithDefaults instantiates a new ConfigurationExpressionTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationExpressionTypeOptions) GetMaxLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) GetMaxLength() int32

GetMaxLength returns the MaxLength field value if set, zero value otherwise.

func (*ConfigurationExpressionTypeOptions) GetMaxLengthOk added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) GetMaxLengthOk() (*int32, bool)

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

func (*ConfigurationExpressionTypeOptions) GetMinLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) GetMinLength() int32

GetMinLength returns the MinLength field value if set, zero value otherwise.

func (*ConfigurationExpressionTypeOptions) GetMinLengthOk added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) GetMinLengthOk() (*int32, bool)

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

func (*ConfigurationExpressionTypeOptions) HasMaxLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) HasMaxLength() bool

HasMaxLength returns a boolean if a field has been set.

func (*ConfigurationExpressionTypeOptions) HasMinLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) HasMinLength() bool

HasMinLength returns a boolean if a field has been set.

func (ConfigurationExpressionTypeOptions) MarshalJSON added in v0.0.43

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

func (*ConfigurationExpressionTypeOptions) SetMaxLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) SetMaxLength(v int32)

SetMaxLength gets a reference to the given int32 and assigns it to the MaxLength field.

func (*ConfigurationExpressionTypeOptions) SetMinLength added in v0.0.43

func (o *ConfigurationExpressionTypeOptions) SetMinLength(v int32)

SetMinLength gets a reference to the given int32 and assigns it to the MinLength field.

func (ConfigurationExpressionTypeOptions) ToMap added in v0.0.43

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

type ConfigurationField

type ConfigurationField struct {
	Name                 *string                            `json:"name,omitempty"`
	Type                 *string                            `json:"type,omitempty"`
	Description          *string                            `json:"description,omitempty"`
	Required             *bool                              `json:"required,omitempty"`
	DefaultValue         *string                            `json:"defaultValue,omitempty"`
	Label                *string                            `json:"label,omitempty"`
	VisibilityConditions []ConfigurationVisibilityCondition `json:"visibilityConditions,omitempty"`
	TypeOptions          *ConfigurationTypeOptions          `json:"typeOptions,omitempty"`
	RequiredConditions   []ConfigurationRequiredCondition   `json:"requiredConditions,omitempty"`
	ValidationRules      []ConfigurationValidationRule      `json:"validationRules,omitempty"`
	Placeholder          *string                            `json:"placeholder,omitempty"`
	Sensitive            *bool                              `json:"sensitive,omitempty"`
	Togglable            *bool                              `json:"togglable,omitempty"`
	DisallowExpression   *bool                              `json:"disallowExpression,omitempty"`
}

ConfigurationField struct for ConfigurationField

func NewConfigurationField

func NewConfigurationField() *ConfigurationField

NewConfigurationField instantiates a new ConfigurationField object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationFieldWithDefaults

func NewConfigurationFieldWithDefaults() *ConfigurationField

NewConfigurationFieldWithDefaults instantiates a new ConfigurationField object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationField) GetDefaultValue

func (o *ConfigurationField) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ConfigurationField) GetDefaultValueOk

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

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

func (*ConfigurationField) GetDescription

func (o *ConfigurationField) GetDescription() string

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

func (*ConfigurationField) GetDescriptionOk

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

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

func (*ConfigurationField) GetDisallowExpression added in v0.0.45

func (o *ConfigurationField) GetDisallowExpression() bool

GetDisallowExpression returns the DisallowExpression field value if set, zero value otherwise.

func (*ConfigurationField) GetDisallowExpressionOk added in v0.0.45

func (o *ConfigurationField) GetDisallowExpressionOk() (*bool, bool)

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

func (*ConfigurationField) GetLabel

func (o *ConfigurationField) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*ConfigurationField) GetLabelOk

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

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

func (*ConfigurationField) GetName

func (o *ConfigurationField) GetName() string

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

func (*ConfigurationField) GetNameOk

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

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

func (*ConfigurationField) GetPlaceholder

func (o *ConfigurationField) GetPlaceholder() string

GetPlaceholder returns the Placeholder field value if set, zero value otherwise.

func (*ConfigurationField) GetPlaceholderOk

func (o *ConfigurationField) GetPlaceholderOk() (*string, bool)

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

func (*ConfigurationField) GetRequired

func (o *ConfigurationField) GetRequired() bool

GetRequired returns the Required field value if set, zero value otherwise.

func (*ConfigurationField) GetRequiredConditions

func (o *ConfigurationField) GetRequiredConditions() []ConfigurationRequiredCondition

GetRequiredConditions returns the RequiredConditions field value if set, zero value otherwise.

func (*ConfigurationField) GetRequiredConditionsOk

func (o *ConfigurationField) GetRequiredConditionsOk() ([]ConfigurationRequiredCondition, bool)

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

func (*ConfigurationField) GetRequiredOk

func (o *ConfigurationField) GetRequiredOk() (*bool, bool)

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

func (*ConfigurationField) GetSensitive

func (o *ConfigurationField) GetSensitive() bool

GetSensitive returns the Sensitive field value if set, zero value otherwise.

func (*ConfigurationField) GetSensitiveOk

func (o *ConfigurationField) GetSensitiveOk() (*bool, bool)

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

func (*ConfigurationField) GetTogglable added in v0.0.18

func (o *ConfigurationField) GetTogglable() bool

GetTogglable returns the Togglable field value if set, zero value otherwise.

func (*ConfigurationField) GetTogglableOk added in v0.0.18

func (o *ConfigurationField) GetTogglableOk() (*bool, bool)

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

func (*ConfigurationField) GetType

func (o *ConfigurationField) GetType() string

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

func (*ConfigurationField) GetTypeOk

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

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

func (*ConfigurationField) GetTypeOptions

func (o *ConfigurationField) GetTypeOptions() ConfigurationTypeOptions

GetTypeOptions returns the TypeOptions field value if set, zero value otherwise.

func (*ConfigurationField) GetTypeOptionsOk

func (o *ConfigurationField) GetTypeOptionsOk() (*ConfigurationTypeOptions, bool)

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

func (*ConfigurationField) GetValidationRules

func (o *ConfigurationField) GetValidationRules() []ConfigurationValidationRule

GetValidationRules returns the ValidationRules field value if set, zero value otherwise.

func (*ConfigurationField) GetValidationRulesOk

func (o *ConfigurationField) GetValidationRulesOk() ([]ConfigurationValidationRule, bool)

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

func (*ConfigurationField) GetVisibilityConditions

func (o *ConfigurationField) GetVisibilityConditions() []ConfigurationVisibilityCondition

GetVisibilityConditions returns the VisibilityConditions field value if set, zero value otherwise.

func (*ConfigurationField) GetVisibilityConditionsOk

func (o *ConfigurationField) GetVisibilityConditionsOk() ([]ConfigurationVisibilityCondition, bool)

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

func (*ConfigurationField) HasDefaultValue

func (o *ConfigurationField) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*ConfigurationField) HasDescription

func (o *ConfigurationField) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ConfigurationField) HasDisallowExpression added in v0.0.45

func (o *ConfigurationField) HasDisallowExpression() bool

HasDisallowExpression returns a boolean if a field has been set.

func (*ConfigurationField) HasLabel

func (o *ConfigurationField) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ConfigurationField) HasName

func (o *ConfigurationField) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConfigurationField) HasPlaceholder

func (o *ConfigurationField) HasPlaceholder() bool

HasPlaceholder returns a boolean if a field has been set.

func (*ConfigurationField) HasRequired

func (o *ConfigurationField) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (*ConfigurationField) HasRequiredConditions

func (o *ConfigurationField) HasRequiredConditions() bool

HasRequiredConditions returns a boolean if a field has been set.

func (*ConfigurationField) HasSensitive

func (o *ConfigurationField) HasSensitive() bool

HasSensitive returns a boolean if a field has been set.

func (*ConfigurationField) HasTogglable added in v0.0.18

func (o *ConfigurationField) HasTogglable() bool

HasTogglable returns a boolean if a field has been set.

func (*ConfigurationField) HasType

func (o *ConfigurationField) HasType() bool

HasType returns a boolean if a field has been set.

func (*ConfigurationField) HasTypeOptions

func (o *ConfigurationField) HasTypeOptions() bool

HasTypeOptions returns a boolean if a field has been set.

func (*ConfigurationField) HasValidationRules

func (o *ConfigurationField) HasValidationRules() bool

HasValidationRules returns a boolean if a field has been set.

func (*ConfigurationField) HasVisibilityConditions

func (o *ConfigurationField) HasVisibilityConditions() bool

HasVisibilityConditions returns a boolean if a field has been set.

func (ConfigurationField) MarshalJSON

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

func (*ConfigurationField) SetDefaultValue

func (o *ConfigurationField) SetDefaultValue(v string)

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

func (*ConfigurationField) SetDescription

func (o *ConfigurationField) SetDescription(v string)

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

func (*ConfigurationField) SetDisallowExpression added in v0.0.45

func (o *ConfigurationField) SetDisallowExpression(v bool)

SetDisallowExpression gets a reference to the given bool and assigns it to the DisallowExpression field.

func (*ConfigurationField) SetLabel

func (o *ConfigurationField) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*ConfigurationField) SetName

func (o *ConfigurationField) SetName(v string)

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

func (*ConfigurationField) SetPlaceholder

func (o *ConfigurationField) SetPlaceholder(v string)

SetPlaceholder gets a reference to the given string and assigns it to the Placeholder field.

func (*ConfigurationField) SetRequired

func (o *ConfigurationField) SetRequired(v bool)

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (*ConfigurationField) SetRequiredConditions

func (o *ConfigurationField) SetRequiredConditions(v []ConfigurationRequiredCondition)

SetRequiredConditions gets a reference to the given []ConfigurationRequiredCondition and assigns it to the RequiredConditions field.

func (*ConfigurationField) SetSensitive

func (o *ConfigurationField) SetSensitive(v bool)

SetSensitive gets a reference to the given bool and assigns it to the Sensitive field.

func (*ConfigurationField) SetTogglable added in v0.0.18

func (o *ConfigurationField) SetTogglable(v bool)

SetTogglable gets a reference to the given bool and assigns it to the Togglable field.

func (*ConfigurationField) SetType

func (o *ConfigurationField) SetType(v string)

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

func (*ConfigurationField) SetTypeOptions

func (o *ConfigurationField) SetTypeOptions(v ConfigurationTypeOptions)

SetTypeOptions gets a reference to the given ConfigurationTypeOptions and assigns it to the TypeOptions field.

func (*ConfigurationField) SetValidationRules

func (o *ConfigurationField) SetValidationRules(v []ConfigurationValidationRule)

SetValidationRules gets a reference to the given []ConfigurationValidationRule and assigns it to the ValidationRules field.

func (*ConfigurationField) SetVisibilityConditions

func (o *ConfigurationField) SetVisibilityConditions(v []ConfigurationVisibilityCondition)

SetVisibilityConditions gets a reference to the given []ConfigurationVisibilityCondition and assigns it to the VisibilityConditions field.

func (ConfigurationField) ToMap

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

type ConfigurationListItemDefinition

type ConfigurationListItemDefinition struct {
	Type   *string              `json:"type,omitempty"`
	Schema []ConfigurationField `json:"schema,omitempty"`
}

ConfigurationListItemDefinition struct for ConfigurationListItemDefinition

func NewConfigurationListItemDefinition

func NewConfigurationListItemDefinition() *ConfigurationListItemDefinition

NewConfigurationListItemDefinition instantiates a new ConfigurationListItemDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationListItemDefinitionWithDefaults

func NewConfigurationListItemDefinitionWithDefaults() *ConfigurationListItemDefinition

NewConfigurationListItemDefinitionWithDefaults instantiates a new ConfigurationListItemDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationListItemDefinition) GetSchema

GetSchema returns the Schema field value if set, zero value otherwise.

func (*ConfigurationListItemDefinition) GetSchemaOk

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

func (*ConfigurationListItemDefinition) GetType

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

func (*ConfigurationListItemDefinition) GetTypeOk

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

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

func (*ConfigurationListItemDefinition) HasSchema

func (o *ConfigurationListItemDefinition) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*ConfigurationListItemDefinition) HasType

HasType returns a boolean if a field has been set.

func (ConfigurationListItemDefinition) MarshalJSON

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

func (*ConfigurationListItemDefinition) SetSchema

SetSchema gets a reference to the given []ConfigurationField and assigns it to the Schema field.

func (*ConfigurationListItemDefinition) SetType

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

func (ConfigurationListItemDefinition) ToMap

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

type ConfigurationListTypeOptions

type ConfigurationListTypeOptions struct {
	ItemDefinition *ConfigurationListItemDefinition `json:"itemDefinition,omitempty"`
	ItemLabel      *string                          `json:"itemLabel,omitempty"`
}

ConfigurationListTypeOptions struct for ConfigurationListTypeOptions

func NewConfigurationListTypeOptions

func NewConfigurationListTypeOptions() *ConfigurationListTypeOptions

NewConfigurationListTypeOptions instantiates a new ConfigurationListTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationListTypeOptionsWithDefaults

func NewConfigurationListTypeOptionsWithDefaults() *ConfigurationListTypeOptions

NewConfigurationListTypeOptionsWithDefaults instantiates a new ConfigurationListTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationListTypeOptions) GetItemDefinition

GetItemDefinition returns the ItemDefinition field value if set, zero value otherwise.

func (*ConfigurationListTypeOptions) GetItemDefinitionOk

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

func (*ConfigurationListTypeOptions) GetItemLabel

func (o *ConfigurationListTypeOptions) GetItemLabel() string

GetItemLabel returns the ItemLabel field value if set, zero value otherwise.

func (*ConfigurationListTypeOptions) GetItemLabelOk

func (o *ConfigurationListTypeOptions) GetItemLabelOk() (*string, bool)

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

func (*ConfigurationListTypeOptions) HasItemDefinition

func (o *ConfigurationListTypeOptions) HasItemDefinition() bool

HasItemDefinition returns a boolean if a field has been set.

func (*ConfigurationListTypeOptions) HasItemLabel

func (o *ConfigurationListTypeOptions) HasItemLabel() bool

HasItemLabel returns a boolean if a field has been set.

func (ConfigurationListTypeOptions) MarshalJSON

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

func (*ConfigurationListTypeOptions) SetItemDefinition

SetItemDefinition gets a reference to the given ConfigurationListItemDefinition and assigns it to the ItemDefinition field.

func (*ConfigurationListTypeOptions) SetItemLabel

func (o *ConfigurationListTypeOptions) SetItemLabel(v string)

SetItemLabel gets a reference to the given string and assigns it to the ItemLabel field.

func (ConfigurationListTypeOptions) ToMap

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

type ConfigurationMultiSelectTypeOptions

type ConfigurationMultiSelectTypeOptions struct {
	Options []ConfigurationSelectOption `json:"options,omitempty"`
}

ConfigurationMultiSelectTypeOptions struct for ConfigurationMultiSelectTypeOptions

func NewConfigurationMultiSelectTypeOptions

func NewConfigurationMultiSelectTypeOptions() *ConfigurationMultiSelectTypeOptions

NewConfigurationMultiSelectTypeOptions instantiates a new ConfigurationMultiSelectTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationMultiSelectTypeOptionsWithDefaults

func NewConfigurationMultiSelectTypeOptionsWithDefaults() *ConfigurationMultiSelectTypeOptions

NewConfigurationMultiSelectTypeOptionsWithDefaults instantiates a new ConfigurationMultiSelectTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationMultiSelectTypeOptions) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*ConfigurationMultiSelectTypeOptions) GetOptionsOk

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

func (*ConfigurationMultiSelectTypeOptions) HasOptions

func (o *ConfigurationMultiSelectTypeOptions) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (ConfigurationMultiSelectTypeOptions) MarshalJSON

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

func (*ConfigurationMultiSelectTypeOptions) SetOptions

SetOptions gets a reference to the given []ConfigurationSelectOption and assigns it to the Options field.

func (ConfigurationMultiSelectTypeOptions) ToMap

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

type ConfigurationNumberTypeOptions

type ConfigurationNumberTypeOptions struct {
	Min *int32 `json:"min,omitempty"`
	Max *int32 `json:"max,omitempty"`
}

ConfigurationNumberTypeOptions struct for ConfigurationNumberTypeOptions

func NewConfigurationNumberTypeOptions

func NewConfigurationNumberTypeOptions() *ConfigurationNumberTypeOptions

NewConfigurationNumberTypeOptions instantiates a new ConfigurationNumberTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationNumberTypeOptionsWithDefaults

func NewConfigurationNumberTypeOptionsWithDefaults() *ConfigurationNumberTypeOptions

NewConfigurationNumberTypeOptionsWithDefaults instantiates a new ConfigurationNumberTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationNumberTypeOptions) GetMax

GetMax returns the Max field value if set, zero value otherwise.

func (*ConfigurationNumberTypeOptions) GetMaxOk

func (o *ConfigurationNumberTypeOptions) GetMaxOk() (*int32, bool)

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

func (*ConfigurationNumberTypeOptions) GetMin

GetMin returns the Min field value if set, zero value otherwise.

func (*ConfigurationNumberTypeOptions) GetMinOk

func (o *ConfigurationNumberTypeOptions) GetMinOk() (*int32, bool)

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

func (*ConfigurationNumberTypeOptions) HasMax

HasMax returns a boolean if a field has been set.

func (*ConfigurationNumberTypeOptions) HasMin

HasMin returns a boolean if a field has been set.

func (ConfigurationNumberTypeOptions) MarshalJSON

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

func (*ConfigurationNumberTypeOptions) SetMax

SetMax gets a reference to the given int32 and assigns it to the Max field.

func (*ConfigurationNumberTypeOptions) SetMin

SetMin gets a reference to the given int32 and assigns it to the Min field.

func (ConfigurationNumberTypeOptions) ToMap

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

type ConfigurationObjectTypeOptions

type ConfigurationObjectTypeOptions struct {
	Schema []ConfigurationField `json:"schema,omitempty"`
}

ConfigurationObjectTypeOptions struct for ConfigurationObjectTypeOptions

func NewConfigurationObjectTypeOptions

func NewConfigurationObjectTypeOptions() *ConfigurationObjectTypeOptions

NewConfigurationObjectTypeOptions instantiates a new ConfigurationObjectTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationObjectTypeOptionsWithDefaults

func NewConfigurationObjectTypeOptionsWithDefaults() *ConfigurationObjectTypeOptions

NewConfigurationObjectTypeOptionsWithDefaults instantiates a new ConfigurationObjectTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationObjectTypeOptions) GetSchema

GetSchema returns the Schema field value if set, zero value otherwise.

func (*ConfigurationObjectTypeOptions) GetSchemaOk

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

func (*ConfigurationObjectTypeOptions) HasSchema

func (o *ConfigurationObjectTypeOptions) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (ConfigurationObjectTypeOptions) MarshalJSON

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

func (*ConfigurationObjectTypeOptions) SetSchema

SetSchema gets a reference to the given []ConfigurationField and assigns it to the Schema field.

func (ConfigurationObjectTypeOptions) ToMap

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

type ConfigurationRequiredCondition

type ConfigurationRequiredCondition struct {
	Field  *string  `json:"field,omitempty"`
	Values []string `json:"values,omitempty"`
}

ConfigurationRequiredCondition struct for ConfigurationRequiredCondition

func NewConfigurationRequiredCondition

func NewConfigurationRequiredCondition() *ConfigurationRequiredCondition

NewConfigurationRequiredCondition instantiates a new ConfigurationRequiredCondition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationRequiredConditionWithDefaults

func NewConfigurationRequiredConditionWithDefaults() *ConfigurationRequiredCondition

NewConfigurationRequiredConditionWithDefaults instantiates a new ConfigurationRequiredCondition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationRequiredCondition) GetField

func (o *ConfigurationRequiredCondition) GetField() string

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

func (*ConfigurationRequiredCondition) GetFieldOk

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

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

func (*ConfigurationRequiredCondition) GetValues

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

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

func (*ConfigurationRequiredCondition) GetValuesOk

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

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

func (*ConfigurationRequiredCondition) HasField

func (o *ConfigurationRequiredCondition) HasField() bool

HasField returns a boolean if a field has been set.

func (*ConfigurationRequiredCondition) HasValues

func (o *ConfigurationRequiredCondition) HasValues() bool

HasValues returns a boolean if a field has been set.

func (ConfigurationRequiredCondition) MarshalJSON

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

func (*ConfigurationRequiredCondition) SetField

func (o *ConfigurationRequiredCondition) SetField(v string)

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

func (*ConfigurationRequiredCondition) SetValues

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

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

func (ConfigurationRequiredCondition) ToMap

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

type ConfigurationResourceTypeOptions

type ConfigurationResourceTypeOptions struct {
	Type           *string `json:"type,omitempty"`
	UseNameAsValue *bool   `json:"useNameAsValue,omitempty"`
	Multi          *bool   `json:"multi,omitempty"`
}

ConfigurationResourceTypeOptions struct for ConfigurationResourceTypeOptions

func NewConfigurationResourceTypeOptions

func NewConfigurationResourceTypeOptions() *ConfigurationResourceTypeOptions

NewConfigurationResourceTypeOptions instantiates a new ConfigurationResourceTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationResourceTypeOptionsWithDefaults

func NewConfigurationResourceTypeOptionsWithDefaults() *ConfigurationResourceTypeOptions

NewConfigurationResourceTypeOptionsWithDefaults instantiates a new ConfigurationResourceTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationResourceTypeOptions) GetMulti added in v0.0.45

func (o *ConfigurationResourceTypeOptions) GetMulti() bool

GetMulti returns the Multi field value if set, zero value otherwise.

func (*ConfigurationResourceTypeOptions) GetMultiOk added in v0.0.45

func (o *ConfigurationResourceTypeOptions) GetMultiOk() (*bool, bool)

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

func (*ConfigurationResourceTypeOptions) GetType

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

func (*ConfigurationResourceTypeOptions) GetTypeOk

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

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

func (*ConfigurationResourceTypeOptions) GetUseNameAsValue added in v0.0.43

func (o *ConfigurationResourceTypeOptions) GetUseNameAsValue() bool

GetUseNameAsValue returns the UseNameAsValue field value if set, zero value otherwise.

func (*ConfigurationResourceTypeOptions) GetUseNameAsValueOk added in v0.0.43

func (o *ConfigurationResourceTypeOptions) GetUseNameAsValueOk() (*bool, bool)

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

func (*ConfigurationResourceTypeOptions) HasMulti added in v0.0.45

func (o *ConfigurationResourceTypeOptions) HasMulti() bool

HasMulti returns a boolean if a field has been set.

func (*ConfigurationResourceTypeOptions) HasType

HasType returns a boolean if a field has been set.

func (*ConfigurationResourceTypeOptions) HasUseNameAsValue added in v0.0.43

func (o *ConfigurationResourceTypeOptions) HasUseNameAsValue() bool

HasUseNameAsValue returns a boolean if a field has been set.

func (ConfigurationResourceTypeOptions) MarshalJSON

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

func (*ConfigurationResourceTypeOptions) SetMulti added in v0.0.45

func (o *ConfigurationResourceTypeOptions) SetMulti(v bool)

SetMulti gets a reference to the given bool and assigns it to the Multi field.

func (*ConfigurationResourceTypeOptions) SetType

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

func (*ConfigurationResourceTypeOptions) SetUseNameAsValue added in v0.0.43

func (o *ConfigurationResourceTypeOptions) SetUseNameAsValue(v bool)

SetUseNameAsValue gets a reference to the given bool and assigns it to the UseNameAsValue field.

func (ConfigurationResourceTypeOptions) ToMap

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

type ConfigurationSelectOption

type ConfigurationSelectOption struct {
	Label *string `json:"label,omitempty"`
	Value *string `json:"value,omitempty"`
}

ConfigurationSelectOption struct for ConfigurationSelectOption

func NewConfigurationSelectOption

func NewConfigurationSelectOption() *ConfigurationSelectOption

NewConfigurationSelectOption instantiates a new ConfigurationSelectOption object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationSelectOptionWithDefaults

func NewConfigurationSelectOptionWithDefaults() *ConfigurationSelectOption

NewConfigurationSelectOptionWithDefaults instantiates a new ConfigurationSelectOption object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationSelectOption) GetLabel

func (o *ConfigurationSelectOption) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*ConfigurationSelectOption) GetLabelOk

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

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

func (*ConfigurationSelectOption) GetValue

func (o *ConfigurationSelectOption) GetValue() string

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

func (*ConfigurationSelectOption) GetValueOk

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

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

func (*ConfigurationSelectOption) HasLabel

func (o *ConfigurationSelectOption) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ConfigurationSelectOption) HasValue

func (o *ConfigurationSelectOption) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ConfigurationSelectOption) MarshalJSON

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

func (*ConfigurationSelectOption) SetLabel

func (o *ConfigurationSelectOption) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*ConfigurationSelectOption) SetValue

func (o *ConfigurationSelectOption) SetValue(v string)

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

func (ConfigurationSelectOption) ToMap

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

type ConfigurationSelectTypeOptions

type ConfigurationSelectTypeOptions struct {
	Options []ConfigurationSelectOption `json:"options,omitempty"`
}

ConfigurationSelectTypeOptions struct for ConfigurationSelectTypeOptions

func NewConfigurationSelectTypeOptions

func NewConfigurationSelectTypeOptions() *ConfigurationSelectTypeOptions

NewConfigurationSelectTypeOptions instantiates a new ConfigurationSelectTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationSelectTypeOptionsWithDefaults

func NewConfigurationSelectTypeOptionsWithDefaults() *ConfigurationSelectTypeOptions

NewConfigurationSelectTypeOptionsWithDefaults instantiates a new ConfigurationSelectTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationSelectTypeOptions) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*ConfigurationSelectTypeOptions) GetOptionsOk

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

func (*ConfigurationSelectTypeOptions) HasOptions

func (o *ConfigurationSelectTypeOptions) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (ConfigurationSelectTypeOptions) MarshalJSON

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

func (*ConfigurationSelectTypeOptions) SetOptions

SetOptions gets a reference to the given []ConfigurationSelectOption and assigns it to the Options field.

func (ConfigurationSelectTypeOptions) ToMap

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

type ConfigurationStringTypeOptions added in v0.0.18

type ConfigurationStringTypeOptions struct {
	MinLength *int32 `json:"minLength,omitempty"`
	MaxLength *int32 `json:"maxLength,omitempty"`
}

ConfigurationStringTypeOptions struct for ConfigurationStringTypeOptions

func NewConfigurationStringTypeOptions added in v0.0.18

func NewConfigurationStringTypeOptions() *ConfigurationStringTypeOptions

NewConfigurationStringTypeOptions instantiates a new ConfigurationStringTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationStringTypeOptionsWithDefaults added in v0.0.18

func NewConfigurationStringTypeOptionsWithDefaults() *ConfigurationStringTypeOptions

NewConfigurationStringTypeOptionsWithDefaults instantiates a new ConfigurationStringTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationStringTypeOptions) GetMaxLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) GetMaxLength() int32

GetMaxLength returns the MaxLength field value if set, zero value otherwise.

func (*ConfigurationStringTypeOptions) GetMaxLengthOk added in v0.0.18

func (o *ConfigurationStringTypeOptions) GetMaxLengthOk() (*int32, bool)

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

func (*ConfigurationStringTypeOptions) GetMinLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) GetMinLength() int32

GetMinLength returns the MinLength field value if set, zero value otherwise.

func (*ConfigurationStringTypeOptions) GetMinLengthOk added in v0.0.18

func (o *ConfigurationStringTypeOptions) GetMinLengthOk() (*int32, bool)

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

func (*ConfigurationStringTypeOptions) HasMaxLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) HasMaxLength() bool

HasMaxLength returns a boolean if a field has been set.

func (*ConfigurationStringTypeOptions) HasMinLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) HasMinLength() bool

HasMinLength returns a boolean if a field has been set.

func (ConfigurationStringTypeOptions) MarshalJSON added in v0.0.18

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

func (*ConfigurationStringTypeOptions) SetMaxLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) SetMaxLength(v int32)

SetMaxLength gets a reference to the given int32 and assigns it to the MaxLength field.

func (*ConfigurationStringTypeOptions) SetMinLength added in v0.0.18

func (o *ConfigurationStringTypeOptions) SetMinLength(v int32)

SetMinLength gets a reference to the given int32 and assigns it to the MinLength field.

func (ConfigurationStringTypeOptions) ToMap added in v0.0.18

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

type ConfigurationTextTypeOptions added in v0.0.18

type ConfigurationTextTypeOptions struct {
	MinLength *int32 `json:"minLength,omitempty"`
	MaxLength *int32 `json:"maxLength,omitempty"`
}

ConfigurationTextTypeOptions struct for ConfigurationTextTypeOptions

func NewConfigurationTextTypeOptions added in v0.0.18

func NewConfigurationTextTypeOptions() *ConfigurationTextTypeOptions

NewConfigurationTextTypeOptions instantiates a new ConfigurationTextTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationTextTypeOptionsWithDefaults added in v0.0.18

func NewConfigurationTextTypeOptionsWithDefaults() *ConfigurationTextTypeOptions

NewConfigurationTextTypeOptionsWithDefaults instantiates a new ConfigurationTextTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationTextTypeOptions) GetMaxLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) GetMaxLength() int32

GetMaxLength returns the MaxLength field value if set, zero value otherwise.

func (*ConfigurationTextTypeOptions) GetMaxLengthOk added in v0.0.18

func (o *ConfigurationTextTypeOptions) GetMaxLengthOk() (*int32, bool)

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

func (*ConfigurationTextTypeOptions) GetMinLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) GetMinLength() int32

GetMinLength returns the MinLength field value if set, zero value otherwise.

func (*ConfigurationTextTypeOptions) GetMinLengthOk added in v0.0.18

func (o *ConfigurationTextTypeOptions) GetMinLengthOk() (*int32, bool)

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

func (*ConfigurationTextTypeOptions) HasMaxLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) HasMaxLength() bool

HasMaxLength returns a boolean if a field has been set.

func (*ConfigurationTextTypeOptions) HasMinLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) HasMinLength() bool

HasMinLength returns a boolean if a field has been set.

func (ConfigurationTextTypeOptions) MarshalJSON added in v0.0.18

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

func (*ConfigurationTextTypeOptions) SetMaxLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) SetMaxLength(v int32)

SetMaxLength gets a reference to the given int32 and assigns it to the MaxLength field.

func (*ConfigurationTextTypeOptions) SetMinLength added in v0.0.18

func (o *ConfigurationTextTypeOptions) SetMinLength(v int32)

SetMinLength gets a reference to the given int32 and assigns it to the MinLength field.

func (ConfigurationTextTypeOptions) ToMap added in v0.0.18

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

type ConfigurationTimeTypeOptions

type ConfigurationTimeTypeOptions struct {
	Format *string `json:"format,omitempty"`
}

ConfigurationTimeTypeOptions struct for ConfigurationTimeTypeOptions

func NewConfigurationTimeTypeOptions

func NewConfigurationTimeTypeOptions() *ConfigurationTimeTypeOptions

NewConfigurationTimeTypeOptions instantiates a new ConfigurationTimeTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationTimeTypeOptionsWithDefaults

func NewConfigurationTimeTypeOptionsWithDefaults() *ConfigurationTimeTypeOptions

NewConfigurationTimeTypeOptionsWithDefaults instantiates a new ConfigurationTimeTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationTimeTypeOptions) GetFormat

func (o *ConfigurationTimeTypeOptions) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*ConfigurationTimeTypeOptions) GetFormatOk

func (o *ConfigurationTimeTypeOptions) GetFormatOk() (*string, bool)

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

func (*ConfigurationTimeTypeOptions) HasFormat

func (o *ConfigurationTimeTypeOptions) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (ConfigurationTimeTypeOptions) MarshalJSON

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

func (*ConfigurationTimeTypeOptions) SetFormat

func (o *ConfigurationTimeTypeOptions) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (ConfigurationTimeTypeOptions) ToMap

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

type ConfigurationTypeOptions

type ConfigurationTypeOptions struct {
	Number           *ConfigurationNumberTypeOptions           `json:"number,omitempty"`
	Select           *ConfigurationSelectTypeOptions           `json:"select,omitempty"`
	MultiSelect      *ConfigurationMultiSelectTypeOptions      `json:"multiSelect,omitempty"`
	List             *ConfigurationListTypeOptions             `json:"list,omitempty"`
	Object           *ConfigurationObjectTypeOptions           `json:"object,omitempty"`
	Resource         *ConfigurationResourceTypeOptions         `json:"resource,omitempty"`
	Time             *ConfigurationTimeTypeOptions             `json:"time,omitempty"`
	Date             *ConfigurationDateTypeOptions             `json:"date,omitempty"`
	Datetime         *ConfigurationDateTimeTypeOptions         `json:"datetime,omitempty"`
	AnyPredicateList *ConfigurationAnyPredicateListTypeOptions `json:"anyPredicateList,omitempty"`
	String           *ConfigurationStringTypeOptions           `json:"string,omitempty"`
	Expression       *ConfigurationExpressionTypeOptions       `json:"expression,omitempty"`
	Text             *ConfigurationTextTypeOptions             `json:"text,omitempty"`
}

ConfigurationTypeOptions struct for ConfigurationTypeOptions

func NewConfigurationTypeOptions

func NewConfigurationTypeOptions() *ConfigurationTypeOptions

NewConfigurationTypeOptions instantiates a new ConfigurationTypeOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationTypeOptionsWithDefaults

func NewConfigurationTypeOptionsWithDefaults() *ConfigurationTypeOptions

NewConfigurationTypeOptionsWithDefaults instantiates a new ConfigurationTypeOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationTypeOptions) GetAnyPredicateList

GetAnyPredicateList returns the AnyPredicateList field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetAnyPredicateListOk

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

func (*ConfigurationTypeOptions) GetDate

GetDate returns the Date field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetDateOk

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

func (*ConfigurationTypeOptions) GetDatetime

GetDatetime returns the Datetime field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetDatetimeOk

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

func (*ConfigurationTypeOptions) GetExpression added in v0.0.43

GetExpression returns the Expression field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetExpressionOk added in v0.0.43

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

func (*ConfigurationTypeOptions) GetList

GetList returns the List field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetListOk

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

func (*ConfigurationTypeOptions) GetMultiSelect

GetMultiSelect returns the MultiSelect field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetMultiSelectOk

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

func (*ConfigurationTypeOptions) GetNumber

GetNumber returns the Number field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetNumberOk

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

func (*ConfigurationTypeOptions) GetObject

GetObject returns the Object field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetObjectOk

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

func (*ConfigurationTypeOptions) GetResource

GetResource returns the Resource field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetResourceOk

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

func (*ConfigurationTypeOptions) GetSelect

GetSelect returns the Select field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetSelectOk

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

func (*ConfigurationTypeOptions) GetString added in v0.0.18

GetString returns the String field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetStringOk added in v0.0.18

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

func (*ConfigurationTypeOptions) GetText added in v0.0.18

GetText returns the Text field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetTextOk added in v0.0.18

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

func (*ConfigurationTypeOptions) GetTime

GetTime returns the Time field value if set, zero value otherwise.

func (*ConfigurationTypeOptions) GetTimeOk

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

func (*ConfigurationTypeOptions) HasAnyPredicateList

func (o *ConfigurationTypeOptions) HasAnyPredicateList() bool

HasAnyPredicateList returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasDate

func (o *ConfigurationTypeOptions) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasDatetime

func (o *ConfigurationTypeOptions) HasDatetime() bool

HasDatetime returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasExpression added in v0.0.43

func (o *ConfigurationTypeOptions) HasExpression() bool

HasExpression returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasList

func (o *ConfigurationTypeOptions) HasList() bool

HasList returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasMultiSelect

func (o *ConfigurationTypeOptions) HasMultiSelect() bool

HasMultiSelect returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasNumber

func (o *ConfigurationTypeOptions) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasObject

func (o *ConfigurationTypeOptions) HasObject() bool

HasObject returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasResource

func (o *ConfigurationTypeOptions) HasResource() bool

HasResource returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasSelect

func (o *ConfigurationTypeOptions) HasSelect() bool

HasSelect returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasString added in v0.0.18

func (o *ConfigurationTypeOptions) HasString() bool

HasString returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasText added in v0.0.18

func (o *ConfigurationTypeOptions) HasText() bool

HasText returns a boolean if a field has been set.

func (*ConfigurationTypeOptions) HasTime

func (o *ConfigurationTypeOptions) HasTime() bool

HasTime returns a boolean if a field has been set.

func (ConfigurationTypeOptions) MarshalJSON

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

func (*ConfigurationTypeOptions) SetAnyPredicateList

SetAnyPredicateList gets a reference to the given ConfigurationAnyPredicateListTypeOptions and assigns it to the AnyPredicateList field.

func (*ConfigurationTypeOptions) SetDate

SetDate gets a reference to the given ConfigurationDateTypeOptions and assigns it to the Date field.

func (*ConfigurationTypeOptions) SetDatetime

SetDatetime gets a reference to the given ConfigurationDateTimeTypeOptions and assigns it to the Datetime field.

func (*ConfigurationTypeOptions) SetExpression added in v0.0.43

SetExpression gets a reference to the given ConfigurationExpressionTypeOptions and assigns it to the Expression field.

func (*ConfigurationTypeOptions) SetList

SetList gets a reference to the given ConfigurationListTypeOptions and assigns it to the List field.

func (*ConfigurationTypeOptions) SetMultiSelect

SetMultiSelect gets a reference to the given ConfigurationMultiSelectTypeOptions and assigns it to the MultiSelect field.

func (*ConfigurationTypeOptions) SetNumber

SetNumber gets a reference to the given ConfigurationNumberTypeOptions and assigns it to the Number field.

func (*ConfigurationTypeOptions) SetObject

SetObject gets a reference to the given ConfigurationObjectTypeOptions and assigns it to the Object field.

func (*ConfigurationTypeOptions) SetResource

SetResource gets a reference to the given ConfigurationResourceTypeOptions and assigns it to the Resource field.

func (*ConfigurationTypeOptions) SetSelect

SetSelect gets a reference to the given ConfigurationSelectTypeOptions and assigns it to the Select field.

func (*ConfigurationTypeOptions) SetString added in v0.0.18

SetString gets a reference to the given ConfigurationStringTypeOptions and assigns it to the String field.

func (*ConfigurationTypeOptions) SetText added in v0.0.18

SetText gets a reference to the given ConfigurationTextTypeOptions and assigns it to the Text field.

func (*ConfigurationTypeOptions) SetTime

SetTime gets a reference to the given ConfigurationTimeTypeOptions and assigns it to the Time field.

func (ConfigurationTypeOptions) ToMap

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

type ConfigurationValidationRule

type ConfigurationValidationRule struct {
	Type        *string `json:"type,omitempty"`
	CompareWith *string `json:"compareWith,omitempty"`
	Message     *string `json:"message,omitempty"`
}

ConfigurationValidationRule struct for ConfigurationValidationRule

func NewConfigurationValidationRule

func NewConfigurationValidationRule() *ConfigurationValidationRule

NewConfigurationValidationRule instantiates a new ConfigurationValidationRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationValidationRuleWithDefaults

func NewConfigurationValidationRuleWithDefaults() *ConfigurationValidationRule

NewConfigurationValidationRuleWithDefaults instantiates a new ConfigurationValidationRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationValidationRule) GetCompareWith

func (o *ConfigurationValidationRule) GetCompareWith() string

GetCompareWith returns the CompareWith field value if set, zero value otherwise.

func (*ConfigurationValidationRule) GetCompareWithOk

func (o *ConfigurationValidationRule) GetCompareWithOk() (*string, bool)

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

func (*ConfigurationValidationRule) GetMessage

func (o *ConfigurationValidationRule) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ConfigurationValidationRule) GetMessageOk

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

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

func (*ConfigurationValidationRule) GetType

func (o *ConfigurationValidationRule) GetType() string

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

func (*ConfigurationValidationRule) GetTypeOk

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

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

func (*ConfigurationValidationRule) HasCompareWith

func (o *ConfigurationValidationRule) HasCompareWith() bool

HasCompareWith returns a boolean if a field has been set.

func (*ConfigurationValidationRule) HasMessage

func (o *ConfigurationValidationRule) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ConfigurationValidationRule) HasType

func (o *ConfigurationValidationRule) HasType() bool

HasType returns a boolean if a field has been set.

func (ConfigurationValidationRule) MarshalJSON

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

func (*ConfigurationValidationRule) SetCompareWith

func (o *ConfigurationValidationRule) SetCompareWith(v string)

SetCompareWith gets a reference to the given string and assigns it to the CompareWith field.

func (*ConfigurationValidationRule) SetMessage

func (o *ConfigurationValidationRule) SetMessage(v string)

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

func (*ConfigurationValidationRule) SetType

func (o *ConfigurationValidationRule) SetType(v string)

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

func (ConfigurationValidationRule) ToMap

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

type ConfigurationVisibilityCondition

type ConfigurationVisibilityCondition struct {
	Field  *string  `json:"field,omitempty"`
	Values []string `json:"values,omitempty"`
}

ConfigurationVisibilityCondition struct for ConfigurationVisibilityCondition

func NewConfigurationVisibilityCondition

func NewConfigurationVisibilityCondition() *ConfigurationVisibilityCondition

NewConfigurationVisibilityCondition instantiates a new ConfigurationVisibilityCondition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigurationVisibilityConditionWithDefaults

func NewConfigurationVisibilityConditionWithDefaults() *ConfigurationVisibilityCondition

NewConfigurationVisibilityConditionWithDefaults instantiates a new ConfigurationVisibilityCondition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigurationVisibilityCondition) GetField

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

func (*ConfigurationVisibilityCondition) GetFieldOk

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

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

func (*ConfigurationVisibilityCondition) GetValues

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

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

func (*ConfigurationVisibilityCondition) GetValuesOk

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

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

func (*ConfigurationVisibilityCondition) HasField

func (o *ConfigurationVisibilityCondition) HasField() bool

HasField returns a boolean if a field has been set.

func (*ConfigurationVisibilityCondition) HasValues

func (o *ConfigurationVisibilityCondition) HasValues() bool

HasValues returns a boolean if a field has been set.

func (ConfigurationVisibilityCondition) MarshalJSON

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

func (*ConfigurationVisibilityCondition) SetField

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

func (*ConfigurationVisibilityCondition) SetValues

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

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

func (ConfigurationVisibilityCondition) ToMap

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GooglerpcStatus

type GooglerpcStatus struct {
	Code    *int32        `json:"code,omitempty"`
	Message *string       `json:"message,omitempty"`
	Details []ProtobufAny `json:"details,omitempty"`
}

GooglerpcStatus struct for GooglerpcStatus

func NewGooglerpcStatus

func NewGooglerpcStatus() *GooglerpcStatus

NewGooglerpcStatus instantiates a new GooglerpcStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGooglerpcStatusWithDefaults

func NewGooglerpcStatusWithDefaults() *GooglerpcStatus

NewGooglerpcStatusWithDefaults instantiates a new GooglerpcStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GooglerpcStatus) GetCode

func (o *GooglerpcStatus) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*GooglerpcStatus) GetCodeOk

func (o *GooglerpcStatus) GetCodeOk() (*int32, bool)

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

func (*GooglerpcStatus) GetDetails

func (o *GooglerpcStatus) GetDetails() []ProtobufAny

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

func (*GooglerpcStatus) GetDetailsOk

func (o *GooglerpcStatus) GetDetailsOk() ([]ProtobufAny, bool)

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

func (*GooglerpcStatus) GetMessage

func (o *GooglerpcStatus) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*GooglerpcStatus) GetMessageOk

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

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

func (*GooglerpcStatus) HasCode

func (o *GooglerpcStatus) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*GooglerpcStatus) HasDetails

func (o *GooglerpcStatus) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*GooglerpcStatus) HasMessage

func (o *GooglerpcStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (GooglerpcStatus) MarshalJSON

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

func (*GooglerpcStatus) SetCode

func (o *GooglerpcStatus) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*GooglerpcStatus) SetDetails

func (o *GooglerpcStatus) SetDetails(v []ProtobufAny)

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

func (*GooglerpcStatus) SetMessage

func (o *GooglerpcStatus) SetMessage(v string)

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

func (GooglerpcStatus) ToMap

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

type GroupsAPIService

type GroupsAPIService service

GroupsAPIService GroupsAPI service

func (*GroupsAPIService) GroupsAddUserToGroup

func (a *GroupsAPIService) GroupsAddUserToGroup(ctx context.Context, groupName string) ApiGroupsAddUserToGroupRequest

GroupsAddUserToGroup Add user to group

Adds a user to a group within a domain

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

func (*GroupsAPIService) GroupsAddUserToGroupExecute

func (a *GroupsAPIService) GroupsAddUserToGroupExecute(r ApiGroupsAddUserToGroupRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*GroupsAPIService) GroupsCreateGroup

func (a *GroupsAPIService) GroupsCreateGroup(ctx context.Context) ApiGroupsCreateGroupRequest

GroupsCreateGroup Create group

Creates a new group within a domain with a specific role

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

func (*GroupsAPIService) GroupsCreateGroupExecute

Execute executes the request

@return GroupsCreateGroupResponse

func (*GroupsAPIService) GroupsDeleteGroup

func (a *GroupsAPIService) GroupsDeleteGroup(ctx context.Context, groupName string) ApiGroupsDeleteGroupRequest

GroupsDeleteGroup Delete group

Deletes an existing group within a domain

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

func (*GroupsAPIService) GroupsDeleteGroupExecute

func (a *GroupsAPIService) GroupsDeleteGroupExecute(r ApiGroupsDeleteGroupRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*GroupsAPIService) GroupsDescribeGroup

func (a *GroupsAPIService) GroupsDescribeGroup(ctx context.Context, groupName string) ApiGroupsDescribeGroupRequest

GroupsDescribeGroup Get group

Returns details of a specific group within a domain

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

func (*GroupsAPIService) GroupsDescribeGroupExecute

Execute executes the request

@return GroupsDescribeGroupResponse

func (*GroupsAPIService) GroupsListGroupUsers

func (a *GroupsAPIService) GroupsListGroupUsers(ctx context.Context, groupName string) ApiGroupsListGroupUsersRequest

GroupsListGroupUsers Get group users

Returns users that belong to a specific group within a domain

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

func (*GroupsAPIService) GroupsListGroupUsersExecute

Execute executes the request

@return GroupsListGroupUsersResponse

func (*GroupsAPIService) GroupsListGroups

GroupsListGroups List groups

Returns a list of groups within a domain

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

func (*GroupsAPIService) GroupsListGroupsExecute

Execute executes the request

@return GroupsListGroupsResponse

func (*GroupsAPIService) GroupsRemoveUserFromGroup

func (a *GroupsAPIService) GroupsRemoveUserFromGroup(ctx context.Context, groupName string) ApiGroupsRemoveUserFromGroupRequest

GroupsRemoveUserFromGroup Remove user from group

Removes a user from a group within a domain

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

func (*GroupsAPIService) GroupsRemoveUserFromGroupExecute

func (a *GroupsAPIService) GroupsRemoveUserFromGroupExecute(r ApiGroupsRemoveUserFromGroupRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*GroupsAPIService) GroupsUpdateGroup

func (a *GroupsAPIService) GroupsUpdateGroup(ctx context.Context, groupName string) ApiGroupsUpdateGroupRequest

GroupsUpdateGroup Update group

Updates an existing group within a domain

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

func (*GroupsAPIService) GroupsUpdateGroupExecute

Execute executes the request

@return GroupsUpdateGroupResponse

type GroupsAddUserToGroupBody

type GroupsAddUserToGroupBody struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	UserId     *string                  `json:"userId,omitempty"`
	UserEmail  *string                  `json:"userEmail,omitempty"`
}

GroupsAddUserToGroupBody struct for GroupsAddUserToGroupBody

func NewGroupsAddUserToGroupBody

func NewGroupsAddUserToGroupBody() *GroupsAddUserToGroupBody

NewGroupsAddUserToGroupBody instantiates a new GroupsAddUserToGroupBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsAddUserToGroupBodyWithDefaults

func NewGroupsAddUserToGroupBodyWithDefaults() *GroupsAddUserToGroupBody

NewGroupsAddUserToGroupBodyWithDefaults instantiates a new GroupsAddUserToGroupBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsAddUserToGroupBody) GetDomainId

func (o *GroupsAddUserToGroupBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*GroupsAddUserToGroupBody) GetDomainIdOk

func (o *GroupsAddUserToGroupBody) GetDomainIdOk() (*string, bool)

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

func (*GroupsAddUserToGroupBody) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*GroupsAddUserToGroupBody) GetDomainTypeOk

func (o *GroupsAddUserToGroupBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*GroupsAddUserToGroupBody) GetUserEmail

func (o *GroupsAddUserToGroupBody) GetUserEmail() string

GetUserEmail returns the UserEmail field value if set, zero value otherwise.

func (*GroupsAddUserToGroupBody) GetUserEmailOk

func (o *GroupsAddUserToGroupBody) GetUserEmailOk() (*string, bool)

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

func (*GroupsAddUserToGroupBody) GetUserId

func (o *GroupsAddUserToGroupBody) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*GroupsAddUserToGroupBody) GetUserIdOk

func (o *GroupsAddUserToGroupBody) GetUserIdOk() (*string, bool)

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

func (*GroupsAddUserToGroupBody) HasDomainId

func (o *GroupsAddUserToGroupBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*GroupsAddUserToGroupBody) HasDomainType

func (o *GroupsAddUserToGroupBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*GroupsAddUserToGroupBody) HasUserEmail

func (o *GroupsAddUserToGroupBody) HasUserEmail() bool

HasUserEmail returns a boolean if a field has been set.

func (*GroupsAddUserToGroupBody) HasUserId

func (o *GroupsAddUserToGroupBody) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (GroupsAddUserToGroupBody) MarshalJSON

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

func (*GroupsAddUserToGroupBody) SetDomainId

func (o *GroupsAddUserToGroupBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*GroupsAddUserToGroupBody) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*GroupsAddUserToGroupBody) SetUserEmail

func (o *GroupsAddUserToGroupBody) SetUserEmail(v string)

SetUserEmail gets a reference to the given string and assigns it to the UserEmail field.

func (*GroupsAddUserToGroupBody) SetUserId

func (o *GroupsAddUserToGroupBody) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (GroupsAddUserToGroupBody) ToMap

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

type GroupsCreateGroupRequest

type GroupsCreateGroupRequest struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	Group      *GroupsGroup             `json:"group,omitempty"`
}

GroupsCreateGroupRequest struct for GroupsCreateGroupRequest

func NewGroupsCreateGroupRequest

func NewGroupsCreateGroupRequest() *GroupsCreateGroupRequest

NewGroupsCreateGroupRequest instantiates a new GroupsCreateGroupRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsCreateGroupRequestWithDefaults

func NewGroupsCreateGroupRequestWithDefaults() *GroupsCreateGroupRequest

NewGroupsCreateGroupRequestWithDefaults instantiates a new GroupsCreateGroupRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsCreateGroupRequest) GetDomainId

func (o *GroupsCreateGroupRequest) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*GroupsCreateGroupRequest) GetDomainIdOk

func (o *GroupsCreateGroupRequest) GetDomainIdOk() (*string, bool)

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

func (*GroupsCreateGroupRequest) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*GroupsCreateGroupRequest) GetDomainTypeOk

func (o *GroupsCreateGroupRequest) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*GroupsCreateGroupRequest) GetGroup

func (o *GroupsCreateGroupRequest) GetGroup() GroupsGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsCreateGroupRequest) GetGroupOk

func (o *GroupsCreateGroupRequest) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsCreateGroupRequest) HasDomainId

func (o *GroupsCreateGroupRequest) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*GroupsCreateGroupRequest) HasDomainType

func (o *GroupsCreateGroupRequest) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*GroupsCreateGroupRequest) HasGroup

func (o *GroupsCreateGroupRequest) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupsCreateGroupRequest) MarshalJSON

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

func (*GroupsCreateGroupRequest) SetDomainId

func (o *GroupsCreateGroupRequest) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*GroupsCreateGroupRequest) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*GroupsCreateGroupRequest) SetGroup

func (o *GroupsCreateGroupRequest) SetGroup(v GroupsGroup)

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (GroupsCreateGroupRequest) ToMap

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

type GroupsCreateGroupResponse

type GroupsCreateGroupResponse struct {
	Group *GroupsGroup `json:"group,omitempty"`
}

GroupsCreateGroupResponse struct for GroupsCreateGroupResponse

func NewGroupsCreateGroupResponse

func NewGroupsCreateGroupResponse() *GroupsCreateGroupResponse

NewGroupsCreateGroupResponse instantiates a new GroupsCreateGroupResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsCreateGroupResponseWithDefaults

func NewGroupsCreateGroupResponseWithDefaults() *GroupsCreateGroupResponse

NewGroupsCreateGroupResponseWithDefaults instantiates a new GroupsCreateGroupResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsCreateGroupResponse) GetGroup

func (o *GroupsCreateGroupResponse) GetGroup() GroupsGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsCreateGroupResponse) GetGroupOk

func (o *GroupsCreateGroupResponse) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsCreateGroupResponse) HasGroup

func (o *GroupsCreateGroupResponse) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupsCreateGroupResponse) MarshalJSON

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

func (*GroupsCreateGroupResponse) SetGroup

func (o *GroupsCreateGroupResponse) SetGroup(v GroupsGroup)

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (GroupsCreateGroupResponse) ToMap

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

type GroupsDescribeGroupResponse

type GroupsDescribeGroupResponse struct {
	Group *GroupsGroup `json:"group,omitempty"`
}

GroupsDescribeGroupResponse struct for GroupsDescribeGroupResponse

func NewGroupsDescribeGroupResponse

func NewGroupsDescribeGroupResponse() *GroupsDescribeGroupResponse

NewGroupsDescribeGroupResponse instantiates a new GroupsDescribeGroupResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsDescribeGroupResponseWithDefaults

func NewGroupsDescribeGroupResponseWithDefaults() *GroupsDescribeGroupResponse

NewGroupsDescribeGroupResponseWithDefaults instantiates a new GroupsDescribeGroupResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsDescribeGroupResponse) GetGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsDescribeGroupResponse) GetGroupOk

func (o *GroupsDescribeGroupResponse) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsDescribeGroupResponse) HasGroup

func (o *GroupsDescribeGroupResponse) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupsDescribeGroupResponse) MarshalJSON

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

func (*GroupsDescribeGroupResponse) SetGroup

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (GroupsDescribeGroupResponse) ToMap

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

type GroupsGroup

type GroupsGroup struct {
	Metadata *GroupsGroupMetadata `json:"metadata,omitempty"`
	Spec     *GroupsGroupSpec     `json:"spec,omitempty"`
	Status   *GroupsGroupStatus   `json:"status,omitempty"`
}

GroupsGroup struct for GroupsGroup

func NewGroupsGroup

func NewGroupsGroup() *GroupsGroup

NewGroupsGroup instantiates a new GroupsGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsGroupWithDefaults

func NewGroupsGroupWithDefaults() *GroupsGroup

NewGroupsGroupWithDefaults instantiates a new GroupsGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsGroup) GetMetadata

func (o *GroupsGroup) GetMetadata() GroupsGroupMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*GroupsGroup) GetMetadataOk

func (o *GroupsGroup) GetMetadataOk() (*GroupsGroupMetadata, bool)

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

func (*GroupsGroup) GetSpec

func (o *GroupsGroup) GetSpec() GroupsGroupSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*GroupsGroup) GetSpecOk

func (o *GroupsGroup) GetSpecOk() (*GroupsGroupSpec, bool)

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

func (*GroupsGroup) GetStatus

func (o *GroupsGroup) GetStatus() GroupsGroupStatus

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

func (*GroupsGroup) GetStatusOk

func (o *GroupsGroup) GetStatusOk() (*GroupsGroupStatus, bool)

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

func (*GroupsGroup) HasMetadata

func (o *GroupsGroup) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*GroupsGroup) HasSpec

func (o *GroupsGroup) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*GroupsGroup) HasStatus

func (o *GroupsGroup) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (GroupsGroup) MarshalJSON

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

func (*GroupsGroup) SetMetadata

func (o *GroupsGroup) SetMetadata(v GroupsGroupMetadata)

SetMetadata gets a reference to the given GroupsGroupMetadata and assigns it to the Metadata field.

func (*GroupsGroup) SetSpec

func (o *GroupsGroup) SetSpec(v GroupsGroupSpec)

SetSpec gets a reference to the given GroupsGroupSpec and assigns it to the Spec field.

func (*GroupsGroup) SetStatus

func (o *GroupsGroup) SetStatus(v GroupsGroupStatus)

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

func (GroupsGroup) ToMap

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

type GroupsGroupMetadata

type GroupsGroupMetadata struct {
	Name       *string                  `json:"name,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	CreatedAt  *time.Time               `json:"createdAt,omitempty"`
	UpdatedAt  *time.Time               `json:"updatedAt,omitempty"`
}

GroupsGroupMetadata struct for GroupsGroupMetadata

func NewGroupsGroupMetadata

func NewGroupsGroupMetadata() *GroupsGroupMetadata

NewGroupsGroupMetadata instantiates a new GroupsGroupMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsGroupMetadataWithDefaults

func NewGroupsGroupMetadataWithDefaults() *GroupsGroupMetadata

NewGroupsGroupMetadataWithDefaults instantiates a new GroupsGroupMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsGroupMetadata) GetCreatedAt

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

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

func (*GroupsGroupMetadata) GetCreatedAtOk

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

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

func (*GroupsGroupMetadata) GetDomainId

func (o *GroupsGroupMetadata) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*GroupsGroupMetadata) GetDomainIdOk

func (o *GroupsGroupMetadata) GetDomainIdOk() (*string, bool)

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

func (*GroupsGroupMetadata) GetDomainType

func (o *GroupsGroupMetadata) GetDomainType() AuthorizationDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*GroupsGroupMetadata) GetDomainTypeOk

func (o *GroupsGroupMetadata) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*GroupsGroupMetadata) GetName

func (o *GroupsGroupMetadata) GetName() string

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

func (*GroupsGroupMetadata) GetNameOk

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

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

func (*GroupsGroupMetadata) GetUpdatedAt

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

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

func (*GroupsGroupMetadata) GetUpdatedAtOk

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

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

func (*GroupsGroupMetadata) HasCreatedAt

func (o *GroupsGroupMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*GroupsGroupMetadata) HasDomainId

func (o *GroupsGroupMetadata) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*GroupsGroupMetadata) HasDomainType

func (o *GroupsGroupMetadata) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*GroupsGroupMetadata) HasName

func (o *GroupsGroupMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (*GroupsGroupMetadata) HasUpdatedAt

func (o *GroupsGroupMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (GroupsGroupMetadata) MarshalJSON

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

func (*GroupsGroupMetadata) SetCreatedAt

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

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

func (*GroupsGroupMetadata) SetDomainId

func (o *GroupsGroupMetadata) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*GroupsGroupMetadata) SetDomainType

func (o *GroupsGroupMetadata) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*GroupsGroupMetadata) SetName

func (o *GroupsGroupMetadata) SetName(v string)

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

func (*GroupsGroupMetadata) SetUpdatedAt

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

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

func (GroupsGroupMetadata) ToMap

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

type GroupsGroupSpec

type GroupsGroupSpec struct {
	Role        *string `json:"role,omitempty"`
	DisplayName *string `json:"displayName,omitempty"`
	Description *string `json:"description,omitempty"`
}

GroupsGroupSpec struct for GroupsGroupSpec

func NewGroupsGroupSpec

func NewGroupsGroupSpec() *GroupsGroupSpec

NewGroupsGroupSpec instantiates a new GroupsGroupSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsGroupSpecWithDefaults

func NewGroupsGroupSpecWithDefaults() *GroupsGroupSpec

NewGroupsGroupSpecWithDefaults instantiates a new GroupsGroupSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsGroupSpec) GetDescription

func (o *GroupsGroupSpec) GetDescription() string

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

func (*GroupsGroupSpec) GetDescriptionOk

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

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

func (*GroupsGroupSpec) GetDisplayName

func (o *GroupsGroupSpec) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*GroupsGroupSpec) GetDisplayNameOk

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

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

func (*GroupsGroupSpec) GetRole

func (o *GroupsGroupSpec) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*GroupsGroupSpec) GetRoleOk

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

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

func (*GroupsGroupSpec) HasDescription

func (o *GroupsGroupSpec) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GroupsGroupSpec) HasDisplayName

func (o *GroupsGroupSpec) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*GroupsGroupSpec) HasRole

func (o *GroupsGroupSpec) HasRole() bool

HasRole returns a boolean if a field has been set.

func (GroupsGroupSpec) MarshalJSON

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

func (*GroupsGroupSpec) SetDescription

func (o *GroupsGroupSpec) SetDescription(v string)

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

func (*GroupsGroupSpec) SetDisplayName

func (o *GroupsGroupSpec) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*GroupsGroupSpec) SetRole

func (o *GroupsGroupSpec) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (GroupsGroupSpec) ToMap

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

type GroupsGroupStatus

type GroupsGroupStatus struct {
	MembersCount *int32 `json:"membersCount,omitempty"`
}

GroupsGroupStatus struct for GroupsGroupStatus

func NewGroupsGroupStatus

func NewGroupsGroupStatus() *GroupsGroupStatus

NewGroupsGroupStatus instantiates a new GroupsGroupStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsGroupStatusWithDefaults

func NewGroupsGroupStatusWithDefaults() *GroupsGroupStatus

NewGroupsGroupStatusWithDefaults instantiates a new GroupsGroupStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsGroupStatus) GetMembersCount

func (o *GroupsGroupStatus) GetMembersCount() int32

GetMembersCount returns the MembersCount field value if set, zero value otherwise.

func (*GroupsGroupStatus) GetMembersCountOk

func (o *GroupsGroupStatus) GetMembersCountOk() (*int32, bool)

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

func (*GroupsGroupStatus) HasMembersCount

func (o *GroupsGroupStatus) HasMembersCount() bool

HasMembersCount returns a boolean if a field has been set.

func (GroupsGroupStatus) MarshalJSON

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

func (*GroupsGroupStatus) SetMembersCount

func (o *GroupsGroupStatus) SetMembersCount(v int32)

SetMembersCount gets a reference to the given int32 and assigns it to the MembersCount field.

func (GroupsGroupStatus) ToMap

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

type GroupsListGroupUsersResponse

type GroupsListGroupUsersResponse struct {
	Users []SuperplaneUsersUser `json:"users,omitempty"`
	Group *GroupsGroup          `json:"group,omitempty"`
}

GroupsListGroupUsersResponse struct for GroupsListGroupUsersResponse

func NewGroupsListGroupUsersResponse

func NewGroupsListGroupUsersResponse() *GroupsListGroupUsersResponse

NewGroupsListGroupUsersResponse instantiates a new GroupsListGroupUsersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsListGroupUsersResponseWithDefaults

func NewGroupsListGroupUsersResponseWithDefaults() *GroupsListGroupUsersResponse

NewGroupsListGroupUsersResponseWithDefaults instantiates a new GroupsListGroupUsersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsListGroupUsersResponse) GetGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsListGroupUsersResponse) GetGroupOk

func (o *GroupsListGroupUsersResponse) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsListGroupUsersResponse) GetUsers

GetUsers returns the Users field value if set, zero value otherwise.

func (*GroupsListGroupUsersResponse) GetUsersOk

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

func (*GroupsListGroupUsersResponse) HasGroup

func (o *GroupsListGroupUsersResponse) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*GroupsListGroupUsersResponse) HasUsers

func (o *GroupsListGroupUsersResponse) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (GroupsListGroupUsersResponse) MarshalJSON

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

func (*GroupsListGroupUsersResponse) SetGroup

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (*GroupsListGroupUsersResponse) SetUsers

SetUsers gets a reference to the given []SuperplaneUsersUser and assigns it to the Users field.

func (GroupsListGroupUsersResponse) ToMap

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

type GroupsListGroupsResponse

type GroupsListGroupsResponse struct {
	Groups []GroupsGroup `json:"groups,omitempty"`
}

GroupsListGroupsResponse struct for GroupsListGroupsResponse

func NewGroupsListGroupsResponse

func NewGroupsListGroupsResponse() *GroupsListGroupsResponse

NewGroupsListGroupsResponse instantiates a new GroupsListGroupsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsListGroupsResponseWithDefaults

func NewGroupsListGroupsResponseWithDefaults() *GroupsListGroupsResponse

NewGroupsListGroupsResponseWithDefaults instantiates a new GroupsListGroupsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsListGroupsResponse) GetGroups

func (o *GroupsListGroupsResponse) GetGroups() []GroupsGroup

GetGroups returns the Groups field value if set, zero value otherwise.

func (*GroupsListGroupsResponse) GetGroupsOk

func (o *GroupsListGroupsResponse) GetGroupsOk() ([]GroupsGroup, bool)

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

func (*GroupsListGroupsResponse) HasGroups

func (o *GroupsListGroupsResponse) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (GroupsListGroupsResponse) MarshalJSON

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

func (*GroupsListGroupsResponse) SetGroups

func (o *GroupsListGroupsResponse) SetGroups(v []GroupsGroup)

SetGroups gets a reference to the given []GroupsGroup and assigns it to the Groups field.

func (GroupsListGroupsResponse) ToMap

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

type GroupsRemoveUserFromGroupBody

type GroupsRemoveUserFromGroupBody struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	UserId     *string                  `json:"userId,omitempty"`
	UserEmail  *string                  `json:"userEmail,omitempty"`
}

GroupsRemoveUserFromGroupBody struct for GroupsRemoveUserFromGroupBody

func NewGroupsRemoveUserFromGroupBody

func NewGroupsRemoveUserFromGroupBody() *GroupsRemoveUserFromGroupBody

NewGroupsRemoveUserFromGroupBody instantiates a new GroupsRemoveUserFromGroupBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsRemoveUserFromGroupBodyWithDefaults

func NewGroupsRemoveUserFromGroupBodyWithDefaults() *GroupsRemoveUserFromGroupBody

NewGroupsRemoveUserFromGroupBodyWithDefaults instantiates a new GroupsRemoveUserFromGroupBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsRemoveUserFromGroupBody) GetDomainId

func (o *GroupsRemoveUserFromGroupBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*GroupsRemoveUserFromGroupBody) GetDomainIdOk

func (o *GroupsRemoveUserFromGroupBody) GetDomainIdOk() (*string, bool)

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

func (*GroupsRemoveUserFromGroupBody) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*GroupsRemoveUserFromGroupBody) GetDomainTypeOk

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

func (*GroupsRemoveUserFromGroupBody) GetUserEmail

func (o *GroupsRemoveUserFromGroupBody) GetUserEmail() string

GetUserEmail returns the UserEmail field value if set, zero value otherwise.

func (*GroupsRemoveUserFromGroupBody) GetUserEmailOk

func (o *GroupsRemoveUserFromGroupBody) GetUserEmailOk() (*string, bool)

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

func (*GroupsRemoveUserFromGroupBody) GetUserId

func (o *GroupsRemoveUserFromGroupBody) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*GroupsRemoveUserFromGroupBody) GetUserIdOk

func (o *GroupsRemoveUserFromGroupBody) GetUserIdOk() (*string, bool)

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

func (*GroupsRemoveUserFromGroupBody) HasDomainId

func (o *GroupsRemoveUserFromGroupBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*GroupsRemoveUserFromGroupBody) HasDomainType

func (o *GroupsRemoveUserFromGroupBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*GroupsRemoveUserFromGroupBody) HasUserEmail

func (o *GroupsRemoveUserFromGroupBody) HasUserEmail() bool

HasUserEmail returns a boolean if a field has been set.

func (*GroupsRemoveUserFromGroupBody) HasUserId

func (o *GroupsRemoveUserFromGroupBody) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (GroupsRemoveUserFromGroupBody) MarshalJSON

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

func (*GroupsRemoveUserFromGroupBody) SetDomainId

func (o *GroupsRemoveUserFromGroupBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*GroupsRemoveUserFromGroupBody) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*GroupsRemoveUserFromGroupBody) SetUserEmail

func (o *GroupsRemoveUserFromGroupBody) SetUserEmail(v string)

SetUserEmail gets a reference to the given string and assigns it to the UserEmail field.

func (*GroupsRemoveUserFromGroupBody) SetUserId

func (o *GroupsRemoveUserFromGroupBody) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (GroupsRemoveUserFromGroupBody) ToMap

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

type GroupsUpdateGroupBody

type GroupsUpdateGroupBody struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	Group      *GroupsGroup             `json:"group,omitempty"`
}

GroupsUpdateGroupBody struct for GroupsUpdateGroupBody

func NewGroupsUpdateGroupBody

func NewGroupsUpdateGroupBody() *GroupsUpdateGroupBody

NewGroupsUpdateGroupBody instantiates a new GroupsUpdateGroupBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsUpdateGroupBodyWithDefaults

func NewGroupsUpdateGroupBodyWithDefaults() *GroupsUpdateGroupBody

NewGroupsUpdateGroupBodyWithDefaults instantiates a new GroupsUpdateGroupBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsUpdateGroupBody) GetDomainId

func (o *GroupsUpdateGroupBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*GroupsUpdateGroupBody) GetDomainIdOk

func (o *GroupsUpdateGroupBody) GetDomainIdOk() (*string, bool)

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

func (*GroupsUpdateGroupBody) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*GroupsUpdateGroupBody) GetDomainTypeOk

func (o *GroupsUpdateGroupBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

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

func (*GroupsUpdateGroupBody) GetGroup

func (o *GroupsUpdateGroupBody) GetGroup() GroupsGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsUpdateGroupBody) GetGroupOk

func (o *GroupsUpdateGroupBody) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsUpdateGroupBody) HasDomainId

func (o *GroupsUpdateGroupBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*GroupsUpdateGroupBody) HasDomainType

func (o *GroupsUpdateGroupBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*GroupsUpdateGroupBody) HasGroup

func (o *GroupsUpdateGroupBody) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupsUpdateGroupBody) MarshalJSON

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

func (*GroupsUpdateGroupBody) SetDomainId

func (o *GroupsUpdateGroupBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*GroupsUpdateGroupBody) SetDomainType

func (o *GroupsUpdateGroupBody) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*GroupsUpdateGroupBody) SetGroup

func (o *GroupsUpdateGroupBody) SetGroup(v GroupsGroup)

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (GroupsUpdateGroupBody) ToMap

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

type GroupsUpdateGroupResponse

type GroupsUpdateGroupResponse struct {
	Group *GroupsGroup `json:"group,omitempty"`
}

GroupsUpdateGroupResponse struct for GroupsUpdateGroupResponse

func NewGroupsUpdateGroupResponse

func NewGroupsUpdateGroupResponse() *GroupsUpdateGroupResponse

NewGroupsUpdateGroupResponse instantiates a new GroupsUpdateGroupResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsUpdateGroupResponseWithDefaults

func NewGroupsUpdateGroupResponseWithDefaults() *GroupsUpdateGroupResponse

NewGroupsUpdateGroupResponseWithDefaults instantiates a new GroupsUpdateGroupResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsUpdateGroupResponse) GetGroup

func (o *GroupsUpdateGroupResponse) GetGroup() GroupsGroup

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupsUpdateGroupResponse) GetGroupOk

func (o *GroupsUpdateGroupResponse) GetGroupOk() (*GroupsGroup, bool)

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

func (*GroupsUpdateGroupResponse) HasGroup

func (o *GroupsUpdateGroupResponse) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupsUpdateGroupResponse) MarshalJSON

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

func (*GroupsUpdateGroupResponse) SetGroup

func (o *GroupsUpdateGroupResponse) SetGroup(v GroupsGroup)

SetGroup gets a reference to the given GroupsGroup and assigns it to the Group field.

func (GroupsUpdateGroupResponse) ToMap

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

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MeAPIService

type MeAPIService service

MeAPIService MeAPI service

func (*MeAPIService) MeMe

MeMe Get current user

Returns the currently authenticated user

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

func (*MeAPIService) MeMeExecute

Execute executes the request

@return SuperplaneMeUser

func (*MeAPIService) MeRegenerateToken

func (a *MeAPIService) MeRegenerateToken(ctx context.Context) ApiMeRegenerateTokenRequest

MeRegenerateToken Regenerate API token

Regenerates the currently authencated user's API token

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

func (*MeAPIService) MeRegenerateTokenExecute

Execute executes the request

@return MeRegenerateTokenResponse

type MeRegenerateTokenResponse

type MeRegenerateTokenResponse struct {
	Token *string `json:"token,omitempty"`
}

MeRegenerateTokenResponse struct for MeRegenerateTokenResponse

func NewMeRegenerateTokenResponse

func NewMeRegenerateTokenResponse() *MeRegenerateTokenResponse

NewMeRegenerateTokenResponse instantiates a new MeRegenerateTokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMeRegenerateTokenResponseWithDefaults

func NewMeRegenerateTokenResponseWithDefaults() *MeRegenerateTokenResponse

NewMeRegenerateTokenResponseWithDefaults instantiates a new MeRegenerateTokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MeRegenerateTokenResponse) GetToken

func (o *MeRegenerateTokenResponse) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*MeRegenerateTokenResponse) GetTokenOk

func (o *MeRegenerateTokenResponse) GetTokenOk() (*string, bool)

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

func (*MeRegenerateTokenResponse) HasToken

func (o *MeRegenerateTokenResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (MeRegenerateTokenResponse) MarshalJSON

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

func (*MeRegenerateTokenResponse) SetToken

func (o *MeRegenerateTokenResponse) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (MeRegenerateTokenResponse) ToMap

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

type NodeBlueprintRef

type NodeBlueprintRef struct {
	Id *string `json:"id,omitempty"`
}

NodeBlueprintRef struct for NodeBlueprintRef

func NewNodeBlueprintRef

func NewNodeBlueprintRef() *NodeBlueprintRef

NewNodeBlueprintRef instantiates a new NodeBlueprintRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNodeBlueprintRefWithDefaults

func NewNodeBlueprintRefWithDefaults() *NodeBlueprintRef

NewNodeBlueprintRefWithDefaults instantiates a new NodeBlueprintRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NodeBlueprintRef) GetId

func (o *NodeBlueprintRef) GetId() string

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

func (*NodeBlueprintRef) GetIdOk

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

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

func (*NodeBlueprintRef) HasId

func (o *NodeBlueprintRef) HasId() bool

HasId returns a boolean if a field has been set.

func (NodeBlueprintRef) MarshalJSON

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

func (*NodeBlueprintRef) SetId

func (o *NodeBlueprintRef) SetId(v string)

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

func (NodeBlueprintRef) ToMap

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

type NodeComponentRef

type NodeComponentRef struct {
	Name *string `json:"name,omitempty"`
}

NodeComponentRef struct for NodeComponentRef

func NewNodeComponentRef

func NewNodeComponentRef() *NodeComponentRef

NewNodeComponentRef instantiates a new NodeComponentRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNodeComponentRefWithDefaults

func NewNodeComponentRefWithDefaults() *NodeComponentRef

NewNodeComponentRefWithDefaults instantiates a new NodeComponentRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NodeComponentRef) GetName

func (o *NodeComponentRef) GetName() string

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

func (*NodeComponentRef) GetNameOk

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

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

func (*NodeComponentRef) HasName

func (o *NodeComponentRef) HasName() bool

HasName returns a boolean if a field has been set.

func (NodeComponentRef) MarshalJSON

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

func (*NodeComponentRef) SetName

func (o *NodeComponentRef) SetName(v string)

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

func (NodeComponentRef) ToMap

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

type NodeTriggerRef

type NodeTriggerRef struct {
	Name *string `json:"name,omitempty"`
}

NodeTriggerRef struct for NodeTriggerRef

func NewNodeTriggerRef

func NewNodeTriggerRef() *NodeTriggerRef

NewNodeTriggerRef instantiates a new NodeTriggerRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNodeTriggerRefWithDefaults

func NewNodeTriggerRefWithDefaults() *NodeTriggerRef

NewNodeTriggerRefWithDefaults instantiates a new NodeTriggerRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NodeTriggerRef) GetName

func (o *NodeTriggerRef) GetName() string

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

func (*NodeTriggerRef) GetNameOk

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

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

func (*NodeTriggerRef) HasName

func (o *NodeTriggerRef) HasName() bool

HasName returns a boolean if a field has been set.

func (NodeTriggerRef) MarshalJSON

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

func (*NodeTriggerRef) SetName

func (o *NodeTriggerRef) SetName(v string)

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

func (NodeTriggerRef) ToMap

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

type NodeWidgetRef added in v0.0.18

type NodeWidgetRef struct {
	Name *string `json:"name,omitempty"`
}

NodeWidgetRef struct for NodeWidgetRef

func NewNodeWidgetRef added in v0.0.18

func NewNodeWidgetRef() *NodeWidgetRef

NewNodeWidgetRef instantiates a new NodeWidgetRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNodeWidgetRefWithDefaults added in v0.0.18

func NewNodeWidgetRefWithDefaults() *NodeWidgetRef

NewNodeWidgetRefWithDefaults instantiates a new NodeWidgetRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NodeWidgetRef) GetName added in v0.0.18

func (o *NodeWidgetRef) GetName() string

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

func (*NodeWidgetRef) GetNameOk added in v0.0.18

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

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

func (*NodeWidgetRef) HasName added in v0.0.18

func (o *NodeWidgetRef) HasName() bool

HasName returns a boolean if a field has been set.

func (NodeWidgetRef) MarshalJSON added in v0.0.18

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

func (*NodeWidgetRef) SetName added in v0.0.18

func (o *NodeWidgetRef) SetName(v string)

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

func (NodeWidgetRef) ToMap added in v0.0.18

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

type NullableAppInstallationNodeRef

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

func (NullableAppInstallationNodeRef) Get

func (NullableAppInstallationNodeRef) IsSet

func (NullableAppInstallationNodeRef) MarshalJSON

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

func (*NullableAppInstallationNodeRef) Set

func (*NullableAppInstallationNodeRef) UnmarshalJSON

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

func (*NullableAppInstallationNodeRef) Unset

func (v *NullableAppInstallationNodeRef) Unset()

type NullableApplicationsApplicationDefinition

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

func (NullableApplicationsApplicationDefinition) Get

func (NullableApplicationsApplicationDefinition) IsSet

func (NullableApplicationsApplicationDefinition) MarshalJSON

func (*NullableApplicationsApplicationDefinition) Set

func (*NullableApplicationsApplicationDefinition) UnmarshalJSON

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

func (*NullableApplicationsApplicationDefinition) Unset

type NullableAuthorizationDomainType

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

func (NullableAuthorizationDomainType) Get

func (NullableAuthorizationDomainType) IsSet

func (NullableAuthorizationDomainType) MarshalJSON

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

func (*NullableAuthorizationDomainType) Set

func (*NullableAuthorizationDomainType) UnmarshalJSON

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

func (*NullableAuthorizationDomainType) Unset

type NullableAuthorizationPermission

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

func (NullableAuthorizationPermission) Get

func (NullableAuthorizationPermission) IsSet

func (NullableAuthorizationPermission) MarshalJSON

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

func (*NullableAuthorizationPermission) Set

func (*NullableAuthorizationPermission) UnmarshalJSON

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

func (*NullableAuthorizationPermission) Unset

type NullableBlueprintsBlueprint

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

func NewNullableBlueprintsBlueprint

func NewNullableBlueprintsBlueprint(val *BlueprintsBlueprint) *NullableBlueprintsBlueprint

func (NullableBlueprintsBlueprint) Get

func (NullableBlueprintsBlueprint) IsSet

func (NullableBlueprintsBlueprint) MarshalJSON

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

func (*NullableBlueprintsBlueprint) Set

func (*NullableBlueprintsBlueprint) UnmarshalJSON

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

func (*NullableBlueprintsBlueprint) Unset

func (v *NullableBlueprintsBlueprint) Unset()

type NullableBlueprintsCreateBlueprintRequest

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

func (NullableBlueprintsCreateBlueprintRequest) Get

func (NullableBlueprintsCreateBlueprintRequest) IsSet

func (NullableBlueprintsCreateBlueprintRequest) MarshalJSON

func (*NullableBlueprintsCreateBlueprintRequest) Set

func (*NullableBlueprintsCreateBlueprintRequest) UnmarshalJSON

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

func (*NullableBlueprintsCreateBlueprintRequest) Unset

type NullableBlueprintsCreateBlueprintResponse

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

func (NullableBlueprintsCreateBlueprintResponse) Get

func (NullableBlueprintsCreateBlueprintResponse) IsSet

func (NullableBlueprintsCreateBlueprintResponse) MarshalJSON

func (*NullableBlueprintsCreateBlueprintResponse) Set

func (*NullableBlueprintsCreateBlueprintResponse) UnmarshalJSON

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

func (*NullableBlueprintsCreateBlueprintResponse) Unset

type NullableBlueprintsDescribeBlueprintResponse

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

func (NullableBlueprintsDescribeBlueprintResponse) Get

func (NullableBlueprintsDescribeBlueprintResponse) IsSet

func (NullableBlueprintsDescribeBlueprintResponse) MarshalJSON

func (*NullableBlueprintsDescribeBlueprintResponse) Set

func (*NullableBlueprintsDescribeBlueprintResponse) UnmarshalJSON

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

func (*NullableBlueprintsDescribeBlueprintResponse) Unset

type NullableBlueprintsListBlueprintsResponse

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

func (NullableBlueprintsListBlueprintsResponse) Get

func (NullableBlueprintsListBlueprintsResponse) IsSet

func (NullableBlueprintsListBlueprintsResponse) MarshalJSON

func (*NullableBlueprintsListBlueprintsResponse) Set

func (*NullableBlueprintsListBlueprintsResponse) UnmarshalJSON

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

func (*NullableBlueprintsListBlueprintsResponse) Unset

type NullableBlueprintsUpdateBlueprintBody

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

func (NullableBlueprintsUpdateBlueprintBody) Get

func (NullableBlueprintsUpdateBlueprintBody) IsSet

func (NullableBlueprintsUpdateBlueprintBody) MarshalJSON

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

func (*NullableBlueprintsUpdateBlueprintBody) Set

func (*NullableBlueprintsUpdateBlueprintBody) UnmarshalJSON

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

func (*NullableBlueprintsUpdateBlueprintBody) Unset

type NullableBlueprintsUpdateBlueprintResponse

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

func (NullableBlueprintsUpdateBlueprintResponse) Get

func (NullableBlueprintsUpdateBlueprintResponse) IsSet

func (NullableBlueprintsUpdateBlueprintResponse) MarshalJSON

func (*NullableBlueprintsUpdateBlueprintResponse) Set

func (*NullableBlueprintsUpdateBlueprintResponse) UnmarshalJSON

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

func (*NullableBlueprintsUpdateBlueprintResponse) Unset

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableComponentsAppInstallationRef

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

func (NullableComponentsAppInstallationRef) Get

func (NullableComponentsAppInstallationRef) IsSet

func (NullableComponentsAppInstallationRef) MarshalJSON

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

func (*NullableComponentsAppInstallationRef) Set

func (*NullableComponentsAppInstallationRef) UnmarshalJSON

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

func (*NullableComponentsAppInstallationRef) Unset

type NullableComponentsComponent

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

func NewNullableComponentsComponent

func NewNullableComponentsComponent(val *ComponentsComponent) *NullableComponentsComponent

func (NullableComponentsComponent) Get

func (NullableComponentsComponent) IsSet

func (NullableComponentsComponent) MarshalJSON

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

func (*NullableComponentsComponent) Set

func (*NullableComponentsComponent) UnmarshalJSON

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

func (*NullableComponentsComponent) Unset

func (v *NullableComponentsComponent) Unset()

type NullableComponentsComponentAction

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

func (NullableComponentsComponentAction) Get

func (NullableComponentsComponentAction) IsSet

func (NullableComponentsComponentAction) MarshalJSON

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

func (*NullableComponentsComponentAction) Set

func (*NullableComponentsComponentAction) UnmarshalJSON

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

func (*NullableComponentsComponentAction) Unset

type NullableComponentsDescribeComponentResponse

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

func (NullableComponentsDescribeComponentResponse) Get

func (NullableComponentsDescribeComponentResponse) IsSet

func (NullableComponentsDescribeComponentResponse) MarshalJSON

func (*NullableComponentsDescribeComponentResponse) Set

func (*NullableComponentsDescribeComponentResponse) UnmarshalJSON

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

func (*NullableComponentsDescribeComponentResponse) Unset

type NullableComponentsEdge

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

func NewNullableComponentsEdge

func NewNullableComponentsEdge(val *ComponentsEdge) *NullableComponentsEdge

func (NullableComponentsEdge) Get

func (NullableComponentsEdge) IsSet

func (v NullableComponentsEdge) IsSet() bool

func (NullableComponentsEdge) MarshalJSON

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

func (*NullableComponentsEdge) Set

func (*NullableComponentsEdge) UnmarshalJSON

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

func (*NullableComponentsEdge) Unset

func (v *NullableComponentsEdge) Unset()

type NullableComponentsListComponentActionsResponse

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

func (NullableComponentsListComponentActionsResponse) Get

func (NullableComponentsListComponentActionsResponse) IsSet

func (NullableComponentsListComponentActionsResponse) MarshalJSON

func (*NullableComponentsListComponentActionsResponse) Set

func (*NullableComponentsListComponentActionsResponse) UnmarshalJSON

func (*NullableComponentsListComponentActionsResponse) Unset

type NullableComponentsListComponentsResponse

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

func (NullableComponentsListComponentsResponse) Get

func (NullableComponentsListComponentsResponse) IsSet

func (NullableComponentsListComponentsResponse) MarshalJSON

func (*NullableComponentsListComponentsResponse) Set

func (*NullableComponentsListComponentsResponse) UnmarshalJSON

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

func (*NullableComponentsListComponentsResponse) Unset

type NullableComponentsNode

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

func NewNullableComponentsNode

func NewNullableComponentsNode(val *ComponentsNode) *NullableComponentsNode

func (NullableComponentsNode) Get

func (NullableComponentsNode) IsSet

func (v NullableComponentsNode) IsSet() bool

func (NullableComponentsNode) MarshalJSON

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

func (*NullableComponentsNode) Set

func (*NullableComponentsNode) UnmarshalJSON

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

func (*NullableComponentsNode) Unset

func (v *NullableComponentsNode) Unset()

type NullableComponentsNodeType

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

func NewNullableComponentsNodeType

func NewNullableComponentsNodeType(val *ComponentsNodeType) *NullableComponentsNodeType

func (NullableComponentsNodeType) Get

func (NullableComponentsNodeType) IsSet

func (v NullableComponentsNodeType) IsSet() bool

func (NullableComponentsNodeType) MarshalJSON

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

func (*NullableComponentsNodeType) Set

func (*NullableComponentsNodeType) UnmarshalJSON

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

func (*NullableComponentsNodeType) Unset

func (v *NullableComponentsNodeType) Unset()

type NullableComponentsPosition

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

func NewNullableComponentsPosition

func NewNullableComponentsPosition(val *ComponentsPosition) *NullableComponentsPosition

func (NullableComponentsPosition) Get

func (NullableComponentsPosition) IsSet

func (v NullableComponentsPosition) IsSet() bool

func (NullableComponentsPosition) MarshalJSON

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

func (*NullableComponentsPosition) Set

func (*NullableComponentsPosition) UnmarshalJSON

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

func (*NullableComponentsPosition) Unset

func (v *NullableComponentsPosition) Unset()

type NullableConfigurationAnyPredicateListTypeOptions

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

func (NullableConfigurationAnyPredicateListTypeOptions) Get

func (NullableConfigurationAnyPredicateListTypeOptions) IsSet

func (NullableConfigurationAnyPredicateListTypeOptions) MarshalJSON

func (*NullableConfigurationAnyPredicateListTypeOptions) Set

func (*NullableConfigurationAnyPredicateListTypeOptions) UnmarshalJSON

func (*NullableConfigurationAnyPredicateListTypeOptions) Unset

type NullableConfigurationDateTimeTypeOptions

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

func (NullableConfigurationDateTimeTypeOptions) Get

func (NullableConfigurationDateTimeTypeOptions) IsSet

func (NullableConfigurationDateTimeTypeOptions) MarshalJSON

func (*NullableConfigurationDateTimeTypeOptions) Set

func (*NullableConfigurationDateTimeTypeOptions) UnmarshalJSON

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

func (*NullableConfigurationDateTimeTypeOptions) Unset

type NullableConfigurationDateTypeOptions

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

func (NullableConfigurationDateTypeOptions) Get

func (NullableConfigurationDateTypeOptions) IsSet

func (NullableConfigurationDateTypeOptions) MarshalJSON

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

func (*NullableConfigurationDateTypeOptions) Set

func (*NullableConfigurationDateTypeOptions) UnmarshalJSON

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

func (*NullableConfigurationDateTypeOptions) Unset

type NullableConfigurationExpressionTypeOptions added in v0.0.43

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

func NewNullableConfigurationExpressionTypeOptions added in v0.0.43

func NewNullableConfigurationExpressionTypeOptions(val *ConfigurationExpressionTypeOptions) *NullableConfigurationExpressionTypeOptions

func (NullableConfigurationExpressionTypeOptions) Get added in v0.0.43

func (NullableConfigurationExpressionTypeOptions) IsSet added in v0.0.43

func (NullableConfigurationExpressionTypeOptions) MarshalJSON added in v0.0.43

func (*NullableConfigurationExpressionTypeOptions) Set added in v0.0.43

func (*NullableConfigurationExpressionTypeOptions) UnmarshalJSON added in v0.0.43

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

func (*NullableConfigurationExpressionTypeOptions) Unset added in v0.0.43

type NullableConfigurationField

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

func NewNullableConfigurationField

func NewNullableConfigurationField(val *ConfigurationField) *NullableConfigurationField

func (NullableConfigurationField) Get

func (NullableConfigurationField) IsSet

func (v NullableConfigurationField) IsSet() bool

func (NullableConfigurationField) MarshalJSON

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

func (*NullableConfigurationField) Set

func (*NullableConfigurationField) UnmarshalJSON

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

func (*NullableConfigurationField) Unset

func (v *NullableConfigurationField) Unset()

type NullableConfigurationListItemDefinition

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

func (NullableConfigurationListItemDefinition) Get

func (NullableConfigurationListItemDefinition) IsSet

func (NullableConfigurationListItemDefinition) MarshalJSON

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

func (*NullableConfigurationListItemDefinition) Set

func (*NullableConfigurationListItemDefinition) UnmarshalJSON

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

func (*NullableConfigurationListItemDefinition) Unset

type NullableConfigurationListTypeOptions

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

func (NullableConfigurationListTypeOptions) Get

func (NullableConfigurationListTypeOptions) IsSet

func (NullableConfigurationListTypeOptions) MarshalJSON

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

func (*NullableConfigurationListTypeOptions) Set

func (*NullableConfigurationListTypeOptions) UnmarshalJSON

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

func (*NullableConfigurationListTypeOptions) Unset

type NullableConfigurationMultiSelectTypeOptions

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

func (NullableConfigurationMultiSelectTypeOptions) Get

func (NullableConfigurationMultiSelectTypeOptions) IsSet

func (NullableConfigurationMultiSelectTypeOptions) MarshalJSON

func (*NullableConfigurationMultiSelectTypeOptions) Set

func (*NullableConfigurationMultiSelectTypeOptions) UnmarshalJSON

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

func (*NullableConfigurationMultiSelectTypeOptions) Unset

type NullableConfigurationNumberTypeOptions

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

func (NullableConfigurationNumberTypeOptions) Get

func (NullableConfigurationNumberTypeOptions) IsSet

func (NullableConfigurationNumberTypeOptions) MarshalJSON

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

func (*NullableConfigurationNumberTypeOptions) Set

func (*NullableConfigurationNumberTypeOptions) UnmarshalJSON

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

func (*NullableConfigurationNumberTypeOptions) Unset

type NullableConfigurationObjectTypeOptions

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

func (NullableConfigurationObjectTypeOptions) Get

func (NullableConfigurationObjectTypeOptions) IsSet

func (NullableConfigurationObjectTypeOptions) MarshalJSON

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

func (*NullableConfigurationObjectTypeOptions) Set

func (*NullableConfigurationObjectTypeOptions) UnmarshalJSON

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

func (*NullableConfigurationObjectTypeOptions) Unset

type NullableConfigurationRequiredCondition

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

func (NullableConfigurationRequiredCondition) Get

func (NullableConfigurationRequiredCondition) IsSet

func (NullableConfigurationRequiredCondition) MarshalJSON

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

func (*NullableConfigurationRequiredCondition) Set

func (*NullableConfigurationRequiredCondition) UnmarshalJSON

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

func (*NullableConfigurationRequiredCondition) Unset

type NullableConfigurationResourceTypeOptions

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

func (NullableConfigurationResourceTypeOptions) Get

func (NullableConfigurationResourceTypeOptions) IsSet

func (NullableConfigurationResourceTypeOptions) MarshalJSON

func (*NullableConfigurationResourceTypeOptions) Set

func (*NullableConfigurationResourceTypeOptions) UnmarshalJSON

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

func (*NullableConfigurationResourceTypeOptions) Unset

type NullableConfigurationSelectOption

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

func (NullableConfigurationSelectOption) Get

func (NullableConfigurationSelectOption) IsSet

func (NullableConfigurationSelectOption) MarshalJSON

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

func (*NullableConfigurationSelectOption) Set

func (*NullableConfigurationSelectOption) UnmarshalJSON

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

func (*NullableConfigurationSelectOption) Unset

type NullableConfigurationSelectTypeOptions

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

func (NullableConfigurationSelectTypeOptions) Get

func (NullableConfigurationSelectTypeOptions) IsSet

func (NullableConfigurationSelectTypeOptions) MarshalJSON

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

func (*NullableConfigurationSelectTypeOptions) Set

func (*NullableConfigurationSelectTypeOptions) UnmarshalJSON

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

func (*NullableConfigurationSelectTypeOptions) Unset

type NullableConfigurationStringTypeOptions added in v0.0.18

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

func NewNullableConfigurationStringTypeOptions added in v0.0.18

func NewNullableConfigurationStringTypeOptions(val *ConfigurationStringTypeOptions) *NullableConfigurationStringTypeOptions

func (NullableConfigurationStringTypeOptions) Get added in v0.0.18

func (NullableConfigurationStringTypeOptions) IsSet added in v0.0.18

func (NullableConfigurationStringTypeOptions) MarshalJSON added in v0.0.18

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

func (*NullableConfigurationStringTypeOptions) Set added in v0.0.18

func (*NullableConfigurationStringTypeOptions) UnmarshalJSON added in v0.0.18

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

func (*NullableConfigurationStringTypeOptions) Unset added in v0.0.18

type NullableConfigurationTextTypeOptions added in v0.0.18

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

func NewNullableConfigurationTextTypeOptions added in v0.0.18

func NewNullableConfigurationTextTypeOptions(val *ConfigurationTextTypeOptions) *NullableConfigurationTextTypeOptions

func (NullableConfigurationTextTypeOptions) Get added in v0.0.18

func (NullableConfigurationTextTypeOptions) IsSet added in v0.0.18

func (NullableConfigurationTextTypeOptions) MarshalJSON added in v0.0.18

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

func (*NullableConfigurationTextTypeOptions) Set added in v0.0.18

func (*NullableConfigurationTextTypeOptions) UnmarshalJSON added in v0.0.18

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

func (*NullableConfigurationTextTypeOptions) Unset added in v0.0.18

type NullableConfigurationTimeTypeOptions

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

func (NullableConfigurationTimeTypeOptions) Get

func (NullableConfigurationTimeTypeOptions) IsSet

func (NullableConfigurationTimeTypeOptions) MarshalJSON

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

func (*NullableConfigurationTimeTypeOptions) Set

func (*NullableConfigurationTimeTypeOptions) UnmarshalJSON

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

func (*NullableConfigurationTimeTypeOptions) Unset

type NullableConfigurationTypeOptions

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

func (NullableConfigurationTypeOptions) Get

func (NullableConfigurationTypeOptions) IsSet

func (NullableConfigurationTypeOptions) MarshalJSON

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

func (*NullableConfigurationTypeOptions) Set

func (*NullableConfigurationTypeOptions) UnmarshalJSON

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

func (*NullableConfigurationTypeOptions) Unset

type NullableConfigurationValidationRule

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

func (NullableConfigurationValidationRule) Get

func (NullableConfigurationValidationRule) IsSet

func (NullableConfigurationValidationRule) MarshalJSON

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

func (*NullableConfigurationValidationRule) Set

func (*NullableConfigurationValidationRule) UnmarshalJSON

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

func (*NullableConfigurationValidationRule) Unset

type NullableConfigurationVisibilityCondition

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

func (NullableConfigurationVisibilityCondition) Get

func (NullableConfigurationVisibilityCondition) IsSet

func (NullableConfigurationVisibilityCondition) MarshalJSON

func (*NullableConfigurationVisibilityCondition) Set

func (*NullableConfigurationVisibilityCondition) UnmarshalJSON

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

func (*NullableConfigurationVisibilityCondition) Unset

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGooglerpcStatus

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

func NewNullableGooglerpcStatus

func NewNullableGooglerpcStatus(val *GooglerpcStatus) *NullableGooglerpcStatus

func (NullableGooglerpcStatus) Get

func (NullableGooglerpcStatus) IsSet

func (v NullableGooglerpcStatus) IsSet() bool

func (NullableGooglerpcStatus) MarshalJSON

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

func (*NullableGooglerpcStatus) Set

func (*NullableGooglerpcStatus) UnmarshalJSON

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

func (*NullableGooglerpcStatus) Unset

func (v *NullableGooglerpcStatus) Unset()

type NullableGroupsAddUserToGroupBody

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

func (NullableGroupsAddUserToGroupBody) Get

func (NullableGroupsAddUserToGroupBody) IsSet

func (NullableGroupsAddUserToGroupBody) MarshalJSON

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

func (*NullableGroupsAddUserToGroupBody) Set

func (*NullableGroupsAddUserToGroupBody) UnmarshalJSON

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

func (*NullableGroupsAddUserToGroupBody) Unset

type NullableGroupsCreateGroupRequest

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

func (NullableGroupsCreateGroupRequest) Get

func (NullableGroupsCreateGroupRequest) IsSet

func (NullableGroupsCreateGroupRequest) MarshalJSON

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

func (*NullableGroupsCreateGroupRequest) Set

func (*NullableGroupsCreateGroupRequest) UnmarshalJSON

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

func (*NullableGroupsCreateGroupRequest) Unset

type NullableGroupsCreateGroupResponse

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

func (NullableGroupsCreateGroupResponse) Get

func (NullableGroupsCreateGroupResponse) IsSet

func (NullableGroupsCreateGroupResponse) MarshalJSON

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

func (*NullableGroupsCreateGroupResponse) Set

func (*NullableGroupsCreateGroupResponse) UnmarshalJSON

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

func (*NullableGroupsCreateGroupResponse) Unset

type NullableGroupsDescribeGroupResponse

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

func (NullableGroupsDescribeGroupResponse) Get

func (NullableGroupsDescribeGroupResponse) IsSet

func (NullableGroupsDescribeGroupResponse) MarshalJSON

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

func (*NullableGroupsDescribeGroupResponse) Set

func (*NullableGroupsDescribeGroupResponse) UnmarshalJSON

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

func (*NullableGroupsDescribeGroupResponse) Unset

type NullableGroupsGroup

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

func NewNullableGroupsGroup

func NewNullableGroupsGroup(val *GroupsGroup) *NullableGroupsGroup

func (NullableGroupsGroup) Get

func (NullableGroupsGroup) IsSet

func (v NullableGroupsGroup) IsSet() bool

func (NullableGroupsGroup) MarshalJSON

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

func (*NullableGroupsGroup) Set

func (v *NullableGroupsGroup) Set(val *GroupsGroup)

func (*NullableGroupsGroup) UnmarshalJSON

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

func (*NullableGroupsGroup) Unset

func (v *NullableGroupsGroup) Unset()

type NullableGroupsGroupMetadata

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

func NewNullableGroupsGroupMetadata

func NewNullableGroupsGroupMetadata(val *GroupsGroupMetadata) *NullableGroupsGroupMetadata

func (NullableGroupsGroupMetadata) Get

func (NullableGroupsGroupMetadata) IsSet

func (NullableGroupsGroupMetadata) MarshalJSON

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

func (*NullableGroupsGroupMetadata) Set

func (*NullableGroupsGroupMetadata) UnmarshalJSON

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

func (*NullableGroupsGroupMetadata) Unset

func (v *NullableGroupsGroupMetadata) Unset()

type NullableGroupsGroupSpec

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

func NewNullableGroupsGroupSpec

func NewNullableGroupsGroupSpec(val *GroupsGroupSpec) *NullableGroupsGroupSpec

func (NullableGroupsGroupSpec) Get

func (NullableGroupsGroupSpec) IsSet

func (v NullableGroupsGroupSpec) IsSet() bool

func (NullableGroupsGroupSpec) MarshalJSON

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

func (*NullableGroupsGroupSpec) Set

func (*NullableGroupsGroupSpec) UnmarshalJSON

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

func (*NullableGroupsGroupSpec) Unset

func (v *NullableGroupsGroupSpec) Unset()

type NullableGroupsGroupStatus

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

func NewNullableGroupsGroupStatus

func NewNullableGroupsGroupStatus(val *GroupsGroupStatus) *NullableGroupsGroupStatus

func (NullableGroupsGroupStatus) Get

func (NullableGroupsGroupStatus) IsSet

func (v NullableGroupsGroupStatus) IsSet() bool

func (NullableGroupsGroupStatus) MarshalJSON

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

func (*NullableGroupsGroupStatus) Set

func (*NullableGroupsGroupStatus) UnmarshalJSON

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

func (*NullableGroupsGroupStatus) Unset

func (v *NullableGroupsGroupStatus) Unset()

type NullableGroupsListGroupUsersResponse

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

func (NullableGroupsListGroupUsersResponse) Get

func (NullableGroupsListGroupUsersResponse) IsSet

func (NullableGroupsListGroupUsersResponse) MarshalJSON

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

func (*NullableGroupsListGroupUsersResponse) Set

func (*NullableGroupsListGroupUsersResponse) UnmarshalJSON

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

func (*NullableGroupsListGroupUsersResponse) Unset

type NullableGroupsListGroupsResponse

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

func (NullableGroupsListGroupsResponse) Get

func (NullableGroupsListGroupsResponse) IsSet

func (NullableGroupsListGroupsResponse) MarshalJSON

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

func (*NullableGroupsListGroupsResponse) Set

func (*NullableGroupsListGroupsResponse) UnmarshalJSON

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

func (*NullableGroupsListGroupsResponse) Unset

type NullableGroupsRemoveUserFromGroupBody

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

func (NullableGroupsRemoveUserFromGroupBody) Get

func (NullableGroupsRemoveUserFromGroupBody) IsSet

func (NullableGroupsRemoveUserFromGroupBody) MarshalJSON

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

func (*NullableGroupsRemoveUserFromGroupBody) Set

func (*NullableGroupsRemoveUserFromGroupBody) UnmarshalJSON

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

func (*NullableGroupsRemoveUserFromGroupBody) Unset

type NullableGroupsUpdateGroupBody

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

func (NullableGroupsUpdateGroupBody) Get

func (NullableGroupsUpdateGroupBody) IsSet

func (NullableGroupsUpdateGroupBody) MarshalJSON

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

func (*NullableGroupsUpdateGroupBody) Set

func (*NullableGroupsUpdateGroupBody) UnmarshalJSON

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

func (*NullableGroupsUpdateGroupBody) Unset

func (v *NullableGroupsUpdateGroupBody) Unset()

type NullableGroupsUpdateGroupResponse

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

func (NullableGroupsUpdateGroupResponse) Get

func (NullableGroupsUpdateGroupResponse) IsSet

func (NullableGroupsUpdateGroupResponse) MarshalJSON

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

func (*NullableGroupsUpdateGroupResponse) Set

func (*NullableGroupsUpdateGroupResponse) UnmarshalJSON

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

func (*NullableGroupsUpdateGroupResponse) 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 NullableMeRegenerateTokenResponse

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

func (NullableMeRegenerateTokenResponse) Get

func (NullableMeRegenerateTokenResponse) IsSet

func (NullableMeRegenerateTokenResponse) MarshalJSON

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

func (*NullableMeRegenerateTokenResponse) Set

func (*NullableMeRegenerateTokenResponse) UnmarshalJSON

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

func (*NullableMeRegenerateTokenResponse) Unset

type NullableNodeBlueprintRef

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

func NewNullableNodeBlueprintRef

func NewNullableNodeBlueprintRef(val *NodeBlueprintRef) *NullableNodeBlueprintRef

func (NullableNodeBlueprintRef) Get

func (NullableNodeBlueprintRef) IsSet

func (v NullableNodeBlueprintRef) IsSet() bool

func (NullableNodeBlueprintRef) MarshalJSON

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

func (*NullableNodeBlueprintRef) Set

func (*NullableNodeBlueprintRef) UnmarshalJSON

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

func (*NullableNodeBlueprintRef) Unset

func (v *NullableNodeBlueprintRef) Unset()

type NullableNodeComponentRef

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

func NewNullableNodeComponentRef

func NewNullableNodeComponentRef(val *NodeComponentRef) *NullableNodeComponentRef

func (NullableNodeComponentRef) Get

func (NullableNodeComponentRef) IsSet

func (v NullableNodeComponentRef) IsSet() bool

func (NullableNodeComponentRef) MarshalJSON

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

func (*NullableNodeComponentRef) Set

func (*NullableNodeComponentRef) UnmarshalJSON

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

func (*NullableNodeComponentRef) Unset

func (v *NullableNodeComponentRef) Unset()

type NullableNodeTriggerRef

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

func NewNullableNodeTriggerRef

func NewNullableNodeTriggerRef(val *NodeTriggerRef) *NullableNodeTriggerRef

func (NullableNodeTriggerRef) Get

func (NullableNodeTriggerRef) IsSet

func (v NullableNodeTriggerRef) IsSet() bool

func (NullableNodeTriggerRef) MarshalJSON

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

func (*NullableNodeTriggerRef) Set

func (*NullableNodeTriggerRef) UnmarshalJSON

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

func (*NullableNodeTriggerRef) Unset

func (v *NullableNodeTriggerRef) Unset()

type NullableNodeWidgetRef added in v0.0.18

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

func NewNullableNodeWidgetRef added in v0.0.18

func NewNullableNodeWidgetRef(val *NodeWidgetRef) *NullableNodeWidgetRef

func (NullableNodeWidgetRef) Get added in v0.0.18

func (NullableNodeWidgetRef) IsSet added in v0.0.18

func (v NullableNodeWidgetRef) IsSet() bool

func (NullableNodeWidgetRef) MarshalJSON added in v0.0.18

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

func (*NullableNodeWidgetRef) Set added in v0.0.18

func (v *NullableNodeWidgetRef) Set(val *NodeWidgetRef)

func (*NullableNodeWidgetRef) UnmarshalJSON added in v0.0.18

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

func (*NullableNodeWidgetRef) Unset added in v0.0.18

func (v *NullableNodeWidgetRef) Unset()

type NullableOrganizationsAppInstallation

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

func (NullableOrganizationsAppInstallation) Get

func (NullableOrganizationsAppInstallation) IsSet

func (NullableOrganizationsAppInstallation) MarshalJSON

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

func (*NullableOrganizationsAppInstallation) Set

func (*NullableOrganizationsAppInstallation) UnmarshalJSON

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

func (*NullableOrganizationsAppInstallation) Unset

type NullableOrganizationsAppInstallationMetadata

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

func (NullableOrganizationsAppInstallationMetadata) Get

func (NullableOrganizationsAppInstallationMetadata) IsSet

func (NullableOrganizationsAppInstallationMetadata) MarshalJSON

func (*NullableOrganizationsAppInstallationMetadata) Set

func (*NullableOrganizationsAppInstallationMetadata) UnmarshalJSON

func (*NullableOrganizationsAppInstallationMetadata) Unset

type NullableOrganizationsAppInstallationResourceRef added in v0.0.43

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

func (NullableOrganizationsAppInstallationResourceRef) Get added in v0.0.43

func (NullableOrganizationsAppInstallationResourceRef) IsSet added in v0.0.43

func (NullableOrganizationsAppInstallationResourceRef) MarshalJSON added in v0.0.43

func (*NullableOrganizationsAppInstallationResourceRef) Set added in v0.0.43

func (*NullableOrganizationsAppInstallationResourceRef) UnmarshalJSON added in v0.0.43

func (*NullableOrganizationsAppInstallationResourceRef) Unset added in v0.0.43

type NullableOrganizationsAppInstallationSpec

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

func (NullableOrganizationsAppInstallationSpec) Get

func (NullableOrganizationsAppInstallationSpec) IsSet

func (NullableOrganizationsAppInstallationSpec) MarshalJSON

func (*NullableOrganizationsAppInstallationSpec) Set

func (*NullableOrganizationsAppInstallationSpec) UnmarshalJSON

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

func (*NullableOrganizationsAppInstallationSpec) Unset

type NullableOrganizationsAppInstallationStatus

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

func (NullableOrganizationsAppInstallationStatus) Get

func (NullableOrganizationsAppInstallationStatus) IsSet

func (NullableOrganizationsAppInstallationStatus) MarshalJSON

func (*NullableOrganizationsAppInstallationStatus) Set

func (*NullableOrganizationsAppInstallationStatus) UnmarshalJSON

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

func (*NullableOrganizationsAppInstallationStatus) Unset

type NullableOrganizationsBrowserAction

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

func (NullableOrganizationsBrowserAction) Get

func (NullableOrganizationsBrowserAction) IsSet

func (NullableOrganizationsBrowserAction) MarshalJSON

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

func (*NullableOrganizationsBrowserAction) Set

func (*NullableOrganizationsBrowserAction) UnmarshalJSON

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

func (*NullableOrganizationsBrowserAction) Unset

type NullableOrganizationsCreateInvitationBody

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

func (NullableOrganizationsCreateInvitationBody) Get

func (NullableOrganizationsCreateInvitationBody) IsSet

func (NullableOrganizationsCreateInvitationBody) MarshalJSON

func (*NullableOrganizationsCreateInvitationBody) Set

func (*NullableOrganizationsCreateInvitationBody) UnmarshalJSON

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

func (*NullableOrganizationsCreateInvitationBody) Unset

type NullableOrganizationsCreateInvitationResponse

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

func (NullableOrganizationsCreateInvitationResponse) Get

func (NullableOrganizationsCreateInvitationResponse) IsSet

func (NullableOrganizationsCreateInvitationResponse) MarshalJSON

func (*NullableOrganizationsCreateInvitationResponse) Set

func (*NullableOrganizationsCreateInvitationResponse) UnmarshalJSON

func (*NullableOrganizationsCreateInvitationResponse) Unset

type NullableOrganizationsDescribeApplicationResponse

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

func (NullableOrganizationsDescribeApplicationResponse) Get

func (NullableOrganizationsDescribeApplicationResponse) IsSet

func (NullableOrganizationsDescribeApplicationResponse) MarshalJSON

func (*NullableOrganizationsDescribeApplicationResponse) Set

func (*NullableOrganizationsDescribeApplicationResponse) UnmarshalJSON

func (*NullableOrganizationsDescribeApplicationResponse) Unset

type NullableOrganizationsDescribeOrganizationResponse

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

func (NullableOrganizationsDescribeOrganizationResponse) Get

func (NullableOrganizationsDescribeOrganizationResponse) IsSet

func (NullableOrganizationsDescribeOrganizationResponse) MarshalJSON

func (*NullableOrganizationsDescribeOrganizationResponse) Set

func (*NullableOrganizationsDescribeOrganizationResponse) UnmarshalJSON

func (*NullableOrganizationsDescribeOrganizationResponse) Unset

type NullableOrganizationsGetInviteLinkResponse added in v0.0.43

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

func NewNullableOrganizationsGetInviteLinkResponse added in v0.0.43

func NewNullableOrganizationsGetInviteLinkResponse(val *OrganizationsGetInviteLinkResponse) *NullableOrganizationsGetInviteLinkResponse

func (NullableOrganizationsGetInviteLinkResponse) Get added in v0.0.43

func (NullableOrganizationsGetInviteLinkResponse) IsSet added in v0.0.43

func (NullableOrganizationsGetInviteLinkResponse) MarshalJSON added in v0.0.43

func (*NullableOrganizationsGetInviteLinkResponse) Set added in v0.0.43

func (*NullableOrganizationsGetInviteLinkResponse) UnmarshalJSON added in v0.0.43

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

func (*NullableOrganizationsGetInviteLinkResponse) Unset added in v0.0.43

type NullableOrganizationsInstallApplicationBody

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

func (NullableOrganizationsInstallApplicationBody) Get

func (NullableOrganizationsInstallApplicationBody) IsSet

func (NullableOrganizationsInstallApplicationBody) MarshalJSON

func (*NullableOrganizationsInstallApplicationBody) Set

func (*NullableOrganizationsInstallApplicationBody) UnmarshalJSON

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

func (*NullableOrganizationsInstallApplicationBody) Unset

type NullableOrganizationsInstallApplicationResponse

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

func (NullableOrganizationsInstallApplicationResponse) Get

func (NullableOrganizationsInstallApplicationResponse) IsSet

func (NullableOrganizationsInstallApplicationResponse) MarshalJSON

func (*NullableOrganizationsInstallApplicationResponse) Set

func (*NullableOrganizationsInstallApplicationResponse) UnmarshalJSON

func (*NullableOrganizationsInstallApplicationResponse) Unset

type NullableOrganizationsInvitation

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

func (NullableOrganizationsInvitation) Get

func (NullableOrganizationsInvitation) IsSet

func (NullableOrganizationsInvitation) MarshalJSON

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

func (*NullableOrganizationsInvitation) Set

func (*NullableOrganizationsInvitation) UnmarshalJSON

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

func (*NullableOrganizationsInvitation) Unset

type NullableOrganizationsInviteLink struct {
	// contains filtered or unexported fields
}
func NewNullableOrganizationsInviteLink(val *OrganizationsInviteLink) *NullableOrganizationsInviteLink

func (NullableOrganizationsInviteLink) Get added in v0.0.43

func (NullableOrganizationsInviteLink) IsSet added in v0.0.43

func (NullableOrganizationsInviteLink) MarshalJSON added in v0.0.43

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

func (*NullableOrganizationsInviteLink) Set added in v0.0.43

func (*NullableOrganizationsInviteLink) UnmarshalJSON added in v0.0.43

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

func (*NullableOrganizationsInviteLink) Unset added in v0.0.43

type NullableOrganizationsListApplicationResourcesResponse added in v0.0.43

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

func (NullableOrganizationsListApplicationResourcesResponse) Get added in v0.0.43

func (NullableOrganizationsListApplicationResourcesResponse) IsSet added in v0.0.43

func (NullableOrganizationsListApplicationResourcesResponse) MarshalJSON added in v0.0.43

func (*NullableOrganizationsListApplicationResourcesResponse) Set added in v0.0.43

func (*NullableOrganizationsListApplicationResourcesResponse) UnmarshalJSON added in v0.0.43

func (*NullableOrganizationsListApplicationResourcesResponse) Unset added in v0.0.43

type NullableOrganizationsListInvitationsResponse

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

func (NullableOrganizationsListInvitationsResponse) Get

func (NullableOrganizationsListInvitationsResponse) IsSet

func (NullableOrganizationsListInvitationsResponse) MarshalJSON

func (*NullableOrganizationsListInvitationsResponse) Set

func (*NullableOrganizationsListInvitationsResponse) UnmarshalJSON

func (*NullableOrganizationsListInvitationsResponse) Unset

type NullableOrganizationsOrganization

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

func (NullableOrganizationsOrganization) Get

func (NullableOrganizationsOrganization) IsSet

func (NullableOrganizationsOrganization) MarshalJSON

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

func (*NullableOrganizationsOrganization) Set

func (*NullableOrganizationsOrganization) UnmarshalJSON

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

func (*NullableOrganizationsOrganization) Unset

type NullableOrganizationsOrganizationMetadata

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

func (NullableOrganizationsOrganizationMetadata) Get

func (NullableOrganizationsOrganizationMetadata) IsSet

func (NullableOrganizationsOrganizationMetadata) MarshalJSON

func (*NullableOrganizationsOrganizationMetadata) Set

func (*NullableOrganizationsOrganizationMetadata) UnmarshalJSON

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

func (*NullableOrganizationsOrganizationMetadata) Unset

type NullableOrganizationsResetInviteLinkResponse added in v0.0.43

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

func NewNullableOrganizationsResetInviteLinkResponse added in v0.0.43

func NewNullableOrganizationsResetInviteLinkResponse(val *OrganizationsResetInviteLinkResponse) *NullableOrganizationsResetInviteLinkResponse

func (NullableOrganizationsResetInviteLinkResponse) Get added in v0.0.43

func (NullableOrganizationsResetInviteLinkResponse) IsSet added in v0.0.43

func (NullableOrganizationsResetInviteLinkResponse) MarshalJSON added in v0.0.43

func (*NullableOrganizationsResetInviteLinkResponse) Set added in v0.0.43

func (*NullableOrganizationsResetInviteLinkResponse) UnmarshalJSON added in v0.0.43

func (*NullableOrganizationsResetInviteLinkResponse) Unset added in v0.0.43

type NullableOrganizationsUpdateApplicationBody

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

func (NullableOrganizationsUpdateApplicationBody) Get

func (NullableOrganizationsUpdateApplicationBody) IsSet

func (NullableOrganizationsUpdateApplicationBody) MarshalJSON

func (*NullableOrganizationsUpdateApplicationBody) Set

func (*NullableOrganizationsUpdateApplicationBody) UnmarshalJSON

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

func (*NullableOrganizationsUpdateApplicationBody) Unset

type NullableOrganizationsUpdateApplicationResponse

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

func (NullableOrganizationsUpdateApplicationResponse) Get

func (NullableOrganizationsUpdateApplicationResponse) IsSet

func (NullableOrganizationsUpdateApplicationResponse) MarshalJSON

func (*NullableOrganizationsUpdateApplicationResponse) Set

func (*NullableOrganizationsUpdateApplicationResponse) UnmarshalJSON

func (*NullableOrganizationsUpdateApplicationResponse) Unset

type NullableOrganizationsUpdateInviteLinkBody added in v0.0.43

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

func NewNullableOrganizationsUpdateInviteLinkBody added in v0.0.43

func NewNullableOrganizationsUpdateInviteLinkBody(val *OrganizationsUpdateInviteLinkBody) *NullableOrganizationsUpdateInviteLinkBody

func (NullableOrganizationsUpdateInviteLinkBody) Get added in v0.0.43

func (NullableOrganizationsUpdateInviteLinkBody) IsSet added in v0.0.43

func (NullableOrganizationsUpdateInviteLinkBody) MarshalJSON added in v0.0.43

func (*NullableOrganizationsUpdateInviteLinkBody) Set added in v0.0.43

func (*NullableOrganizationsUpdateInviteLinkBody) UnmarshalJSON added in v0.0.43

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

func (*NullableOrganizationsUpdateInviteLinkBody) Unset added in v0.0.43

type NullableOrganizationsUpdateInviteLinkResponse added in v0.0.43

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

func NewNullableOrganizationsUpdateInviteLinkResponse added in v0.0.43

func NewNullableOrganizationsUpdateInviteLinkResponse(val *OrganizationsUpdateInviteLinkResponse) *NullableOrganizationsUpdateInviteLinkResponse

func (NullableOrganizationsUpdateInviteLinkResponse) Get added in v0.0.43

func (NullableOrganizationsUpdateInviteLinkResponse) IsSet added in v0.0.43

func (NullableOrganizationsUpdateInviteLinkResponse) MarshalJSON added in v0.0.43

func (*NullableOrganizationsUpdateInviteLinkResponse) Set added in v0.0.43

func (*NullableOrganizationsUpdateInviteLinkResponse) UnmarshalJSON added in v0.0.43

func (*NullableOrganizationsUpdateInviteLinkResponse) Unset added in v0.0.43

type NullableOrganizationsUpdateOrganizationBody

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

func (NullableOrganizationsUpdateOrganizationBody) Get

func (NullableOrganizationsUpdateOrganizationBody) IsSet

func (NullableOrganizationsUpdateOrganizationBody) MarshalJSON

func (*NullableOrganizationsUpdateOrganizationBody) Set

func (*NullableOrganizationsUpdateOrganizationBody) UnmarshalJSON

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

func (*NullableOrganizationsUpdateOrganizationBody) Unset

type NullableOrganizationsUpdateOrganizationResponse

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

func (NullableOrganizationsUpdateOrganizationResponse) Get

func (NullableOrganizationsUpdateOrganizationResponse) IsSet

func (NullableOrganizationsUpdateOrganizationResponse) MarshalJSON

func (*NullableOrganizationsUpdateOrganizationResponse) Set

func (*NullableOrganizationsUpdateOrganizationResponse) UnmarshalJSON

func (*NullableOrganizationsUpdateOrganizationResponse) Unset

type NullableProtobufAny

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

func NewNullableProtobufAny

func NewNullableProtobufAny(val *ProtobufAny) *NullableProtobufAny

func (NullableProtobufAny) Get

func (NullableProtobufAny) IsSet

func (v NullableProtobufAny) IsSet() bool

func (NullableProtobufAny) MarshalJSON

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

func (*NullableProtobufAny) Set

func (v *NullableProtobufAny) Set(val *ProtobufAny)

func (*NullableProtobufAny) UnmarshalJSON

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

func (*NullableProtobufAny) Unset

func (v *NullableProtobufAny) Unset()

type NullableProtobufNullValue

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

func NewNullableProtobufNullValue

func NewNullableProtobufNullValue(val *ProtobufNullValue) *NullableProtobufNullValue

func (NullableProtobufNullValue) Get

func (NullableProtobufNullValue) IsSet

func (v NullableProtobufNullValue) IsSet() bool

func (NullableProtobufNullValue) MarshalJSON

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

func (*NullableProtobufNullValue) Set

func (*NullableProtobufNullValue) UnmarshalJSON

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

func (*NullableProtobufNullValue) Unset

func (v *NullableProtobufNullValue) Unset()

type NullableRolesAssignRoleBody

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

func NewNullableRolesAssignRoleBody

func NewNullableRolesAssignRoleBody(val *RolesAssignRoleBody) *NullableRolesAssignRoleBody

func (NullableRolesAssignRoleBody) Get

func (NullableRolesAssignRoleBody) IsSet

func (NullableRolesAssignRoleBody) MarshalJSON

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

func (*NullableRolesAssignRoleBody) Set

func (*NullableRolesAssignRoleBody) UnmarshalJSON

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

func (*NullableRolesAssignRoleBody) Unset

func (v *NullableRolesAssignRoleBody) Unset()

type NullableRolesCreateRoleRequest

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

func (NullableRolesCreateRoleRequest) Get

func (NullableRolesCreateRoleRequest) IsSet

func (NullableRolesCreateRoleRequest) MarshalJSON

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

func (*NullableRolesCreateRoleRequest) Set

func (*NullableRolesCreateRoleRequest) UnmarshalJSON

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

func (*NullableRolesCreateRoleRequest) Unset

func (v *NullableRolesCreateRoleRequest) Unset()

type NullableRolesCreateRoleResponse

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

func (NullableRolesCreateRoleResponse) Get

func (NullableRolesCreateRoleResponse) IsSet

func (NullableRolesCreateRoleResponse) MarshalJSON

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

func (*NullableRolesCreateRoleResponse) Set

func (*NullableRolesCreateRoleResponse) UnmarshalJSON

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

func (*NullableRolesCreateRoleResponse) Unset

type NullableRolesDescribeRoleResponse

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

func (NullableRolesDescribeRoleResponse) Get

func (NullableRolesDescribeRoleResponse) IsSet

func (NullableRolesDescribeRoleResponse) MarshalJSON

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

func (*NullableRolesDescribeRoleResponse) Set

func (*NullableRolesDescribeRoleResponse) UnmarshalJSON

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

func (*NullableRolesDescribeRoleResponse) Unset

type NullableRolesListRolesResponse

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

func (NullableRolesListRolesResponse) Get

func (NullableRolesListRolesResponse) IsSet

func (NullableRolesListRolesResponse) MarshalJSON

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

func (*NullableRolesListRolesResponse) Set

func (*NullableRolesListRolesResponse) UnmarshalJSON

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

func (*NullableRolesListRolesResponse) Unset

func (v *NullableRolesListRolesResponse) Unset()

type NullableRolesRole

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

func NewNullableRolesRole

func NewNullableRolesRole(val *RolesRole) *NullableRolesRole

func (NullableRolesRole) Get

func (v NullableRolesRole) Get() *RolesRole

func (NullableRolesRole) IsSet

func (v NullableRolesRole) IsSet() bool

func (NullableRolesRole) MarshalJSON

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

func (*NullableRolesRole) Set

func (v *NullableRolesRole) Set(val *RolesRole)

func (*NullableRolesRole) UnmarshalJSON

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

func (*NullableRolesRole) Unset

func (v *NullableRolesRole) Unset()

type NullableRolesRoleMetadata

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

func NewNullableRolesRoleMetadata

func NewNullableRolesRoleMetadata(val *RolesRoleMetadata) *NullableRolesRoleMetadata

func (NullableRolesRoleMetadata) Get

func (NullableRolesRoleMetadata) IsSet

func (v NullableRolesRoleMetadata) IsSet() bool

func (NullableRolesRoleMetadata) MarshalJSON

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

func (*NullableRolesRoleMetadata) Set

func (*NullableRolesRoleMetadata) UnmarshalJSON

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

func (*NullableRolesRoleMetadata) Unset

func (v *NullableRolesRoleMetadata) Unset()

type NullableRolesRoleSpec

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

func NewNullableRolesRoleSpec

func NewNullableRolesRoleSpec(val *RolesRoleSpec) *NullableRolesRoleSpec

func (NullableRolesRoleSpec) Get

func (NullableRolesRoleSpec) IsSet

func (v NullableRolesRoleSpec) IsSet() bool

func (NullableRolesRoleSpec) MarshalJSON

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

func (*NullableRolesRoleSpec) Set

func (v *NullableRolesRoleSpec) Set(val *RolesRoleSpec)

func (*NullableRolesRoleSpec) UnmarshalJSON

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

func (*NullableRolesRoleSpec) Unset

func (v *NullableRolesRoleSpec) Unset()

type NullableRolesUpdateRoleBody

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

func NewNullableRolesUpdateRoleBody

func NewNullableRolesUpdateRoleBody(val *RolesUpdateRoleBody) *NullableRolesUpdateRoleBody

func (NullableRolesUpdateRoleBody) Get

func (NullableRolesUpdateRoleBody) IsSet

func (NullableRolesUpdateRoleBody) MarshalJSON

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

func (*NullableRolesUpdateRoleBody) Set

func (*NullableRolesUpdateRoleBody) UnmarshalJSON

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

func (*NullableRolesUpdateRoleBody) Unset

func (v *NullableRolesUpdateRoleBody) Unset()

type NullableRolesUpdateRoleResponse

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

func (NullableRolesUpdateRoleResponse) Get

func (NullableRolesUpdateRoleResponse) IsSet

func (NullableRolesUpdateRoleResponse) MarshalJSON

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

func (*NullableRolesUpdateRoleResponse) Set

func (*NullableRolesUpdateRoleResponse) UnmarshalJSON

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

func (*NullableRolesUpdateRoleResponse) Unset

type NullableSecretLocal

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

func NewNullableSecretLocal

func NewNullableSecretLocal(val *SecretLocal) *NullableSecretLocal

func (NullableSecretLocal) Get

func (NullableSecretLocal) IsSet

func (v NullableSecretLocal) IsSet() bool

func (NullableSecretLocal) MarshalJSON

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

func (*NullableSecretLocal) Set

func (v *NullableSecretLocal) Set(val *SecretLocal)

func (*NullableSecretLocal) UnmarshalJSON

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

func (*NullableSecretLocal) Unset

func (v *NullableSecretLocal) Unset()

type NullableSecretProvider

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

func NewNullableSecretProvider

func NewNullableSecretProvider(val *SecretProvider) *NullableSecretProvider

func (NullableSecretProvider) Get

func (NullableSecretProvider) IsSet

func (v NullableSecretProvider) IsSet() bool

func (NullableSecretProvider) MarshalJSON

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

func (*NullableSecretProvider) Set

func (*NullableSecretProvider) UnmarshalJSON

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

func (*NullableSecretProvider) Unset

func (v *NullableSecretProvider) Unset()

type NullableSecretsCreateSecretRequest

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

func (NullableSecretsCreateSecretRequest) Get

func (NullableSecretsCreateSecretRequest) IsSet

func (NullableSecretsCreateSecretRequest) MarshalJSON

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

func (*NullableSecretsCreateSecretRequest) Set

func (*NullableSecretsCreateSecretRequest) UnmarshalJSON

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

func (*NullableSecretsCreateSecretRequest) Unset

type NullableSecretsCreateSecretResponse

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

func (NullableSecretsCreateSecretResponse) Get

func (NullableSecretsCreateSecretResponse) IsSet

func (NullableSecretsCreateSecretResponse) MarshalJSON

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

func (*NullableSecretsCreateSecretResponse) Set

func (*NullableSecretsCreateSecretResponse) UnmarshalJSON

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

func (*NullableSecretsCreateSecretResponse) Unset

type NullableSecretsDescribeSecretResponse

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

func (NullableSecretsDescribeSecretResponse) Get

func (NullableSecretsDescribeSecretResponse) IsSet

func (NullableSecretsDescribeSecretResponse) MarshalJSON

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

func (*NullableSecretsDescribeSecretResponse) Set

func (*NullableSecretsDescribeSecretResponse) UnmarshalJSON

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

func (*NullableSecretsDescribeSecretResponse) Unset

type NullableSecretsListSecretsResponse

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

func (NullableSecretsListSecretsResponse) Get

func (NullableSecretsListSecretsResponse) IsSet

func (NullableSecretsListSecretsResponse) MarshalJSON

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

func (*NullableSecretsListSecretsResponse) Set

func (*NullableSecretsListSecretsResponse) UnmarshalJSON

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

func (*NullableSecretsListSecretsResponse) Unset

type NullableSecretsSecret

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

func NewNullableSecretsSecret

func NewNullableSecretsSecret(val *SecretsSecret) *NullableSecretsSecret

func (NullableSecretsSecret) Get

func (NullableSecretsSecret) IsSet

func (v NullableSecretsSecret) IsSet() bool

func (NullableSecretsSecret) MarshalJSON

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

func (*NullableSecretsSecret) Set

func (v *NullableSecretsSecret) Set(val *SecretsSecret)

func (*NullableSecretsSecret) UnmarshalJSON

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

func (*NullableSecretsSecret) Unset

func (v *NullableSecretsSecret) Unset()

type NullableSecretsSecretMetadata

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

func (NullableSecretsSecretMetadata) Get

func (NullableSecretsSecretMetadata) IsSet

func (NullableSecretsSecretMetadata) MarshalJSON

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

func (*NullableSecretsSecretMetadata) Set

func (*NullableSecretsSecretMetadata) UnmarshalJSON

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

func (*NullableSecretsSecretMetadata) Unset

func (v *NullableSecretsSecretMetadata) Unset()

type NullableSecretsSecretSpec

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

func NewNullableSecretsSecretSpec

func NewNullableSecretsSecretSpec(val *SecretsSecretSpec) *NullableSecretsSecretSpec

func (NullableSecretsSecretSpec) Get

func (NullableSecretsSecretSpec) IsSet

func (v NullableSecretsSecretSpec) IsSet() bool

func (NullableSecretsSecretSpec) MarshalJSON

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

func (*NullableSecretsSecretSpec) Set

func (*NullableSecretsSecretSpec) UnmarshalJSON

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

func (*NullableSecretsSecretSpec) Unset

func (v *NullableSecretsSecretSpec) Unset()

type NullableSecretsUpdateSecretBody

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

func (NullableSecretsUpdateSecretBody) Get

func (NullableSecretsUpdateSecretBody) IsSet

func (NullableSecretsUpdateSecretBody) MarshalJSON

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

func (*NullableSecretsUpdateSecretBody) Set

func (*NullableSecretsUpdateSecretBody) UnmarshalJSON

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

func (*NullableSecretsUpdateSecretBody) Unset

type NullableSecretsUpdateSecretResponse

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

func (NullableSecretsUpdateSecretResponse) Get

func (NullableSecretsUpdateSecretResponse) IsSet

func (NullableSecretsUpdateSecretResponse) MarshalJSON

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

func (*NullableSecretsUpdateSecretResponse) Set

func (*NullableSecretsUpdateSecretResponse) UnmarshalJSON

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

func (*NullableSecretsUpdateSecretResponse) 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 NullableSuperplaneApplicationsListApplicationsResponse

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

func (NullableSuperplaneApplicationsListApplicationsResponse) Get

func (NullableSuperplaneApplicationsListApplicationsResponse) IsSet

func (NullableSuperplaneApplicationsListApplicationsResponse) MarshalJSON

func (*NullableSuperplaneApplicationsListApplicationsResponse) Set

func (*NullableSuperplaneApplicationsListApplicationsResponse) UnmarshalJSON

func (*NullableSuperplaneApplicationsListApplicationsResponse) Unset

type NullableSuperplaneBlueprintsOutputChannel

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

func (NullableSuperplaneBlueprintsOutputChannel) Get

func (NullableSuperplaneBlueprintsOutputChannel) IsSet

func (NullableSuperplaneBlueprintsOutputChannel) MarshalJSON

func (*NullableSuperplaneBlueprintsOutputChannel) Set

func (*NullableSuperplaneBlueprintsOutputChannel) UnmarshalJSON

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

func (*NullableSuperplaneBlueprintsOutputChannel) Unset

type NullableSuperplaneBlueprintsUserRef

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

func (NullableSuperplaneBlueprintsUserRef) Get

func (NullableSuperplaneBlueprintsUserRef) IsSet

func (NullableSuperplaneBlueprintsUserRef) MarshalJSON

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

func (*NullableSuperplaneBlueprintsUserRef) Set

func (*NullableSuperplaneBlueprintsUserRef) UnmarshalJSON

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

func (*NullableSuperplaneBlueprintsUserRef) Unset

type NullableSuperplaneComponentsOutputChannel

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

func (NullableSuperplaneComponentsOutputChannel) Get

func (NullableSuperplaneComponentsOutputChannel) IsSet

func (NullableSuperplaneComponentsOutputChannel) MarshalJSON

func (*NullableSuperplaneComponentsOutputChannel) Set

func (*NullableSuperplaneComponentsOutputChannel) UnmarshalJSON

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

func (*NullableSuperplaneComponentsOutputChannel) Unset

type NullableSuperplaneMeUser

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

func NewNullableSuperplaneMeUser

func NewNullableSuperplaneMeUser(val *SuperplaneMeUser) *NullableSuperplaneMeUser

func (NullableSuperplaneMeUser) Get

func (NullableSuperplaneMeUser) IsSet

func (v NullableSuperplaneMeUser) IsSet() bool

func (NullableSuperplaneMeUser) MarshalJSON

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

func (*NullableSuperplaneMeUser) Set

func (*NullableSuperplaneMeUser) UnmarshalJSON

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

func (*NullableSuperplaneMeUser) Unset

func (v *NullableSuperplaneMeUser) Unset()

type NullableSuperplaneOrganizationsListApplicationsResponse

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

func (NullableSuperplaneOrganizationsListApplicationsResponse) Get

func (NullableSuperplaneOrganizationsListApplicationsResponse) IsSet

func (NullableSuperplaneOrganizationsListApplicationsResponse) MarshalJSON

func (*NullableSuperplaneOrganizationsListApplicationsResponse) Set

func (*NullableSuperplaneOrganizationsListApplicationsResponse) UnmarshalJSON

func (*NullableSuperplaneOrganizationsListApplicationsResponse) Unset

type NullableSuperplaneUsersUser

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

func NewNullableSuperplaneUsersUser

func NewNullableSuperplaneUsersUser(val *SuperplaneUsersUser) *NullableSuperplaneUsersUser

func (NullableSuperplaneUsersUser) Get

func (NullableSuperplaneUsersUser) IsSet

func (NullableSuperplaneUsersUser) MarshalJSON

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

func (*NullableSuperplaneUsersUser) Set

func (*NullableSuperplaneUsersUser) UnmarshalJSON

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

func (*NullableSuperplaneUsersUser) Unset

func (v *NullableSuperplaneUsersUser) Unset()

type NullableSuperplaneWorkflowsUserRef

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

func (NullableSuperplaneWorkflowsUserRef) Get

func (NullableSuperplaneWorkflowsUserRef) IsSet

func (NullableSuperplaneWorkflowsUserRef) MarshalJSON

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

func (*NullableSuperplaneWorkflowsUserRef) Set

func (*NullableSuperplaneWorkflowsUserRef) UnmarshalJSON

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

func (*NullableSuperplaneWorkflowsUserRef) Unset

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTriggersDescribeTriggerResponse

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

func (NullableTriggersDescribeTriggerResponse) Get

func (NullableTriggersDescribeTriggerResponse) IsSet

func (NullableTriggersDescribeTriggerResponse) MarshalJSON

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

func (*NullableTriggersDescribeTriggerResponse) Set

func (*NullableTriggersDescribeTriggerResponse) UnmarshalJSON

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

func (*NullableTriggersDescribeTriggerResponse) Unset

type NullableTriggersListTriggersResponse

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

func (NullableTriggersListTriggersResponse) Get

func (NullableTriggersListTriggersResponse) IsSet

func (NullableTriggersListTriggersResponse) MarshalJSON

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

func (*NullableTriggersListTriggersResponse) Set

func (*NullableTriggersListTriggersResponse) UnmarshalJSON

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

func (*NullableTriggersListTriggersResponse) Unset

type NullableTriggersTrigger

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

func NewNullableTriggersTrigger

func NewNullableTriggersTrigger(val *TriggersTrigger) *NullableTriggersTrigger

func (NullableTriggersTrigger) Get

func (NullableTriggersTrigger) IsSet

func (v NullableTriggersTrigger) IsSet() bool

func (NullableTriggersTrigger) MarshalJSON

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

func (*NullableTriggersTrigger) Set

func (*NullableTriggersTrigger) UnmarshalJSON

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

func (*NullableTriggersTrigger) Unset

func (v *NullableTriggersTrigger) Unset()

type NullableUsersAccountProvider

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

func NewNullableUsersAccountProvider

func NewNullableUsersAccountProvider(val *UsersAccountProvider) *NullableUsersAccountProvider

func (NullableUsersAccountProvider) Get

func (NullableUsersAccountProvider) IsSet

func (NullableUsersAccountProvider) MarshalJSON

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

func (*NullableUsersAccountProvider) Set

func (*NullableUsersAccountProvider) UnmarshalJSON

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

func (*NullableUsersAccountProvider) Unset

func (v *NullableUsersAccountProvider) Unset()

type NullableUsersListUserPermissionsResponse

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

func (NullableUsersListUserPermissionsResponse) Get

func (NullableUsersListUserPermissionsResponse) IsSet

func (NullableUsersListUserPermissionsResponse) MarshalJSON

func (*NullableUsersListUserPermissionsResponse) Set

func (*NullableUsersListUserPermissionsResponse) UnmarshalJSON

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

func (*NullableUsersListUserPermissionsResponse) Unset

type NullableUsersListUserRolesResponse

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

func (NullableUsersListUserRolesResponse) Get

func (NullableUsersListUserRolesResponse) IsSet

func (NullableUsersListUserRolesResponse) MarshalJSON

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

func (*NullableUsersListUserRolesResponse) Set

func (*NullableUsersListUserRolesResponse) UnmarshalJSON

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

func (*NullableUsersListUserRolesResponse) Unset

type NullableUsersListUsersResponse

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

func (NullableUsersListUsersResponse) Get

func (NullableUsersListUsersResponse) IsSet

func (NullableUsersListUsersResponse) MarshalJSON

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

func (*NullableUsersListUsersResponse) Set

func (*NullableUsersListUsersResponse) UnmarshalJSON

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

func (*NullableUsersListUsersResponse) Unset

func (v *NullableUsersListUsersResponse) Unset()

type NullableUsersUserMetadata

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

func NewNullableUsersUserMetadata

func NewNullableUsersUserMetadata(val *UsersUserMetadata) *NullableUsersUserMetadata

func (NullableUsersUserMetadata) Get

func (NullableUsersUserMetadata) IsSet

func (v NullableUsersUserMetadata) IsSet() bool

func (NullableUsersUserMetadata) MarshalJSON

func (v NullableUsersUserMetadata) MarshalJSON() ([]byte, error)

func (*NullableUsersUserMetadata) Set

func (*NullableUsersUserMetadata) UnmarshalJSON

func (v *NullableUsersUserMetadata) UnmarshalJSON(src []byte) error

func (*NullableUsersUserMetadata) Unset

func (v *NullableUsersUserMetadata) Unset()

type NullableUsersUserRoleAssignment

type NullableUsersUserRoleAssignment struct {
	// contains filtered or unexported fields
}

func (NullableUsersUserRoleAssignment) Get

func (NullableUsersUserRoleAssignment) IsSet

func (NullableUsersUserRoleAssignment) MarshalJSON

func (v NullableUsersUserRoleAssignment) MarshalJSON() ([]byte, error)

func (*NullableUsersUserRoleAssignment) Set

func (*NullableUsersUserRoleAssignment) UnmarshalJSON

func (v *NullableUsersUserRoleAssignment) UnmarshalJSON(src []byte) error

func (*NullableUsersUserRoleAssignment) Unset

type NullableUsersUserSpec

type NullableUsersUserSpec struct {
	// contains filtered or unexported fields
}

func NewNullableUsersUserSpec

func NewNullableUsersUserSpec(val *UsersUserSpec) *NullableUsersUserSpec

func (NullableUsersUserSpec) Get

func (NullableUsersUserSpec) IsSet

func (v NullableUsersUserSpec) IsSet() bool

func (NullableUsersUserSpec) MarshalJSON

func (v NullableUsersUserSpec) MarshalJSON() ([]byte, error)

func (*NullableUsersUserSpec) Set

func (v *NullableUsersUserSpec) Set(val *UsersUserSpec)

func (*NullableUsersUserSpec) UnmarshalJSON

func (v *NullableUsersUserSpec) UnmarshalJSON(src []byte) error

func (*NullableUsersUserSpec) Unset

func (v *NullableUsersUserSpec) Unset()

type NullableUsersUserStatus

type NullableUsersUserStatus struct {
	// contains filtered or unexported fields
}

func NewNullableUsersUserStatus

func NewNullableUsersUserStatus(val *UsersUserStatus) *NullableUsersUserStatus

func (NullableUsersUserStatus) Get

func (NullableUsersUserStatus) IsSet

func (v NullableUsersUserStatus) IsSet() bool

func (NullableUsersUserStatus) MarshalJSON

func (v NullableUsersUserStatus) MarshalJSON() ([]byte, error)

func (*NullableUsersUserStatus) Set

func (*NullableUsersUserStatus) UnmarshalJSON

func (v *NullableUsersUserStatus) UnmarshalJSON(src []byte) error

func (*NullableUsersUserStatus) Unset

func (v *NullableUsersUserStatus) Unset()

type NullableWidgetsDescribeWidgetResponse added in v0.0.18

type NullableWidgetsDescribeWidgetResponse struct {
	// contains filtered or unexported fields
}

func NewNullableWidgetsDescribeWidgetResponse added in v0.0.18

func NewNullableWidgetsDescribeWidgetResponse(val *WidgetsDescribeWidgetResponse) *NullableWidgetsDescribeWidgetResponse

func (NullableWidgetsDescribeWidgetResponse) Get added in v0.0.18

func (NullableWidgetsDescribeWidgetResponse) IsSet added in v0.0.18

func (NullableWidgetsDescribeWidgetResponse) MarshalJSON added in v0.0.18

func (v NullableWidgetsDescribeWidgetResponse) MarshalJSON() ([]byte, error)

func (*NullableWidgetsDescribeWidgetResponse) Set added in v0.0.18

func (*NullableWidgetsDescribeWidgetResponse) UnmarshalJSON added in v0.0.18

func (v *NullableWidgetsDescribeWidgetResponse) UnmarshalJSON(src []byte) error

func (*NullableWidgetsDescribeWidgetResponse) Unset added in v0.0.18

type NullableWidgetsListWidgetsResponse added in v0.0.18

type NullableWidgetsListWidgetsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableWidgetsListWidgetsResponse added in v0.0.18

func NewNullableWidgetsListWidgetsResponse(val *WidgetsListWidgetsResponse) *NullableWidgetsListWidgetsResponse

func (NullableWidgetsListWidgetsResponse) Get added in v0.0.18

func (NullableWidgetsListWidgetsResponse) IsSet added in v0.0.18

func (NullableWidgetsListWidgetsResponse) MarshalJSON added in v0.0.18

func (v NullableWidgetsListWidgetsResponse) MarshalJSON() ([]byte, error)

func (*NullableWidgetsListWidgetsResponse) Set added in v0.0.18

func (*NullableWidgetsListWidgetsResponse) UnmarshalJSON added in v0.0.18

func (v *NullableWidgetsListWidgetsResponse) UnmarshalJSON(src []byte) error

func (*NullableWidgetsListWidgetsResponse) Unset added in v0.0.18

type NullableWidgetsWidget added in v0.0.18

type NullableWidgetsWidget struct {
	// contains filtered or unexported fields
}

func NewNullableWidgetsWidget added in v0.0.18

func NewNullableWidgetsWidget(val *WidgetsWidget) *NullableWidgetsWidget

func (NullableWidgetsWidget) Get added in v0.0.18

func (NullableWidgetsWidget) IsSet added in v0.0.18

func (v NullableWidgetsWidget) IsSet() bool

func (NullableWidgetsWidget) MarshalJSON added in v0.0.18

func (v NullableWidgetsWidget) MarshalJSON() ([]byte, error)

func (*NullableWidgetsWidget) Set added in v0.0.18

func (v *NullableWidgetsWidget) Set(val *WidgetsWidget)

func (*NullableWidgetsWidget) UnmarshalJSON added in v0.0.18

func (v *NullableWidgetsWidget) UnmarshalJSON(src []byte) error

func (*NullableWidgetsWidget) Unset added in v0.0.18

func (v *NullableWidgetsWidget) Unset()

type NullableWorkflowNodeExecutionResult

type NullableWorkflowNodeExecutionResult struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowNodeExecutionResult) Get

func (NullableWorkflowNodeExecutionResult) IsSet

func (NullableWorkflowNodeExecutionResult) MarshalJSON

func (v NullableWorkflowNodeExecutionResult) MarshalJSON() ([]byte, error)

func (*NullableWorkflowNodeExecutionResult) Set

func (*NullableWorkflowNodeExecutionResult) UnmarshalJSON

func (v *NullableWorkflowNodeExecutionResult) UnmarshalJSON(src []byte) error

func (*NullableWorkflowNodeExecutionResult) Unset

type NullableWorkflowNodeExecutionResultReason

type NullableWorkflowNodeExecutionResultReason struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowNodeExecutionResultReason) Get

func (NullableWorkflowNodeExecutionResultReason) IsSet

func (NullableWorkflowNodeExecutionResultReason) MarshalJSON

func (*NullableWorkflowNodeExecutionResultReason) Set

func (*NullableWorkflowNodeExecutionResultReason) UnmarshalJSON

func (v *NullableWorkflowNodeExecutionResultReason) UnmarshalJSON(src []byte) error

func (*NullableWorkflowNodeExecutionResultReason) Unset

type NullableWorkflowNodeExecutionState

type NullableWorkflowNodeExecutionState struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowNodeExecutionState) Get

func (NullableWorkflowNodeExecutionState) IsSet

func (NullableWorkflowNodeExecutionState) MarshalJSON

func (v NullableWorkflowNodeExecutionState) MarshalJSON() ([]byte, error)

func (*NullableWorkflowNodeExecutionState) Set

func (*NullableWorkflowNodeExecutionState) UnmarshalJSON

func (v *NullableWorkflowNodeExecutionState) UnmarshalJSON(src []byte) error

func (*NullableWorkflowNodeExecutionState) Unset

type NullableWorkflowsCreateWorkflowRequest

type NullableWorkflowsCreateWorkflowRequest struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsCreateWorkflowRequest) Get

func (NullableWorkflowsCreateWorkflowRequest) IsSet

func (NullableWorkflowsCreateWorkflowRequest) MarshalJSON

func (v NullableWorkflowsCreateWorkflowRequest) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsCreateWorkflowRequest) Set

func (*NullableWorkflowsCreateWorkflowRequest) UnmarshalJSON

func (v *NullableWorkflowsCreateWorkflowRequest) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsCreateWorkflowRequest) Unset

type NullableWorkflowsCreateWorkflowResponse

type NullableWorkflowsCreateWorkflowResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsCreateWorkflowResponse) Get

func (NullableWorkflowsCreateWorkflowResponse) IsSet

func (NullableWorkflowsCreateWorkflowResponse) MarshalJSON

func (v NullableWorkflowsCreateWorkflowResponse) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsCreateWorkflowResponse) Set

func (*NullableWorkflowsCreateWorkflowResponse) UnmarshalJSON

func (v *NullableWorkflowsCreateWorkflowResponse) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsCreateWorkflowResponse) Unset

type NullableWorkflowsDescribeWorkflowResponse

type NullableWorkflowsDescribeWorkflowResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsDescribeWorkflowResponse) Get

func (NullableWorkflowsDescribeWorkflowResponse) IsSet

func (NullableWorkflowsDescribeWorkflowResponse) MarshalJSON

func (*NullableWorkflowsDescribeWorkflowResponse) Set

func (*NullableWorkflowsDescribeWorkflowResponse) UnmarshalJSON

func (v *NullableWorkflowsDescribeWorkflowResponse) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsDescribeWorkflowResponse) Unset

type NullableWorkflowsEmitNodeEventBody

type NullableWorkflowsEmitNodeEventBody struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsEmitNodeEventBody) Get

func (NullableWorkflowsEmitNodeEventBody) IsSet

func (NullableWorkflowsEmitNodeEventBody) MarshalJSON

func (v NullableWorkflowsEmitNodeEventBody) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsEmitNodeEventBody) Set

func (*NullableWorkflowsEmitNodeEventBody) UnmarshalJSON

func (v *NullableWorkflowsEmitNodeEventBody) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsEmitNodeEventBody) Unset

type NullableWorkflowsEmitNodeEventResponse

type NullableWorkflowsEmitNodeEventResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsEmitNodeEventResponse) Get

func (NullableWorkflowsEmitNodeEventResponse) IsSet

func (NullableWorkflowsEmitNodeEventResponse) MarshalJSON

func (v NullableWorkflowsEmitNodeEventResponse) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsEmitNodeEventResponse) Set

func (*NullableWorkflowsEmitNodeEventResponse) UnmarshalJSON

func (v *NullableWorkflowsEmitNodeEventResponse) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsEmitNodeEventResponse) Unset

type NullableWorkflowsInvokeNodeExecutionActionBody

type NullableWorkflowsInvokeNodeExecutionActionBody struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsInvokeNodeExecutionActionBody) Get

func (NullableWorkflowsInvokeNodeExecutionActionBody) IsSet

func (NullableWorkflowsInvokeNodeExecutionActionBody) MarshalJSON

func (*NullableWorkflowsInvokeNodeExecutionActionBody) Set

func (*NullableWorkflowsInvokeNodeExecutionActionBody) UnmarshalJSON

func (*NullableWorkflowsInvokeNodeExecutionActionBody) Unset

type NullableWorkflowsInvokeNodeTriggerActionBody added in v0.0.18

type NullableWorkflowsInvokeNodeTriggerActionBody struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflowsInvokeNodeTriggerActionBody added in v0.0.18

func NewNullableWorkflowsInvokeNodeTriggerActionBody(val *WorkflowsInvokeNodeTriggerActionBody) *NullableWorkflowsInvokeNodeTriggerActionBody

func (NullableWorkflowsInvokeNodeTriggerActionBody) Get added in v0.0.18

func (NullableWorkflowsInvokeNodeTriggerActionBody) IsSet added in v0.0.18

func (NullableWorkflowsInvokeNodeTriggerActionBody) MarshalJSON added in v0.0.18

func (*NullableWorkflowsInvokeNodeTriggerActionBody) Set added in v0.0.18

func (*NullableWorkflowsInvokeNodeTriggerActionBody) UnmarshalJSON added in v0.0.18

func (*NullableWorkflowsInvokeNodeTriggerActionBody) Unset added in v0.0.18

type NullableWorkflowsInvokeNodeTriggerActionResponse added in v0.0.18

type NullableWorkflowsInvokeNodeTriggerActionResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsInvokeNodeTriggerActionResponse) Get added in v0.0.18

func (NullableWorkflowsInvokeNodeTriggerActionResponse) IsSet added in v0.0.18

func (NullableWorkflowsInvokeNodeTriggerActionResponse) MarshalJSON added in v0.0.18

func (*NullableWorkflowsInvokeNodeTriggerActionResponse) Set added in v0.0.18

func (*NullableWorkflowsInvokeNodeTriggerActionResponse) UnmarshalJSON added in v0.0.18

func (*NullableWorkflowsInvokeNodeTriggerActionResponse) Unset added in v0.0.18

type NullableWorkflowsListChildExecutionsResponse

type NullableWorkflowsListChildExecutionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsListChildExecutionsResponse) Get

func (NullableWorkflowsListChildExecutionsResponse) IsSet

func (NullableWorkflowsListChildExecutionsResponse) MarshalJSON

func (*NullableWorkflowsListChildExecutionsResponse) Set

func (*NullableWorkflowsListChildExecutionsResponse) UnmarshalJSON

func (*NullableWorkflowsListChildExecutionsResponse) Unset

type NullableWorkflowsListEventExecutionsResponse

type NullableWorkflowsListEventExecutionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsListEventExecutionsResponse) Get

func (NullableWorkflowsListEventExecutionsResponse) IsSet

func (NullableWorkflowsListEventExecutionsResponse) MarshalJSON

func (*NullableWorkflowsListEventExecutionsResponse) Set

func (*NullableWorkflowsListEventExecutionsResponse) UnmarshalJSON

func (*NullableWorkflowsListEventExecutionsResponse) Unset

type NullableWorkflowsListNodeEventsResponse

type NullableWorkflowsListNodeEventsResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsListNodeEventsResponse) Get

func (NullableWorkflowsListNodeEventsResponse) IsSet

func (NullableWorkflowsListNodeEventsResponse) MarshalJSON

func (v NullableWorkflowsListNodeEventsResponse) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsListNodeEventsResponse) Set

func (*NullableWorkflowsListNodeEventsResponse) UnmarshalJSON

func (v *NullableWorkflowsListNodeEventsResponse) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsListNodeEventsResponse) Unset

type NullableWorkflowsListNodeExecutionsResponse

type NullableWorkflowsListNodeExecutionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsListNodeExecutionsResponse) Get

func (NullableWorkflowsListNodeExecutionsResponse) IsSet

func (NullableWorkflowsListNodeExecutionsResponse) MarshalJSON

func (*NullableWorkflowsListNodeExecutionsResponse) Set

func (*NullableWorkflowsListNodeExecutionsResponse) UnmarshalJSON

func (v *NullableWorkflowsListNodeExecutionsResponse) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsListNodeExecutionsResponse) Unset

type NullableWorkflowsListNodeQueueItemsResponse

type NullableWorkflowsListNodeQueueItemsResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsListNodeQueueItemsResponse) Get

func (NullableWorkflowsListNodeQueueItemsResponse) IsSet

func (NullableWorkflowsListNodeQueueItemsResponse) MarshalJSON

func (*NullableWorkflowsListNodeQueueItemsResponse) Set

func (*NullableWorkflowsListNodeQueueItemsResponse) UnmarshalJSON

func (v *NullableWorkflowsListNodeQueueItemsResponse) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsListNodeQueueItemsResponse) Unset

type NullableWorkflowsListWorkflowEventsResponse

type NullableWorkflowsListWorkflowEventsResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsListWorkflowEventsResponse) Get

func (NullableWorkflowsListWorkflowEventsResponse) IsSet

func (NullableWorkflowsListWorkflowEventsResponse) MarshalJSON

func (*NullableWorkflowsListWorkflowEventsResponse) Set

func (*NullableWorkflowsListWorkflowEventsResponse) UnmarshalJSON

func (v *NullableWorkflowsListWorkflowEventsResponse) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsListWorkflowEventsResponse) Unset

type NullableWorkflowsListWorkflowsResponse

type NullableWorkflowsListWorkflowsResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsListWorkflowsResponse) Get

func (NullableWorkflowsListWorkflowsResponse) IsSet

func (NullableWorkflowsListWorkflowsResponse) MarshalJSON

func (v NullableWorkflowsListWorkflowsResponse) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsListWorkflowsResponse) Set

func (*NullableWorkflowsListWorkflowsResponse) UnmarshalJSON

func (v *NullableWorkflowsListWorkflowsResponse) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsListWorkflowsResponse) Unset

type NullableWorkflowsUpdateWorkflowBody

type NullableWorkflowsUpdateWorkflowBody struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsUpdateWorkflowBody) Get

func (NullableWorkflowsUpdateWorkflowBody) IsSet

func (NullableWorkflowsUpdateWorkflowBody) MarshalJSON

func (v NullableWorkflowsUpdateWorkflowBody) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsUpdateWorkflowBody) Set

func (*NullableWorkflowsUpdateWorkflowBody) UnmarshalJSON

func (v *NullableWorkflowsUpdateWorkflowBody) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsUpdateWorkflowBody) Unset

type NullableWorkflowsUpdateWorkflowResponse

type NullableWorkflowsUpdateWorkflowResponse struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsUpdateWorkflowResponse) Get

func (NullableWorkflowsUpdateWorkflowResponse) IsSet

func (NullableWorkflowsUpdateWorkflowResponse) MarshalJSON

func (v NullableWorkflowsUpdateWorkflowResponse) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsUpdateWorkflowResponse) Set

func (*NullableWorkflowsUpdateWorkflowResponse) UnmarshalJSON

func (v *NullableWorkflowsUpdateWorkflowResponse) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsUpdateWorkflowResponse) Unset

type NullableWorkflowsWorkflow

type NullableWorkflowsWorkflow struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflowsWorkflow

func NewNullableWorkflowsWorkflow(val *WorkflowsWorkflow) *NullableWorkflowsWorkflow

func (NullableWorkflowsWorkflow) Get

func (NullableWorkflowsWorkflow) IsSet

func (v NullableWorkflowsWorkflow) IsSet() bool

func (NullableWorkflowsWorkflow) MarshalJSON

func (v NullableWorkflowsWorkflow) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsWorkflow) Set

func (*NullableWorkflowsWorkflow) UnmarshalJSON

func (v *NullableWorkflowsWorkflow) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsWorkflow) Unset

func (v *NullableWorkflowsWorkflow) Unset()

type NullableWorkflowsWorkflowEvent

type NullableWorkflowsWorkflowEvent struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsWorkflowEvent) Get

func (NullableWorkflowsWorkflowEvent) IsSet

func (NullableWorkflowsWorkflowEvent) MarshalJSON

func (v NullableWorkflowsWorkflowEvent) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsWorkflowEvent) Set

func (*NullableWorkflowsWorkflowEvent) UnmarshalJSON

func (v *NullableWorkflowsWorkflowEvent) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsWorkflowEvent) Unset

func (v *NullableWorkflowsWorkflowEvent) Unset()

type NullableWorkflowsWorkflowEventWithExecutions added in v0.0.40

type NullableWorkflowsWorkflowEventWithExecutions struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflowsWorkflowEventWithExecutions added in v0.0.40

func NewNullableWorkflowsWorkflowEventWithExecutions(val *WorkflowsWorkflowEventWithExecutions) *NullableWorkflowsWorkflowEventWithExecutions

func (NullableWorkflowsWorkflowEventWithExecutions) Get added in v0.0.40

func (NullableWorkflowsWorkflowEventWithExecutions) IsSet added in v0.0.40

func (NullableWorkflowsWorkflowEventWithExecutions) MarshalJSON added in v0.0.40

func (*NullableWorkflowsWorkflowEventWithExecutions) Set added in v0.0.40

func (*NullableWorkflowsWorkflowEventWithExecutions) UnmarshalJSON added in v0.0.40

func (*NullableWorkflowsWorkflowEventWithExecutions) Unset added in v0.0.40

type NullableWorkflowsWorkflowMetadata

type NullableWorkflowsWorkflowMetadata struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsWorkflowMetadata) Get

func (NullableWorkflowsWorkflowMetadata) IsSet

func (NullableWorkflowsWorkflowMetadata) MarshalJSON

func (v NullableWorkflowsWorkflowMetadata) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsWorkflowMetadata) Set

func (*NullableWorkflowsWorkflowMetadata) UnmarshalJSON

func (v *NullableWorkflowsWorkflowMetadata) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsWorkflowMetadata) Unset

type NullableWorkflowsWorkflowNodeExecution

type NullableWorkflowsWorkflowNodeExecution struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsWorkflowNodeExecution) Get

func (NullableWorkflowsWorkflowNodeExecution) IsSet

func (NullableWorkflowsWorkflowNodeExecution) MarshalJSON

func (v NullableWorkflowsWorkflowNodeExecution) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsWorkflowNodeExecution) Set

func (*NullableWorkflowsWorkflowNodeExecution) UnmarshalJSON

func (v *NullableWorkflowsWorkflowNodeExecution) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsWorkflowNodeExecution) Unset

type NullableWorkflowsWorkflowNodeQueueItem

type NullableWorkflowsWorkflowNodeQueueItem struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsWorkflowNodeQueueItem) Get

func (NullableWorkflowsWorkflowNodeQueueItem) IsSet

func (NullableWorkflowsWorkflowNodeQueueItem) MarshalJSON

func (v NullableWorkflowsWorkflowNodeQueueItem) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsWorkflowNodeQueueItem) Set

func (*NullableWorkflowsWorkflowNodeQueueItem) UnmarshalJSON

func (v *NullableWorkflowsWorkflowNodeQueueItem) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsWorkflowNodeQueueItem) Unset

type NullableWorkflowsWorkflowSpec

type NullableWorkflowsWorkflowSpec struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsWorkflowSpec) Get

func (NullableWorkflowsWorkflowSpec) IsSet

func (NullableWorkflowsWorkflowSpec) MarshalJSON

func (v NullableWorkflowsWorkflowSpec) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsWorkflowSpec) Set

func (*NullableWorkflowsWorkflowSpec) UnmarshalJSON

func (v *NullableWorkflowsWorkflowSpec) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsWorkflowSpec) Unset

func (v *NullableWorkflowsWorkflowSpec) Unset()

type NullableWorkflowsWorkflowStatus

type NullableWorkflowsWorkflowStatus struct {
	// contains filtered or unexported fields
}

func (NullableWorkflowsWorkflowStatus) Get

func (NullableWorkflowsWorkflowStatus) IsSet

func (NullableWorkflowsWorkflowStatus) MarshalJSON

func (v NullableWorkflowsWorkflowStatus) MarshalJSON() ([]byte, error)

func (*NullableWorkflowsWorkflowStatus) Set

func (*NullableWorkflowsWorkflowStatus) UnmarshalJSON

func (v *NullableWorkflowsWorkflowStatus) UnmarshalJSON(src []byte) error

func (*NullableWorkflowsWorkflowStatus) Unset

type OrganizationAPIService

type OrganizationAPIService service

OrganizationAPIService OrganizationAPI service

func (a *OrganizationAPIService) OrganizationsAcceptInviteLink(ctx context.Context, token string) ApiOrganizationsAcceptInviteLinkRequest

OrganizationsAcceptInviteLink Accept an invite link

Accepts an organization invite link for the authenticated account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param token
@return ApiOrganizationsAcceptInviteLinkRequest

func (*OrganizationAPIService) OrganizationsAcceptInviteLinkExecute added in v0.0.43

func (a *OrganizationAPIService) OrganizationsAcceptInviteLinkExecute(r ApiOrganizationsAcceptInviteLinkRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OrganizationAPIService) OrganizationsCreateInvitation

func (a *OrganizationAPIService) OrganizationsCreateInvitation(ctx context.Context, id string) ApiOrganizationsCreateInvitationRequest

OrganizationsCreateInvitation Create an organization invitation

Invites a user to join an organization by email

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiOrganizationsCreateInvitationRequest

func (*OrganizationAPIService) OrganizationsCreateInvitationExecute

Execute executes the request

@return OrganizationsCreateInvitationResponse

func (*OrganizationAPIService) OrganizationsDeleteOrganization

func (a *OrganizationAPIService) OrganizationsDeleteOrganization(ctx context.Context, id string) ApiOrganizationsDeleteOrganizationRequest

OrganizationsDeleteOrganization Delete an organization

Deletes the specified organization (can be referenced by ID or name)

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiOrganizationsDeleteOrganizationRequest

func (*OrganizationAPIService) OrganizationsDeleteOrganizationExecute

func (a *OrganizationAPIService) OrganizationsDeleteOrganizationExecute(r ApiOrganizationsDeleteOrganizationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OrganizationAPIService) OrganizationsDescribeApplication

func (a *OrganizationAPIService) OrganizationsDescribeApplication(ctx context.Context, id string, installationId string) ApiOrganizationsDescribeApplicationRequest

OrganizationsDescribeApplication Describe an application in an organization

Returns details of a specific application in an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@param installationId
@return ApiOrganizationsDescribeApplicationRequest

func (*OrganizationAPIService) OrganizationsDescribeApplicationExecute

Execute executes the request

@return OrganizationsDescribeApplicationResponse

func (*OrganizationAPIService) OrganizationsDescribeOrganization

func (a *OrganizationAPIService) OrganizationsDescribeOrganization(ctx context.Context, id string) ApiOrganizationsDescribeOrganizationRequest

OrganizationsDescribeOrganization Get organization details

Returns the details of a specific organization (can be referenced by ID or name)

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiOrganizationsDescribeOrganizationRequest

func (*OrganizationAPIService) OrganizationsDescribeOrganizationExecute

Execute executes the request

@return OrganizationsDescribeOrganizationResponse
func (a *OrganizationAPIService) OrganizationsGetInviteLink(ctx context.Context, id string) ApiOrganizationsGetInviteLinkRequest

OrganizationsGetInviteLink Get an organization invite link

Returns the invite link for an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiOrganizationsGetInviteLinkRequest

func (*OrganizationAPIService) OrganizationsGetInviteLinkExecute added in v0.0.43

Execute executes the request

@return OrganizationsGetInviteLinkResponse

func (*OrganizationAPIService) OrganizationsInstallApplication

func (a *OrganizationAPIService) OrganizationsInstallApplication(ctx context.Context, id string) ApiOrganizationsInstallApplicationRequest

OrganizationsInstallApplication Install application on organization

Install an application on an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiOrganizationsInstallApplicationRequest

func (*OrganizationAPIService) OrganizationsInstallApplicationExecute

Execute executes the request

@return OrganizationsInstallApplicationResponse

func (*OrganizationAPIService) OrganizationsListApplicationResources added in v0.0.43

func (a *OrganizationAPIService) OrganizationsListApplicationResources(ctx context.Context, id string, installationId string) ApiOrganizationsListApplicationResourcesRequest

OrganizationsListApplicationResources List application resources

Lists resources for an application installation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@param installationId
@return ApiOrganizationsListApplicationResourcesRequest

func (*OrganizationAPIService) OrganizationsListApplicationResourcesExecute added in v0.0.43

Execute executes the request

@return OrganizationsListApplicationResourcesResponse

func (*OrganizationAPIService) OrganizationsListApplications

func (a *OrganizationAPIService) OrganizationsListApplications(ctx context.Context, id string) ApiOrganizationsListApplicationsRequest

OrganizationsListApplications List applications in an organization

Returns a list of applications in an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiOrganizationsListApplicationsRequest

func (*OrganizationAPIService) OrganizationsListApplicationsExecute

Execute executes the request

@return SuperplaneOrganizationsListApplicationsResponse

func (*OrganizationAPIService) OrganizationsListInvitations

func (a *OrganizationAPIService) OrganizationsListInvitations(ctx context.Context, id string) ApiOrganizationsListInvitationsRequest

OrganizationsListInvitations List organization invitations

Returns pending invitations for an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiOrganizationsListInvitationsRequest

func (*OrganizationAPIService) OrganizationsListInvitationsExecute

Execute executes the request

@return OrganizationsListInvitationsResponse

func (*OrganizationAPIService) OrganizationsRemoveInvitation

func (a *OrganizationAPIService) OrganizationsRemoveInvitation(ctx context.Context, id string, invitationId string) ApiOrganizationsRemoveInvitationRequest

OrganizationsRemoveInvitation Remove an organization invitation

Removes an organization invitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@param invitationId
@return ApiOrganizationsRemoveInvitationRequest

func (*OrganizationAPIService) OrganizationsRemoveInvitationExecute

func (a *OrganizationAPIService) OrganizationsRemoveInvitationExecute(r ApiOrganizationsRemoveInvitationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OrganizationAPIService) OrganizationsRemoveUser

func (a *OrganizationAPIService) OrganizationsRemoveUser(ctx context.Context, id string, userId string) ApiOrganizationsRemoveUserRequest

OrganizationsRemoveUser Remove a user from an organization

Removes a user from an organization (can be referenced by ID or name)

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@param userId
@return ApiOrganizationsRemoveUserRequest

func (*OrganizationAPIService) OrganizationsRemoveUserExecute

func (a *OrganizationAPIService) OrganizationsRemoveUserExecute(r ApiOrganizationsRemoveUserRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}
func (a *OrganizationAPIService) OrganizationsResetInviteLink(ctx context.Context, id string) ApiOrganizationsResetInviteLinkRequest

OrganizationsResetInviteLink Reset an organization invite link

Generates a new invite link token for an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiOrganizationsResetInviteLinkRequest

func (*OrganizationAPIService) OrganizationsResetInviteLinkExecute added in v0.0.43

Execute executes the request

@return OrganizationsResetInviteLinkResponse

func (*OrganizationAPIService) OrganizationsUninstallApplication

func (a *OrganizationAPIService) OrganizationsUninstallApplication(ctx context.Context, id string, installationId string) ApiOrganizationsUninstallApplicationRequest

OrganizationsUninstallApplication Uninstall application

Uninstalls an application from an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@param installationId
@return ApiOrganizationsUninstallApplicationRequest

func (*OrganizationAPIService) OrganizationsUninstallApplicationExecute

func (a *OrganizationAPIService) OrganizationsUninstallApplicationExecute(r ApiOrganizationsUninstallApplicationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OrganizationAPIService) OrganizationsUpdateApplication

func (a *OrganizationAPIService) OrganizationsUpdateApplication(ctx context.Context, id string, installationId string) ApiOrganizationsUpdateApplicationRequest

OrganizationsUpdateApplication Update application installation

Updates the configuration of an installed application

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@param installationId
@return ApiOrganizationsUpdateApplicationRequest

func (*OrganizationAPIService) OrganizationsUpdateApplicationExecute

Execute executes the request

@return OrganizationsUpdateApplicationResponse
func (a *OrganizationAPIService) OrganizationsUpdateInviteLink(ctx context.Context, id string) ApiOrganizationsUpdateInviteLinkRequest

OrganizationsUpdateInviteLink Update an organization invite link

Enables or disables the invite link for an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiOrganizationsUpdateInviteLinkRequest

func (*OrganizationAPIService) OrganizationsUpdateInviteLinkExecute added in v0.0.43

Execute executes the request

@return OrganizationsUpdateInviteLinkResponse

func (*OrganizationAPIService) OrganizationsUpdateOrganization

func (a *OrganizationAPIService) OrganizationsUpdateOrganization(ctx context.Context, id string) ApiOrganizationsUpdateOrganizationRequest

OrganizationsUpdateOrganization Update an organization

Updates the specified organization (can be referenced by ID or name)

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiOrganizationsUpdateOrganizationRequest

func (*OrganizationAPIService) OrganizationsUpdateOrganizationExecute

Execute executes the request

@return OrganizationsUpdateOrganizationResponse

type OrganizationsAppInstallation

type OrganizationsAppInstallation struct {
	Metadata *OrganizationsAppInstallationMetadata `json:"metadata,omitempty"`
	Spec     *OrganizationsAppInstallationSpec     `json:"spec,omitempty"`
	Status   *OrganizationsAppInstallationStatus   `json:"status,omitempty"`
}

OrganizationsAppInstallation struct for OrganizationsAppInstallation

func NewOrganizationsAppInstallation

func NewOrganizationsAppInstallation() *OrganizationsAppInstallation

NewOrganizationsAppInstallation instantiates a new OrganizationsAppInstallation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsAppInstallationWithDefaults

func NewOrganizationsAppInstallationWithDefaults() *OrganizationsAppInstallation

NewOrganizationsAppInstallationWithDefaults instantiates a new OrganizationsAppInstallation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsAppInstallation) GetMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*OrganizationsAppInstallation) GetMetadataOk

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallation) GetSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*OrganizationsAppInstallation) GetSpecOk

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallation) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*OrganizationsAppInstallation) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallation) HasMetadata

func (o *OrganizationsAppInstallation) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*OrganizationsAppInstallation) HasSpec

func (o *OrganizationsAppInstallation) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*OrganizationsAppInstallation) HasStatus

func (o *OrganizationsAppInstallation) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (OrganizationsAppInstallation) MarshalJSON

func (o OrganizationsAppInstallation) MarshalJSON() ([]byte, error)

func (*OrganizationsAppInstallation) SetMetadata

SetMetadata gets a reference to the given OrganizationsAppInstallationMetadata and assigns it to the Metadata field.

func (*OrganizationsAppInstallation) SetSpec

SetSpec gets a reference to the given OrganizationsAppInstallationSpec and assigns it to the Spec field.

func (*OrganizationsAppInstallation) SetStatus

SetStatus gets a reference to the given OrganizationsAppInstallationStatus and assigns it to the Status field.

func (OrganizationsAppInstallation) ToMap

func (o OrganizationsAppInstallation) ToMap() (map[string]interface{}, error)

type OrganizationsAppInstallationMetadata

type OrganizationsAppInstallationMetadata struct {
	Id        *string    `json:"id,omitempty"`
	Name      *string    `json:"name,omitempty"`
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
}

OrganizationsAppInstallationMetadata struct for OrganizationsAppInstallationMetadata

func NewOrganizationsAppInstallationMetadata

func NewOrganizationsAppInstallationMetadata() *OrganizationsAppInstallationMetadata

NewOrganizationsAppInstallationMetadata instantiates a new OrganizationsAppInstallationMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsAppInstallationMetadataWithDefaults

func NewOrganizationsAppInstallationMetadataWithDefaults() *OrganizationsAppInstallationMetadata

NewOrganizationsAppInstallationMetadataWithDefaults instantiates a new OrganizationsAppInstallationMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsAppInstallationMetadata) GetCreatedAt

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrganizationsAppInstallationMetadata) GetCreatedAtOk

func (o *OrganizationsAppInstallationMetadata) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationMetadata) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*OrganizationsAppInstallationMetadata) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationMetadata) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*OrganizationsAppInstallationMetadata) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationMetadata) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*OrganizationsAppInstallationMetadata) GetUpdatedAtOk

func (o *OrganizationsAppInstallationMetadata) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationMetadata) HasCreatedAt

func (o *OrganizationsAppInstallationMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrganizationsAppInstallationMetadata) HasId

HasId returns a boolean if a field has been set.

func (*OrganizationsAppInstallationMetadata) HasName

HasName returns a boolean if a field has been set.

func (*OrganizationsAppInstallationMetadata) HasUpdatedAt

func (o *OrganizationsAppInstallationMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (OrganizationsAppInstallationMetadata) MarshalJSON

func (o OrganizationsAppInstallationMetadata) MarshalJSON() ([]byte, error)

func (*OrganizationsAppInstallationMetadata) SetCreatedAt

func (o *OrganizationsAppInstallationMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrganizationsAppInstallationMetadata) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*OrganizationsAppInstallationMetadata) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*OrganizationsAppInstallationMetadata) SetUpdatedAt

func (o *OrganizationsAppInstallationMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (OrganizationsAppInstallationMetadata) ToMap

func (o OrganizationsAppInstallationMetadata) ToMap() (map[string]interface{}, error)

type OrganizationsAppInstallationResourceRef added in v0.0.43

type OrganizationsAppInstallationResourceRef struct {
	Type *string `json:"type,omitempty"`
	Name *string `json:"name,omitempty"`
	Id   *string `json:"id,omitempty"`
}

OrganizationsAppInstallationResourceRef struct for OrganizationsAppInstallationResourceRef

func NewOrganizationsAppInstallationResourceRef added in v0.0.43

func NewOrganizationsAppInstallationResourceRef() *OrganizationsAppInstallationResourceRef

NewOrganizationsAppInstallationResourceRef instantiates a new OrganizationsAppInstallationResourceRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsAppInstallationResourceRefWithDefaults added in v0.0.43

func NewOrganizationsAppInstallationResourceRefWithDefaults() *OrganizationsAppInstallationResourceRef

NewOrganizationsAppInstallationResourceRefWithDefaults instantiates a new OrganizationsAppInstallationResourceRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsAppInstallationResourceRef) GetId added in v0.0.43

GetId returns the Id field value if set, zero value otherwise.

func (*OrganizationsAppInstallationResourceRef) GetIdOk added in v0.0.43

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationResourceRef) GetName added in v0.0.43

GetName returns the Name field value if set, zero value otherwise.

func (*OrganizationsAppInstallationResourceRef) GetNameOk added in v0.0.43

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationResourceRef) GetType added in v0.0.43

GetType returns the Type field value if set, zero value otherwise.

func (*OrganizationsAppInstallationResourceRef) GetTypeOk added in v0.0.43

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationResourceRef) HasId added in v0.0.43

HasId returns a boolean if a field has been set.

func (*OrganizationsAppInstallationResourceRef) HasName added in v0.0.43

HasName returns a boolean if a field has been set.

func (*OrganizationsAppInstallationResourceRef) HasType added in v0.0.43

HasType returns a boolean if a field has been set.

func (OrganizationsAppInstallationResourceRef) MarshalJSON added in v0.0.43

func (o OrganizationsAppInstallationResourceRef) MarshalJSON() ([]byte, error)

func (*OrganizationsAppInstallationResourceRef) SetId added in v0.0.43

SetId gets a reference to the given string and assigns it to the Id field.

func (*OrganizationsAppInstallationResourceRef) SetName added in v0.0.43

SetName gets a reference to the given string and assigns it to the Name field.

func (*OrganizationsAppInstallationResourceRef) SetType added in v0.0.43

SetType gets a reference to the given string and assigns it to the Type field.

func (OrganizationsAppInstallationResourceRef) ToMap added in v0.0.43

func (o OrganizationsAppInstallationResourceRef) ToMap() (map[string]interface{}, error)

type OrganizationsAppInstallationSpec

type OrganizationsAppInstallationSpec struct {
	AppName       *string                `json:"appName,omitempty"`
	Configuration map[string]interface{} `json:"configuration,omitempty"`
}

OrganizationsAppInstallationSpec struct for OrganizationsAppInstallationSpec

func NewOrganizationsAppInstallationSpec

func NewOrganizationsAppInstallationSpec() *OrganizationsAppInstallationSpec

NewOrganizationsAppInstallationSpec instantiates a new OrganizationsAppInstallationSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsAppInstallationSpecWithDefaults

func NewOrganizationsAppInstallationSpecWithDefaults() *OrganizationsAppInstallationSpec

NewOrganizationsAppInstallationSpecWithDefaults instantiates a new OrganizationsAppInstallationSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsAppInstallationSpec) GetAppName

func (o *OrganizationsAppInstallationSpec) GetAppName() string

GetAppName returns the AppName field value if set, zero value otherwise.

func (*OrganizationsAppInstallationSpec) GetAppNameOk

func (o *OrganizationsAppInstallationSpec) GetAppNameOk() (*string, bool)

GetAppNameOk returns a tuple with the AppName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationSpec) GetConfiguration

func (o *OrganizationsAppInstallationSpec) GetConfiguration() map[string]interface{}

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*OrganizationsAppInstallationSpec) GetConfigurationOk

func (o *OrganizationsAppInstallationSpec) GetConfigurationOk() (map[string]interface{}, bool)

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationSpec) HasAppName

func (o *OrganizationsAppInstallationSpec) HasAppName() bool

HasAppName returns a boolean if a field has been set.

func (*OrganizationsAppInstallationSpec) HasConfiguration

func (o *OrganizationsAppInstallationSpec) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (OrganizationsAppInstallationSpec) MarshalJSON

func (o OrganizationsAppInstallationSpec) MarshalJSON() ([]byte, error)

func (*OrganizationsAppInstallationSpec) SetAppName

func (o *OrganizationsAppInstallationSpec) SetAppName(v string)

SetAppName gets a reference to the given string and assigns it to the AppName field.

func (*OrganizationsAppInstallationSpec) SetConfiguration

func (o *OrganizationsAppInstallationSpec) SetConfiguration(v map[string]interface{})

SetConfiguration gets a reference to the given map[string]interface{} and assigns it to the Configuration field.

func (OrganizationsAppInstallationSpec) ToMap

func (o OrganizationsAppInstallationSpec) ToMap() (map[string]interface{}, error)

type OrganizationsAppInstallationStatus

type OrganizationsAppInstallationStatus struct {
	State            *string                     `json:"state,omitempty"`
	StateDescription *string                     `json:"stateDescription,omitempty"`
	Metadata         map[string]interface{}      `json:"metadata,omitempty"`
	BrowserAction    *OrganizationsBrowserAction `json:"browserAction,omitempty"`
	UsedIn           []AppInstallationNodeRef    `json:"usedIn,omitempty"`
}

OrganizationsAppInstallationStatus struct for OrganizationsAppInstallationStatus

func NewOrganizationsAppInstallationStatus

func NewOrganizationsAppInstallationStatus() *OrganizationsAppInstallationStatus

NewOrganizationsAppInstallationStatus instantiates a new OrganizationsAppInstallationStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsAppInstallationStatusWithDefaults

func NewOrganizationsAppInstallationStatusWithDefaults() *OrganizationsAppInstallationStatus

NewOrganizationsAppInstallationStatusWithDefaults instantiates a new OrganizationsAppInstallationStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsAppInstallationStatus) GetBrowserAction

GetBrowserAction returns the BrowserAction field value if set, zero value otherwise.

func (*OrganizationsAppInstallationStatus) GetBrowserActionOk

GetBrowserActionOk returns a tuple with the BrowserAction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationStatus) GetMetadata

func (o *OrganizationsAppInstallationStatus) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*OrganizationsAppInstallationStatus) GetMetadataOk

func (o *OrganizationsAppInstallationStatus) GetMetadataOk() (map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationStatus) GetState

GetState returns the State field value if set, zero value otherwise.

func (*OrganizationsAppInstallationStatus) GetStateDescription

func (o *OrganizationsAppInstallationStatus) GetStateDescription() string

GetStateDescription returns the StateDescription field value if set, zero value otherwise.

func (*OrganizationsAppInstallationStatus) GetStateDescriptionOk

func (o *OrganizationsAppInstallationStatus) GetStateDescriptionOk() (*string, bool)

GetStateDescriptionOk returns a tuple with the StateDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationStatus) GetStateOk

func (o *OrganizationsAppInstallationStatus) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationStatus) GetUsedIn

GetUsedIn returns the UsedIn field value if set, zero value otherwise.

func (*OrganizationsAppInstallationStatus) GetUsedInOk

GetUsedInOk returns a tuple with the UsedIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsAppInstallationStatus) HasBrowserAction

func (o *OrganizationsAppInstallationStatus) HasBrowserAction() bool

HasBrowserAction returns a boolean if a field has been set.

func (*OrganizationsAppInstallationStatus) HasMetadata

func (o *OrganizationsAppInstallationStatus) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*OrganizationsAppInstallationStatus) HasState

HasState returns a boolean if a field has been set.

func (*OrganizationsAppInstallationStatus) HasStateDescription

func (o *OrganizationsAppInstallationStatus) HasStateDescription() bool

HasStateDescription returns a boolean if a field has been set.

func (*OrganizationsAppInstallationStatus) HasUsedIn

HasUsedIn returns a boolean if a field has been set.

func (OrganizationsAppInstallationStatus) MarshalJSON

func (o OrganizationsAppInstallationStatus) MarshalJSON() ([]byte, error)

func (*OrganizationsAppInstallationStatus) SetBrowserAction

SetBrowserAction gets a reference to the given OrganizationsBrowserAction and assigns it to the BrowserAction field.

func (*OrganizationsAppInstallationStatus) SetMetadata

func (o *OrganizationsAppInstallationStatus) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*OrganizationsAppInstallationStatus) SetState

SetState gets a reference to the given string and assigns it to the State field.

func (*OrganizationsAppInstallationStatus) SetStateDescription

func (o *OrganizationsAppInstallationStatus) SetStateDescription(v string)

SetStateDescription gets a reference to the given string and assigns it to the StateDescription field.

func (*OrganizationsAppInstallationStatus) SetUsedIn

SetUsedIn gets a reference to the given []AppInstallationNodeRef and assigns it to the UsedIn field.

func (OrganizationsAppInstallationStatus) ToMap

func (o OrganizationsAppInstallationStatus) ToMap() (map[string]interface{}, error)

type OrganizationsBrowserAction

type OrganizationsBrowserAction struct {
	Url         *string            `json:"url,omitempty"`
	Method      *string            `json:"method,omitempty"`
	FormFields  *map[string]string `json:"formFields,omitempty"`
	Description *string            `json:"description,omitempty"`
}

OrganizationsBrowserAction struct for OrganizationsBrowserAction

func NewOrganizationsBrowserAction

func NewOrganizationsBrowserAction() *OrganizationsBrowserAction

NewOrganizationsBrowserAction instantiates a new OrganizationsBrowserAction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsBrowserActionWithDefaults

func NewOrganizationsBrowserActionWithDefaults() *OrganizationsBrowserAction

NewOrganizationsBrowserActionWithDefaults instantiates a new OrganizationsBrowserAction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsBrowserAction) GetDescription

func (o *OrganizationsBrowserAction) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*OrganizationsBrowserAction) GetDescriptionOk

func (o *OrganizationsBrowserAction) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsBrowserAction) GetFormFields

func (o *OrganizationsBrowserAction) GetFormFields() map[string]string

GetFormFields returns the FormFields field value if set, zero value otherwise.

func (*OrganizationsBrowserAction) GetFormFieldsOk

func (o *OrganizationsBrowserAction) GetFormFieldsOk() (*map[string]string, bool)

GetFormFieldsOk returns a tuple with the FormFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsBrowserAction) GetMethod

func (o *OrganizationsBrowserAction) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*OrganizationsBrowserAction) GetMethodOk

func (o *OrganizationsBrowserAction) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsBrowserAction) GetUrl

func (o *OrganizationsBrowserAction) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*OrganizationsBrowserAction) GetUrlOk

func (o *OrganizationsBrowserAction) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsBrowserAction) HasDescription

func (o *OrganizationsBrowserAction) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*OrganizationsBrowserAction) HasFormFields

func (o *OrganizationsBrowserAction) HasFormFields() bool

HasFormFields returns a boolean if a field has been set.

func (*OrganizationsBrowserAction) HasMethod

func (o *OrganizationsBrowserAction) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*OrganizationsBrowserAction) HasUrl

func (o *OrganizationsBrowserAction) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (OrganizationsBrowserAction) MarshalJSON

func (o OrganizationsBrowserAction) MarshalJSON() ([]byte, error)

func (*OrganizationsBrowserAction) SetDescription

func (o *OrganizationsBrowserAction) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*OrganizationsBrowserAction) SetFormFields

func (o *OrganizationsBrowserAction) SetFormFields(v map[string]string)

SetFormFields gets a reference to the given map[string]string and assigns it to the FormFields field.

func (*OrganizationsBrowserAction) SetMethod

func (o *OrganizationsBrowserAction) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*OrganizationsBrowserAction) SetUrl

func (o *OrganizationsBrowserAction) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (OrganizationsBrowserAction) ToMap

func (o OrganizationsBrowserAction) ToMap() (map[string]interface{}, error)

type OrganizationsCreateInvitationBody

type OrganizationsCreateInvitationBody struct {
	Email *string `json:"email,omitempty"`
}

OrganizationsCreateInvitationBody struct for OrganizationsCreateInvitationBody

func NewOrganizationsCreateInvitationBody

func NewOrganizationsCreateInvitationBody() *OrganizationsCreateInvitationBody

NewOrganizationsCreateInvitationBody instantiates a new OrganizationsCreateInvitationBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsCreateInvitationBodyWithDefaults

func NewOrganizationsCreateInvitationBodyWithDefaults() *OrganizationsCreateInvitationBody

NewOrganizationsCreateInvitationBodyWithDefaults instantiates a new OrganizationsCreateInvitationBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsCreateInvitationBody) GetEmail

GetEmail returns the Email field value if set, zero value otherwise.

func (*OrganizationsCreateInvitationBody) GetEmailOk

func (o *OrganizationsCreateInvitationBody) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsCreateInvitationBody) HasEmail

HasEmail returns a boolean if a field has been set.

func (OrganizationsCreateInvitationBody) MarshalJSON

func (o OrganizationsCreateInvitationBody) MarshalJSON() ([]byte, error)

func (*OrganizationsCreateInvitationBody) SetEmail

SetEmail gets a reference to the given string and assigns it to the Email field.

func (OrganizationsCreateInvitationBody) ToMap

func (o OrganizationsCreateInvitationBody) ToMap() (map[string]interface{}, error)

type OrganizationsCreateInvitationResponse

type OrganizationsCreateInvitationResponse struct {
	Invitation *OrganizationsInvitation `json:"invitation,omitempty"`
}

OrganizationsCreateInvitationResponse struct for OrganizationsCreateInvitationResponse

func NewOrganizationsCreateInvitationResponse

func NewOrganizationsCreateInvitationResponse() *OrganizationsCreateInvitationResponse

NewOrganizationsCreateInvitationResponse instantiates a new OrganizationsCreateInvitationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsCreateInvitationResponseWithDefaults

func NewOrganizationsCreateInvitationResponseWithDefaults() *OrganizationsCreateInvitationResponse

NewOrganizationsCreateInvitationResponseWithDefaults instantiates a new OrganizationsCreateInvitationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsCreateInvitationResponse) GetInvitation

GetInvitation returns the Invitation field value if set, zero value otherwise.

func (*OrganizationsCreateInvitationResponse) GetInvitationOk

GetInvitationOk returns a tuple with the Invitation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsCreateInvitationResponse) HasInvitation

func (o *OrganizationsCreateInvitationResponse) HasInvitation() bool

HasInvitation returns a boolean if a field has been set.

func (OrganizationsCreateInvitationResponse) MarshalJSON

func (o OrganizationsCreateInvitationResponse) MarshalJSON() ([]byte, error)

func (*OrganizationsCreateInvitationResponse) SetInvitation

SetInvitation gets a reference to the given OrganizationsInvitation and assigns it to the Invitation field.

func (OrganizationsCreateInvitationResponse) ToMap

func (o OrganizationsCreateInvitationResponse) ToMap() (map[string]interface{}, error)

type OrganizationsDescribeApplicationResponse

type OrganizationsDescribeApplicationResponse struct {
	Installation *OrganizationsAppInstallation `json:"installation,omitempty"`
}

OrganizationsDescribeApplicationResponse struct for OrganizationsDescribeApplicationResponse

func NewOrganizationsDescribeApplicationResponse

func NewOrganizationsDescribeApplicationResponse() *OrganizationsDescribeApplicationResponse

NewOrganizationsDescribeApplicationResponse instantiates a new OrganizationsDescribeApplicationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsDescribeApplicationResponseWithDefaults

func NewOrganizationsDescribeApplicationResponseWithDefaults() *OrganizationsDescribeApplicationResponse

NewOrganizationsDescribeApplicationResponseWithDefaults instantiates a new OrganizationsDescribeApplicationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsDescribeApplicationResponse) GetInstallation

GetInstallation returns the Installation field value if set, zero value otherwise.

func (*OrganizationsDescribeApplicationResponse) GetInstallationOk

GetInstallationOk returns a tuple with the Installation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsDescribeApplicationResponse) HasInstallation

func (o *OrganizationsDescribeApplicationResponse) HasInstallation() bool

HasInstallation returns a boolean if a field has been set.

func (OrganizationsDescribeApplicationResponse) MarshalJSON

func (*OrganizationsDescribeApplicationResponse) SetInstallation

SetInstallation gets a reference to the given OrganizationsAppInstallation and assigns it to the Installation field.

func (OrganizationsDescribeApplicationResponse) ToMap

func (o OrganizationsDescribeApplicationResponse) ToMap() (map[string]interface{}, error)

type OrganizationsDescribeOrganizationResponse

type OrganizationsDescribeOrganizationResponse struct {
	Organization *OrganizationsOrganization `json:"organization,omitempty"`
}

OrganizationsDescribeOrganizationResponse struct for OrganizationsDescribeOrganizationResponse

func NewOrganizationsDescribeOrganizationResponse

func NewOrganizationsDescribeOrganizationResponse() *OrganizationsDescribeOrganizationResponse

NewOrganizationsDescribeOrganizationResponse instantiates a new OrganizationsDescribeOrganizationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsDescribeOrganizationResponseWithDefaults

func NewOrganizationsDescribeOrganizationResponseWithDefaults() *OrganizationsDescribeOrganizationResponse

NewOrganizationsDescribeOrganizationResponseWithDefaults instantiates a new OrganizationsDescribeOrganizationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsDescribeOrganizationResponse) GetOrganization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*OrganizationsDescribeOrganizationResponse) GetOrganizationOk

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsDescribeOrganizationResponse) HasOrganization

func (o *OrganizationsDescribeOrganizationResponse) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (OrganizationsDescribeOrganizationResponse) MarshalJSON

func (*OrganizationsDescribeOrganizationResponse) SetOrganization

SetOrganization gets a reference to the given OrganizationsOrganization and assigns it to the Organization field.

func (OrganizationsDescribeOrganizationResponse) ToMap

func (o OrganizationsDescribeOrganizationResponse) ToMap() (map[string]interface{}, error)

type OrganizationsGetInviteLinkResponse added in v0.0.43

type OrganizationsGetInviteLinkResponse struct {
	InviteLink *OrganizationsInviteLink `json:"inviteLink,omitempty"`
}

OrganizationsGetInviteLinkResponse struct for OrganizationsGetInviteLinkResponse

func NewOrganizationsGetInviteLinkResponse added in v0.0.43

func NewOrganizationsGetInviteLinkResponse() *OrganizationsGetInviteLinkResponse

NewOrganizationsGetInviteLinkResponse instantiates a new OrganizationsGetInviteLinkResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsGetInviteLinkResponseWithDefaults added in v0.0.43

func NewOrganizationsGetInviteLinkResponseWithDefaults() *OrganizationsGetInviteLinkResponse

NewOrganizationsGetInviteLinkResponseWithDefaults instantiates a new OrganizationsGetInviteLinkResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetInviteLink returns the InviteLink field value if set, zero value otherwise.

func (*OrganizationsGetInviteLinkResponse) GetInviteLinkOk added in v0.0.43

GetInviteLinkOk returns a tuple with the InviteLink field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *OrganizationsGetInviteLinkResponse) HasInviteLink() bool

HasInviteLink returns a boolean if a field has been set.

func (OrganizationsGetInviteLinkResponse) MarshalJSON added in v0.0.43

func (o OrganizationsGetInviteLinkResponse) MarshalJSON() ([]byte, error)

SetInviteLink gets a reference to the given OrganizationsInviteLink and assigns it to the InviteLink field.

func (OrganizationsGetInviteLinkResponse) ToMap added in v0.0.43

func (o OrganizationsGetInviteLinkResponse) ToMap() (map[string]interface{}, error)

type OrganizationsInstallApplicationBody

type OrganizationsInstallApplicationBody struct {
	AppName          *string                `json:"appName,omitempty"`
	InstallationName *string                `json:"installationName,omitempty"`
	Configuration    map[string]interface{} `json:"configuration,omitempty"`
}

OrganizationsInstallApplicationBody struct for OrganizationsInstallApplicationBody

func NewOrganizationsInstallApplicationBody

func NewOrganizationsInstallApplicationBody() *OrganizationsInstallApplicationBody

NewOrganizationsInstallApplicationBody instantiates a new OrganizationsInstallApplicationBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsInstallApplicationBodyWithDefaults

func NewOrganizationsInstallApplicationBodyWithDefaults() *OrganizationsInstallApplicationBody

NewOrganizationsInstallApplicationBodyWithDefaults instantiates a new OrganizationsInstallApplicationBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsInstallApplicationBody) GetAppName

GetAppName returns the AppName field value if set, zero value otherwise.

func (*OrganizationsInstallApplicationBody) GetAppNameOk

func (o *OrganizationsInstallApplicationBody) GetAppNameOk() (*string, bool)

GetAppNameOk returns a tuple with the AppName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInstallApplicationBody) GetConfiguration

func (o *OrganizationsInstallApplicationBody) GetConfiguration() map[string]interface{}

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*OrganizationsInstallApplicationBody) GetConfigurationOk

func (o *OrganizationsInstallApplicationBody) GetConfigurationOk() (map[string]interface{}, bool)

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInstallApplicationBody) GetInstallationName

func (o *OrganizationsInstallApplicationBody) GetInstallationName() string

GetInstallationName returns the InstallationName field value if set, zero value otherwise.

func (*OrganizationsInstallApplicationBody) GetInstallationNameOk

func (o *OrganizationsInstallApplicationBody) GetInstallationNameOk() (*string, bool)

GetInstallationNameOk returns a tuple with the InstallationName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInstallApplicationBody) HasAppName

func (o *OrganizationsInstallApplicationBody) HasAppName() bool

HasAppName returns a boolean if a field has been set.

func (*OrganizationsInstallApplicationBody) HasConfiguration

func (o *OrganizationsInstallApplicationBody) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*OrganizationsInstallApplicationBody) HasInstallationName

func (o *OrganizationsInstallApplicationBody) HasInstallationName() bool

HasInstallationName returns a boolean if a field has been set.

func (OrganizationsInstallApplicationBody) MarshalJSON

func (o OrganizationsInstallApplicationBody) MarshalJSON() ([]byte, error)

func (*OrganizationsInstallApplicationBody) SetAppName

SetAppName gets a reference to the given string and assigns it to the AppName field.

func (*OrganizationsInstallApplicationBody) SetConfiguration

func (o *OrganizationsInstallApplicationBody) SetConfiguration(v map[string]interface{})

SetConfiguration gets a reference to the given map[string]interface{} and assigns it to the Configuration field.

func (*OrganizationsInstallApplicationBody) SetInstallationName

func (o *OrganizationsInstallApplicationBody) SetInstallationName(v string)

SetInstallationName gets a reference to the given string and assigns it to the InstallationName field.

func (OrganizationsInstallApplicationBody) ToMap

func (o OrganizationsInstallApplicationBody) ToMap() (map[string]interface{}, error)

type OrganizationsInstallApplicationResponse

type OrganizationsInstallApplicationResponse struct {
	Installation *OrganizationsAppInstallation `json:"installation,omitempty"`
}

OrganizationsInstallApplicationResponse struct for OrganizationsInstallApplicationResponse

func NewOrganizationsInstallApplicationResponse

func NewOrganizationsInstallApplicationResponse() *OrganizationsInstallApplicationResponse

NewOrganizationsInstallApplicationResponse instantiates a new OrganizationsInstallApplicationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsInstallApplicationResponseWithDefaults

func NewOrganizationsInstallApplicationResponseWithDefaults() *OrganizationsInstallApplicationResponse

NewOrganizationsInstallApplicationResponseWithDefaults instantiates a new OrganizationsInstallApplicationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsInstallApplicationResponse) GetInstallation

GetInstallation returns the Installation field value if set, zero value otherwise.

func (*OrganizationsInstallApplicationResponse) GetInstallationOk

GetInstallationOk returns a tuple with the Installation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInstallApplicationResponse) HasInstallation

func (o *OrganizationsInstallApplicationResponse) HasInstallation() bool

HasInstallation returns a boolean if a field has been set.

func (OrganizationsInstallApplicationResponse) MarshalJSON

func (o OrganizationsInstallApplicationResponse) MarshalJSON() ([]byte, error)

func (*OrganizationsInstallApplicationResponse) SetInstallation

SetInstallation gets a reference to the given OrganizationsAppInstallation and assigns it to the Installation field.

func (OrganizationsInstallApplicationResponse) ToMap

func (o OrganizationsInstallApplicationResponse) ToMap() (map[string]interface{}, error)

type OrganizationsInvitation

type OrganizationsInvitation struct {
	Id             *string    `json:"id,omitempty"`
	OrganizationId *string    `json:"organizationId,omitempty"`
	Email          *string    `json:"email,omitempty"`
	State          *string    `json:"state,omitempty"`
	CreatedAt      *time.Time `json:"createdAt,omitempty"`
}

OrganizationsInvitation struct for OrganizationsInvitation

func NewOrganizationsInvitation

func NewOrganizationsInvitation() *OrganizationsInvitation

NewOrganizationsInvitation instantiates a new OrganizationsInvitation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsInvitationWithDefaults

func NewOrganizationsInvitationWithDefaults() *OrganizationsInvitation

NewOrganizationsInvitationWithDefaults instantiates a new OrganizationsInvitation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsInvitation) GetCreatedAt

func (o *OrganizationsInvitation) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrganizationsInvitation) GetCreatedAtOk

func (o *OrganizationsInvitation) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInvitation) GetEmail

func (o *OrganizationsInvitation) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*OrganizationsInvitation) GetEmailOk

func (o *OrganizationsInvitation) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInvitation) GetId

func (o *OrganizationsInvitation) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*OrganizationsInvitation) GetIdOk

func (o *OrganizationsInvitation) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInvitation) GetOrganizationId

func (o *OrganizationsInvitation) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationsInvitation) GetOrganizationIdOk

func (o *OrganizationsInvitation) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInvitation) GetState

func (o *OrganizationsInvitation) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*OrganizationsInvitation) GetStateOk

func (o *OrganizationsInvitation) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInvitation) HasCreatedAt

func (o *OrganizationsInvitation) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrganizationsInvitation) HasEmail

func (o *OrganizationsInvitation) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*OrganizationsInvitation) HasId

func (o *OrganizationsInvitation) HasId() bool

HasId returns a boolean if a field has been set.

func (*OrganizationsInvitation) HasOrganizationId

func (o *OrganizationsInvitation) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationsInvitation) HasState

func (o *OrganizationsInvitation) HasState() bool

HasState returns a boolean if a field has been set.

func (OrganizationsInvitation) MarshalJSON

func (o OrganizationsInvitation) MarshalJSON() ([]byte, error)

func (*OrganizationsInvitation) SetCreatedAt

func (o *OrganizationsInvitation) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrganizationsInvitation) SetEmail

func (o *OrganizationsInvitation) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*OrganizationsInvitation) SetId

func (o *OrganizationsInvitation) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*OrganizationsInvitation) SetOrganizationId

func (o *OrganizationsInvitation) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*OrganizationsInvitation) SetState

func (o *OrganizationsInvitation) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (OrganizationsInvitation) ToMap

func (o OrganizationsInvitation) ToMap() (map[string]interface{}, error)
type OrganizationsInviteLink struct {
	Id             *string    `json:"id,omitempty"`
	OrganizationId *string    `json:"organizationId,omitempty"`
	Token          *string    `json:"token,omitempty"`
	Enabled        *bool      `json:"enabled,omitempty"`
	CreatedAt      *time.Time `json:"createdAt,omitempty"`
	UpdatedAt      *time.Time `json:"updatedAt,omitempty"`
}

OrganizationsInviteLink struct for OrganizationsInviteLink

func NewOrganizationsInviteLink() *OrganizationsInviteLink

NewOrganizationsInviteLink instantiates a new OrganizationsInviteLink object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsInviteLinkWithDefaults added in v0.0.43

func NewOrganizationsInviteLinkWithDefaults() *OrganizationsInviteLink

NewOrganizationsInviteLinkWithDefaults instantiates a new OrganizationsInviteLink object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsInviteLink) GetCreatedAt added in v0.0.43

func (o *OrganizationsInviteLink) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrganizationsInviteLink) GetCreatedAtOk added in v0.0.43

func (o *OrganizationsInviteLink) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInviteLink) GetEnabled added in v0.0.43

func (o *OrganizationsInviteLink) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*OrganizationsInviteLink) GetEnabledOk added in v0.0.43

func (o *OrganizationsInviteLink) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInviteLink) GetId added in v0.0.43

func (o *OrganizationsInviteLink) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*OrganizationsInviteLink) GetIdOk added in v0.0.43

func (o *OrganizationsInviteLink) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInviteLink) GetOrganizationId added in v0.0.43

func (o *OrganizationsInviteLink) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationsInviteLink) GetOrganizationIdOk added in v0.0.43

func (o *OrganizationsInviteLink) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInviteLink) GetToken added in v0.0.43

func (o *OrganizationsInviteLink) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*OrganizationsInviteLink) GetTokenOk added in v0.0.43

func (o *OrganizationsInviteLink) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInviteLink) GetUpdatedAt added in v0.0.43

func (o *OrganizationsInviteLink) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*OrganizationsInviteLink) GetUpdatedAtOk added in v0.0.43

func (o *OrganizationsInviteLink) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsInviteLink) HasCreatedAt added in v0.0.43

func (o *OrganizationsInviteLink) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrganizationsInviteLink) HasEnabled added in v0.0.43

func (o *OrganizationsInviteLink) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*OrganizationsInviteLink) HasId added in v0.0.43

func (o *OrganizationsInviteLink) HasId() bool

HasId returns a boolean if a field has been set.

func (*OrganizationsInviteLink) HasOrganizationId added in v0.0.43

func (o *OrganizationsInviteLink) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationsInviteLink) HasToken added in v0.0.43

func (o *OrganizationsInviteLink) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*OrganizationsInviteLink) HasUpdatedAt added in v0.0.43

func (o *OrganizationsInviteLink) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (OrganizationsInviteLink) MarshalJSON added in v0.0.43

func (o OrganizationsInviteLink) MarshalJSON() ([]byte, error)

func (*OrganizationsInviteLink) SetCreatedAt added in v0.0.43

func (o *OrganizationsInviteLink) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrganizationsInviteLink) SetEnabled added in v0.0.43

func (o *OrganizationsInviteLink) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*OrganizationsInviteLink) SetId added in v0.0.43

func (o *OrganizationsInviteLink) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*OrganizationsInviteLink) SetOrganizationId added in v0.0.43

func (o *OrganizationsInviteLink) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*OrganizationsInviteLink) SetToken added in v0.0.43

func (o *OrganizationsInviteLink) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (*OrganizationsInviteLink) SetUpdatedAt added in v0.0.43

func (o *OrganizationsInviteLink) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (OrganizationsInviteLink) ToMap added in v0.0.43

func (o OrganizationsInviteLink) ToMap() (map[string]interface{}, error)

type OrganizationsListApplicationResourcesResponse added in v0.0.43

type OrganizationsListApplicationResourcesResponse struct {
	Resources []OrganizationsAppInstallationResourceRef `json:"resources,omitempty"`
}

OrganizationsListApplicationResourcesResponse struct for OrganizationsListApplicationResourcesResponse

func NewOrganizationsListApplicationResourcesResponse added in v0.0.43

func NewOrganizationsListApplicationResourcesResponse() *OrganizationsListApplicationResourcesResponse

NewOrganizationsListApplicationResourcesResponse instantiates a new OrganizationsListApplicationResourcesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsListApplicationResourcesResponseWithDefaults added in v0.0.43

func NewOrganizationsListApplicationResourcesResponseWithDefaults() *OrganizationsListApplicationResourcesResponse

NewOrganizationsListApplicationResourcesResponseWithDefaults instantiates a new OrganizationsListApplicationResourcesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsListApplicationResourcesResponse) GetResources added in v0.0.43

GetResources returns the Resources field value if set, zero value otherwise.

func (*OrganizationsListApplicationResourcesResponse) GetResourcesOk added in v0.0.43

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsListApplicationResourcesResponse) HasResources added in v0.0.43

HasResources returns a boolean if a field has been set.

func (OrganizationsListApplicationResourcesResponse) MarshalJSON added in v0.0.43

func (*OrganizationsListApplicationResourcesResponse) SetResources added in v0.0.43

SetResources gets a reference to the given []OrganizationsAppInstallationResourceRef and assigns it to the Resources field.

func (OrganizationsListApplicationResourcesResponse) ToMap added in v0.0.43

func (o OrganizationsListApplicationResourcesResponse) ToMap() (map[string]interface{}, error)

type OrganizationsListInvitationsResponse

type OrganizationsListInvitationsResponse struct {
	Invitations []OrganizationsInvitation `json:"invitations,omitempty"`
}

OrganizationsListInvitationsResponse struct for OrganizationsListInvitationsResponse

func NewOrganizationsListInvitationsResponse

func NewOrganizationsListInvitationsResponse() *OrganizationsListInvitationsResponse

NewOrganizationsListInvitationsResponse instantiates a new OrganizationsListInvitationsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsListInvitationsResponseWithDefaults

func NewOrganizationsListInvitationsResponseWithDefaults() *OrganizationsListInvitationsResponse

NewOrganizationsListInvitationsResponseWithDefaults instantiates a new OrganizationsListInvitationsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsListInvitationsResponse) GetInvitations

GetInvitations returns the Invitations field value if set, zero value otherwise.

func (*OrganizationsListInvitationsResponse) GetInvitationsOk

GetInvitationsOk returns a tuple with the Invitations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsListInvitationsResponse) HasInvitations

func (o *OrganizationsListInvitationsResponse) HasInvitations() bool

HasInvitations returns a boolean if a field has been set.

func (OrganizationsListInvitationsResponse) MarshalJSON

func (o OrganizationsListInvitationsResponse) MarshalJSON() ([]byte, error)

func (*OrganizationsListInvitationsResponse) SetInvitations

SetInvitations gets a reference to the given []OrganizationsInvitation and assigns it to the Invitations field.

func (OrganizationsListInvitationsResponse) ToMap

func (o OrganizationsListInvitationsResponse) ToMap() (map[string]interface{}, error)

type OrganizationsOrganization

type OrganizationsOrganization struct {
	Metadata *OrganizationsOrganizationMetadata `json:"metadata,omitempty"`
}

OrganizationsOrganization struct for OrganizationsOrganization

func NewOrganizationsOrganization

func NewOrganizationsOrganization() *OrganizationsOrganization

NewOrganizationsOrganization instantiates a new OrganizationsOrganization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsOrganizationWithDefaults

func NewOrganizationsOrganizationWithDefaults() *OrganizationsOrganization

NewOrganizationsOrganizationWithDefaults instantiates a new OrganizationsOrganization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsOrganization) GetMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*OrganizationsOrganization) GetMetadataOk

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsOrganization) HasMetadata

func (o *OrganizationsOrganization) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (OrganizationsOrganization) MarshalJSON

func (o OrganizationsOrganization) MarshalJSON() ([]byte, error)

func (*OrganizationsOrganization) SetMetadata

SetMetadata gets a reference to the given OrganizationsOrganizationMetadata and assigns it to the Metadata field.

func (OrganizationsOrganization) ToMap

func (o OrganizationsOrganization) ToMap() (map[string]interface{}, error)

type OrganizationsOrganizationMetadata

type OrganizationsOrganizationMetadata struct {
	Id          *string    `json:"id,omitempty"`
	Name        *string    `json:"name,omitempty"`
	Description *string    `json:"description,omitempty"`
	CreatedAt   *time.Time `json:"createdAt,omitempty"`
	UpdatedAt   *time.Time `json:"updatedAt,omitempty"`
}

OrganizationsOrganizationMetadata struct for OrganizationsOrganizationMetadata

func NewOrganizationsOrganizationMetadata

func NewOrganizationsOrganizationMetadata() *OrganizationsOrganizationMetadata

NewOrganizationsOrganizationMetadata instantiates a new OrganizationsOrganizationMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsOrganizationMetadataWithDefaults

func NewOrganizationsOrganizationMetadataWithDefaults() *OrganizationsOrganizationMetadata

NewOrganizationsOrganizationMetadataWithDefaults instantiates a new OrganizationsOrganizationMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsOrganizationMetadata) GetCreatedAt

func (o *OrganizationsOrganizationMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrganizationsOrganizationMetadata) GetCreatedAtOk

func (o *OrganizationsOrganizationMetadata) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsOrganizationMetadata) GetDescription

func (o *OrganizationsOrganizationMetadata) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*OrganizationsOrganizationMetadata) GetDescriptionOk

func (o *OrganizationsOrganizationMetadata) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsOrganizationMetadata) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*OrganizationsOrganizationMetadata) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsOrganizationMetadata) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*OrganizationsOrganizationMetadata) GetNameOk

func (o *OrganizationsOrganizationMetadata) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsOrganizationMetadata) GetUpdatedAt

func (o *OrganizationsOrganizationMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*OrganizationsOrganizationMetadata) GetUpdatedAtOk

func (o *OrganizationsOrganizationMetadata) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsOrganizationMetadata) HasCreatedAt

func (o *OrganizationsOrganizationMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrganizationsOrganizationMetadata) HasDescription

func (o *OrganizationsOrganizationMetadata) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*OrganizationsOrganizationMetadata) HasId

HasId returns a boolean if a field has been set.

func (*OrganizationsOrganizationMetadata) HasName

HasName returns a boolean if a field has been set.

func (*OrganizationsOrganizationMetadata) HasUpdatedAt

func (o *OrganizationsOrganizationMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (OrganizationsOrganizationMetadata) MarshalJSON

func (o OrganizationsOrganizationMetadata) MarshalJSON() ([]byte, error)

func (*OrganizationsOrganizationMetadata) SetCreatedAt

func (o *OrganizationsOrganizationMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrganizationsOrganizationMetadata) SetDescription

func (o *OrganizationsOrganizationMetadata) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*OrganizationsOrganizationMetadata) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*OrganizationsOrganizationMetadata) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*OrganizationsOrganizationMetadata) SetUpdatedAt

func (o *OrganizationsOrganizationMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (OrganizationsOrganizationMetadata) ToMap

func (o OrganizationsOrganizationMetadata) ToMap() (map[string]interface{}, error)

type OrganizationsResetInviteLinkResponse added in v0.0.43

type OrganizationsResetInviteLinkResponse struct {
	InviteLink *OrganizationsInviteLink `json:"inviteLink,omitempty"`
}

OrganizationsResetInviteLinkResponse struct for OrganizationsResetInviteLinkResponse

func NewOrganizationsResetInviteLinkResponse added in v0.0.43

func NewOrganizationsResetInviteLinkResponse() *OrganizationsResetInviteLinkResponse

NewOrganizationsResetInviteLinkResponse instantiates a new OrganizationsResetInviteLinkResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsResetInviteLinkResponseWithDefaults added in v0.0.43

func NewOrganizationsResetInviteLinkResponseWithDefaults() *OrganizationsResetInviteLinkResponse

NewOrganizationsResetInviteLinkResponseWithDefaults instantiates a new OrganizationsResetInviteLinkResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetInviteLink returns the InviteLink field value if set, zero value otherwise.

func (*OrganizationsResetInviteLinkResponse) GetInviteLinkOk added in v0.0.43

GetInviteLinkOk returns a tuple with the InviteLink field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *OrganizationsResetInviteLinkResponse) HasInviteLink() bool

HasInviteLink returns a boolean if a field has been set.

func (OrganizationsResetInviteLinkResponse) MarshalJSON added in v0.0.43

func (o OrganizationsResetInviteLinkResponse) MarshalJSON() ([]byte, error)

SetInviteLink gets a reference to the given OrganizationsInviteLink and assigns it to the InviteLink field.

func (OrganizationsResetInviteLinkResponse) ToMap added in v0.0.43

func (o OrganizationsResetInviteLinkResponse) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateApplicationBody

type OrganizationsUpdateApplicationBody struct {
	Configuration map[string]interface{} `json:"configuration,omitempty"`
}

OrganizationsUpdateApplicationBody struct for OrganizationsUpdateApplicationBody

func NewOrganizationsUpdateApplicationBody

func NewOrganizationsUpdateApplicationBody() *OrganizationsUpdateApplicationBody

NewOrganizationsUpdateApplicationBody instantiates a new OrganizationsUpdateApplicationBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsUpdateApplicationBodyWithDefaults

func NewOrganizationsUpdateApplicationBodyWithDefaults() *OrganizationsUpdateApplicationBody

NewOrganizationsUpdateApplicationBodyWithDefaults instantiates a new OrganizationsUpdateApplicationBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsUpdateApplicationBody) GetConfiguration

func (o *OrganizationsUpdateApplicationBody) GetConfiguration() map[string]interface{}

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*OrganizationsUpdateApplicationBody) GetConfigurationOk

func (o *OrganizationsUpdateApplicationBody) GetConfigurationOk() (map[string]interface{}, bool)

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsUpdateApplicationBody) HasConfiguration

func (o *OrganizationsUpdateApplicationBody) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (OrganizationsUpdateApplicationBody) MarshalJSON

func (o OrganizationsUpdateApplicationBody) MarshalJSON() ([]byte, error)

func (*OrganizationsUpdateApplicationBody) SetConfiguration

func (o *OrganizationsUpdateApplicationBody) SetConfiguration(v map[string]interface{})

SetConfiguration gets a reference to the given map[string]interface{} and assigns it to the Configuration field.

func (OrganizationsUpdateApplicationBody) ToMap

func (o OrganizationsUpdateApplicationBody) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateApplicationResponse

type OrganizationsUpdateApplicationResponse struct {
	Installation *OrganizationsAppInstallation `json:"installation,omitempty"`
}

OrganizationsUpdateApplicationResponse struct for OrganizationsUpdateApplicationResponse

func NewOrganizationsUpdateApplicationResponse

func NewOrganizationsUpdateApplicationResponse() *OrganizationsUpdateApplicationResponse

NewOrganizationsUpdateApplicationResponse instantiates a new OrganizationsUpdateApplicationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsUpdateApplicationResponseWithDefaults

func NewOrganizationsUpdateApplicationResponseWithDefaults() *OrganizationsUpdateApplicationResponse

NewOrganizationsUpdateApplicationResponseWithDefaults instantiates a new OrganizationsUpdateApplicationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsUpdateApplicationResponse) GetInstallation

GetInstallation returns the Installation field value if set, zero value otherwise.

func (*OrganizationsUpdateApplicationResponse) GetInstallationOk

GetInstallationOk returns a tuple with the Installation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsUpdateApplicationResponse) HasInstallation

func (o *OrganizationsUpdateApplicationResponse) HasInstallation() bool

HasInstallation returns a boolean if a field has been set.

func (OrganizationsUpdateApplicationResponse) MarshalJSON

func (o OrganizationsUpdateApplicationResponse) MarshalJSON() ([]byte, error)

func (*OrganizationsUpdateApplicationResponse) SetInstallation

SetInstallation gets a reference to the given OrganizationsAppInstallation and assigns it to the Installation field.

func (OrganizationsUpdateApplicationResponse) ToMap

func (o OrganizationsUpdateApplicationResponse) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateInviteLinkBody added in v0.0.43

type OrganizationsUpdateInviteLinkBody struct {
	Enabled *bool `json:"enabled,omitempty"`
}

OrganizationsUpdateInviteLinkBody struct for OrganizationsUpdateInviteLinkBody

func NewOrganizationsUpdateInviteLinkBody added in v0.0.43

func NewOrganizationsUpdateInviteLinkBody() *OrganizationsUpdateInviteLinkBody

NewOrganizationsUpdateInviteLinkBody instantiates a new OrganizationsUpdateInviteLinkBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsUpdateInviteLinkBodyWithDefaults added in v0.0.43

func NewOrganizationsUpdateInviteLinkBodyWithDefaults() *OrganizationsUpdateInviteLinkBody

NewOrganizationsUpdateInviteLinkBodyWithDefaults instantiates a new OrganizationsUpdateInviteLinkBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsUpdateInviteLinkBody) GetEnabled added in v0.0.43

func (o *OrganizationsUpdateInviteLinkBody) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*OrganizationsUpdateInviteLinkBody) GetEnabledOk added in v0.0.43

func (o *OrganizationsUpdateInviteLinkBody) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsUpdateInviteLinkBody) HasEnabled added in v0.0.43

func (o *OrganizationsUpdateInviteLinkBody) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (OrganizationsUpdateInviteLinkBody) MarshalJSON added in v0.0.43

func (o OrganizationsUpdateInviteLinkBody) MarshalJSON() ([]byte, error)

func (*OrganizationsUpdateInviteLinkBody) SetEnabled added in v0.0.43

func (o *OrganizationsUpdateInviteLinkBody) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (OrganizationsUpdateInviteLinkBody) ToMap added in v0.0.43

func (o OrganizationsUpdateInviteLinkBody) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateInviteLinkResponse added in v0.0.43

type OrganizationsUpdateInviteLinkResponse struct {
	InviteLink *OrganizationsInviteLink `json:"inviteLink,omitempty"`
}

OrganizationsUpdateInviteLinkResponse struct for OrganizationsUpdateInviteLinkResponse

func NewOrganizationsUpdateInviteLinkResponse added in v0.0.43

func NewOrganizationsUpdateInviteLinkResponse() *OrganizationsUpdateInviteLinkResponse

NewOrganizationsUpdateInviteLinkResponse instantiates a new OrganizationsUpdateInviteLinkResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsUpdateInviteLinkResponseWithDefaults added in v0.0.43

func NewOrganizationsUpdateInviteLinkResponseWithDefaults() *OrganizationsUpdateInviteLinkResponse

NewOrganizationsUpdateInviteLinkResponseWithDefaults instantiates a new OrganizationsUpdateInviteLinkResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetInviteLink returns the InviteLink field value if set, zero value otherwise.

func (*OrganizationsUpdateInviteLinkResponse) GetInviteLinkOk added in v0.0.43

GetInviteLinkOk returns a tuple with the InviteLink field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *OrganizationsUpdateInviteLinkResponse) HasInviteLink() bool

HasInviteLink returns a boolean if a field has been set.

func (OrganizationsUpdateInviteLinkResponse) MarshalJSON added in v0.0.43

func (o OrganizationsUpdateInviteLinkResponse) MarshalJSON() ([]byte, error)

SetInviteLink gets a reference to the given OrganizationsInviteLink and assigns it to the InviteLink field.

func (OrganizationsUpdateInviteLinkResponse) ToMap added in v0.0.43

func (o OrganizationsUpdateInviteLinkResponse) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateOrganizationBody

type OrganizationsUpdateOrganizationBody struct {
	Organization *OrganizationsOrganization `json:"organization,omitempty"`
}

OrganizationsUpdateOrganizationBody struct for OrganizationsUpdateOrganizationBody

func NewOrganizationsUpdateOrganizationBody

func NewOrganizationsUpdateOrganizationBody() *OrganizationsUpdateOrganizationBody

NewOrganizationsUpdateOrganizationBody instantiates a new OrganizationsUpdateOrganizationBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsUpdateOrganizationBodyWithDefaults

func NewOrganizationsUpdateOrganizationBodyWithDefaults() *OrganizationsUpdateOrganizationBody

NewOrganizationsUpdateOrganizationBodyWithDefaults instantiates a new OrganizationsUpdateOrganizationBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsUpdateOrganizationBody) GetOrganization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*OrganizationsUpdateOrganizationBody) GetOrganizationOk

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsUpdateOrganizationBody) HasOrganization

func (o *OrganizationsUpdateOrganizationBody) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (OrganizationsUpdateOrganizationBody) MarshalJSON

func (o OrganizationsUpdateOrganizationBody) MarshalJSON() ([]byte, error)

func (*OrganizationsUpdateOrganizationBody) SetOrganization

SetOrganization gets a reference to the given OrganizationsOrganization and assigns it to the Organization field.

func (OrganizationsUpdateOrganizationBody) ToMap

func (o OrganizationsUpdateOrganizationBody) ToMap() (map[string]interface{}, error)

type OrganizationsUpdateOrganizationResponse

type OrganizationsUpdateOrganizationResponse struct {
	Organization *OrganizationsOrganization `json:"organization,omitempty"`
}

OrganizationsUpdateOrganizationResponse struct for OrganizationsUpdateOrganizationResponse

func NewOrganizationsUpdateOrganizationResponse

func NewOrganizationsUpdateOrganizationResponse() *OrganizationsUpdateOrganizationResponse

NewOrganizationsUpdateOrganizationResponse instantiates a new OrganizationsUpdateOrganizationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationsUpdateOrganizationResponseWithDefaults

func NewOrganizationsUpdateOrganizationResponseWithDefaults() *OrganizationsUpdateOrganizationResponse

NewOrganizationsUpdateOrganizationResponseWithDefaults instantiates a new OrganizationsUpdateOrganizationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationsUpdateOrganizationResponse) GetOrganization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*OrganizationsUpdateOrganizationResponse) GetOrganizationOk

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationsUpdateOrganizationResponse) HasOrganization

func (o *OrganizationsUpdateOrganizationResponse) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (OrganizationsUpdateOrganizationResponse) MarshalJSON

func (o OrganizationsUpdateOrganizationResponse) MarshalJSON() ([]byte, error)

func (*OrganizationsUpdateOrganizationResponse) SetOrganization

SetOrganization gets a reference to the given OrganizationsOrganization and assigns it to the Organization field.

func (OrganizationsUpdateOrganizationResponse) ToMap

func (o OrganizationsUpdateOrganizationResponse) ToMap() (map[string]interface{}, error)

type ProtobufAny

type ProtobufAny struct {
	Type                 *string `json:"@type,omitempty"`
	AdditionalProperties map[string]interface{}
}

ProtobufAny struct for ProtobufAny

func NewProtobufAny

func NewProtobufAny() *ProtobufAny

NewProtobufAny instantiates a new ProtobufAny object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProtobufAnyWithDefaults

func NewProtobufAnyWithDefaults() *ProtobufAny

NewProtobufAnyWithDefaults instantiates a new ProtobufAny object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProtobufAny) GetType

func (o *ProtobufAny) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProtobufAny) GetTypeOk

func (o *ProtobufAny) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProtobufAny) HasType

func (o *ProtobufAny) HasType() bool

HasType returns a boolean if a field has been set.

func (ProtobufAny) MarshalJSON

func (o ProtobufAny) MarshalJSON() ([]byte, error)

func (*ProtobufAny) SetType

func (o *ProtobufAny) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ProtobufAny) ToMap

func (o ProtobufAny) ToMap() (map[string]interface{}, error)

func (*ProtobufAny) UnmarshalJSON

func (o *ProtobufAny) UnmarshalJSON(data []byte) (err error)

type ProtobufNullValue

type ProtobufNullValue string

ProtobufNullValue `NullValue` is a singleton enumeration to represent the null value for the `Value` type union. The JSON representation for `NullValue` is JSON `null`. - NULL_VALUE: Null value.

const (
	PROTOBUFNULLVALUE_NULL_VALUE ProtobufNullValue = "NULL_VALUE"
)

List of protobufNullValue

func NewProtobufNullValueFromValue

func NewProtobufNullValueFromValue(v string) (*ProtobufNullValue, error)

NewProtobufNullValueFromValue returns a pointer to a valid ProtobufNullValue for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ProtobufNullValue) IsValid

func (v ProtobufNullValue) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ProtobufNullValue) Ptr

Ptr returns reference to protobufNullValue value

func (*ProtobufNullValue) UnmarshalJSON

func (v *ProtobufNullValue) UnmarshalJSON(src []byte) error

type RolesAPIService

type RolesAPIService service

RolesAPIService RolesAPI service

func (*RolesAPIService) RolesAssignRole

func (a *RolesAPIService) RolesAssignRole(ctx context.Context, roleName string) ApiRolesAssignRoleRequest

RolesAssignRole Assign role

Assigns a role to a user within a domain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleName
@return ApiRolesAssignRoleRequest

func (*RolesAPIService) RolesAssignRoleExecute

func (a *RolesAPIService) RolesAssignRoleExecute(r ApiRolesAssignRoleRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*RolesAPIService) RolesCreateRole

func (a *RolesAPIService) RolesCreateRole(ctx context.Context) ApiRolesCreateRoleRequest

RolesCreateRole Create role

Creates a new custom role with specified permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRolesCreateRoleRequest

func (*RolesAPIService) RolesCreateRoleExecute

Execute executes the request

@return RolesCreateRoleResponse

func (*RolesAPIService) RolesDeleteRole

func (a *RolesAPIService) RolesDeleteRole(ctx context.Context, roleName string) ApiRolesDeleteRoleRequest

RolesDeleteRole Delete role

Deletes an existing custom role

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleName
@return ApiRolesDeleteRoleRequest

func (*RolesAPIService) RolesDeleteRoleExecute

func (a *RolesAPIService) RolesDeleteRoleExecute(r ApiRolesDeleteRoleRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*RolesAPIService) RolesDescribeRole

func (a *RolesAPIService) RolesDescribeRole(ctx context.Context, roleName string) ApiRolesDescribeRoleRequest

RolesDescribeRole Describe role

Returns detailed information about a specific role including permissions and inheritance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleName
@return ApiRolesDescribeRoleRequest

func (*RolesAPIService) RolesDescribeRoleExecute

Execute executes the request

@return RolesDescribeRoleResponse

func (*RolesAPIService) RolesListRoles

RolesListRoles List roles

Returns available roles for a specific domain type with their permissions and inheritance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRolesListRolesRequest

func (*RolesAPIService) RolesListRolesExecute

Execute executes the request

@return RolesListRolesResponse

func (*RolesAPIService) RolesUpdateRole

func (a *RolesAPIService) RolesUpdateRole(ctx context.Context, roleName string) ApiRolesUpdateRoleRequest

RolesUpdateRole Update role

Updates an existing custom role with new permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleName
@return ApiRolesUpdateRoleRequest

func (*RolesAPIService) RolesUpdateRoleExecute

Execute executes the request

@return RolesUpdateRoleResponse

type RolesAssignRoleBody

type RolesAssignRoleBody struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	UserId     *string                  `json:"userId,omitempty"`
	UserEmail  *string                  `json:"userEmail,omitempty"`
}

RolesAssignRoleBody struct for RolesAssignRoleBody

func NewRolesAssignRoleBody

func NewRolesAssignRoleBody() *RolesAssignRoleBody

NewRolesAssignRoleBody instantiates a new RolesAssignRoleBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRolesAssignRoleBodyWithDefaults

func NewRolesAssignRoleBodyWithDefaults() *RolesAssignRoleBody

NewRolesAssignRoleBodyWithDefaults instantiates a new RolesAssignRoleBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RolesAssignRoleBody) GetDomainId

func (o *RolesAssignRoleBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*RolesAssignRoleBody) GetDomainIdOk

func (o *RolesAssignRoleBody) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesAssignRoleBody) GetDomainType

func (o *RolesAssignRoleBody) GetDomainType() AuthorizationDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*RolesAssignRoleBody) GetDomainTypeOk

func (o *RolesAssignRoleBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

GetDomainTypeOk returns a tuple with the DomainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesAssignRoleBody) GetUserEmail

func (o *RolesAssignRoleBody) GetUserEmail() string

GetUserEmail returns the UserEmail field value if set, zero value otherwise.

func (*RolesAssignRoleBody) GetUserEmailOk

func (o *RolesAssignRoleBody) GetUserEmailOk() (*string, bool)

GetUserEmailOk returns a tuple with the UserEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesAssignRoleBody) GetUserId

func (o *RolesAssignRoleBody) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*RolesAssignRoleBody) GetUserIdOk

func (o *RolesAssignRoleBody) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesAssignRoleBody) HasDomainId

func (o *RolesAssignRoleBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*RolesAssignRoleBody) HasDomainType

func (o *RolesAssignRoleBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*RolesAssignRoleBody) HasUserEmail

func (o *RolesAssignRoleBody) HasUserEmail() bool

HasUserEmail returns a boolean if a field has been set.

func (*RolesAssignRoleBody) HasUserId

func (o *RolesAssignRoleBody) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (RolesAssignRoleBody) MarshalJSON

func (o RolesAssignRoleBody) MarshalJSON() ([]byte, error)

func (*RolesAssignRoleBody) SetDomainId

func (o *RolesAssignRoleBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*RolesAssignRoleBody) SetDomainType

func (o *RolesAssignRoleBody) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*RolesAssignRoleBody) SetUserEmail

func (o *RolesAssignRoleBody) SetUserEmail(v string)

SetUserEmail gets a reference to the given string and assigns it to the UserEmail field.

func (*RolesAssignRoleBody) SetUserId

func (o *RolesAssignRoleBody) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (RolesAssignRoleBody) ToMap

func (o RolesAssignRoleBody) ToMap() (map[string]interface{}, error)

type RolesCreateRoleRequest

type RolesCreateRoleRequest struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	Role       *RolesRole               `json:"role,omitempty"`
}

RolesCreateRoleRequest struct for RolesCreateRoleRequest

func NewRolesCreateRoleRequest

func NewRolesCreateRoleRequest() *RolesCreateRoleRequest

NewRolesCreateRoleRequest instantiates a new RolesCreateRoleRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRolesCreateRoleRequestWithDefaults

func NewRolesCreateRoleRequestWithDefaults() *RolesCreateRoleRequest

NewRolesCreateRoleRequestWithDefaults instantiates a new RolesCreateRoleRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RolesCreateRoleRequest) GetDomainId

func (o *RolesCreateRoleRequest) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*RolesCreateRoleRequest) GetDomainIdOk

func (o *RolesCreateRoleRequest) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesCreateRoleRequest) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*RolesCreateRoleRequest) GetDomainTypeOk

func (o *RolesCreateRoleRequest) GetDomainTypeOk() (*AuthorizationDomainType, bool)

GetDomainTypeOk returns a tuple with the DomainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesCreateRoleRequest) GetRole

func (o *RolesCreateRoleRequest) GetRole() RolesRole

GetRole returns the Role field value if set, zero value otherwise.

func (*RolesCreateRoleRequest) GetRoleOk

func (o *RolesCreateRoleRequest) GetRoleOk() (*RolesRole, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesCreateRoleRequest) HasDomainId

func (o *RolesCreateRoleRequest) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*RolesCreateRoleRequest) HasDomainType

func (o *RolesCreateRoleRequest) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*RolesCreateRoleRequest) HasRole

func (o *RolesCreateRoleRequest) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RolesCreateRoleRequest) MarshalJSON

func (o RolesCreateRoleRequest) MarshalJSON() ([]byte, error)

func (*RolesCreateRoleRequest) SetDomainId

func (o *RolesCreateRoleRequest) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*RolesCreateRoleRequest) SetDomainType

func (o *RolesCreateRoleRequest) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*RolesCreateRoleRequest) SetRole

func (o *RolesCreateRoleRequest) SetRole(v RolesRole)

SetRole gets a reference to the given RolesRole and assigns it to the Role field.

func (RolesCreateRoleRequest) ToMap

func (o RolesCreateRoleRequest) ToMap() (map[string]interface{}, error)

type RolesCreateRoleResponse

type RolesCreateRoleResponse struct {
	Role *RolesRole `json:"role,omitempty"`
}

RolesCreateRoleResponse struct for RolesCreateRoleResponse

func NewRolesCreateRoleResponse

func NewRolesCreateRoleResponse() *RolesCreateRoleResponse

NewRolesCreateRoleResponse instantiates a new RolesCreateRoleResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRolesCreateRoleResponseWithDefaults

func NewRolesCreateRoleResponseWithDefaults() *RolesCreateRoleResponse

NewRolesCreateRoleResponseWithDefaults instantiates a new RolesCreateRoleResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RolesCreateRoleResponse) GetRole

func (o *RolesCreateRoleResponse) GetRole() RolesRole

GetRole returns the Role field value if set, zero value otherwise.

func (*RolesCreateRoleResponse) GetRoleOk

func (o *RolesCreateRoleResponse) GetRoleOk() (*RolesRole, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesCreateRoleResponse) HasRole

func (o *RolesCreateRoleResponse) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RolesCreateRoleResponse) MarshalJSON

func (o RolesCreateRoleResponse) MarshalJSON() ([]byte, error)

func (*RolesCreateRoleResponse) SetRole

func (o *RolesCreateRoleResponse) SetRole(v RolesRole)

SetRole gets a reference to the given RolesRole and assigns it to the Role field.

func (RolesCreateRoleResponse) ToMap

func (o RolesCreateRoleResponse) ToMap() (map[string]interface{}, error)

type RolesDescribeRoleResponse

type RolesDescribeRoleResponse struct {
	Role *RolesRole `json:"role,omitempty"`
}

RolesDescribeRoleResponse struct for RolesDescribeRoleResponse

func NewRolesDescribeRoleResponse

func NewRolesDescribeRoleResponse() *RolesDescribeRoleResponse

NewRolesDescribeRoleResponse instantiates a new RolesDescribeRoleResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRolesDescribeRoleResponseWithDefaults

func NewRolesDescribeRoleResponseWithDefaults() *RolesDescribeRoleResponse

NewRolesDescribeRoleResponseWithDefaults instantiates a new RolesDescribeRoleResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RolesDescribeRoleResponse) GetRole

func (o *RolesDescribeRoleResponse) GetRole() RolesRole

GetRole returns the Role field value if set, zero value otherwise.

func (*RolesDescribeRoleResponse) GetRoleOk

func (o *RolesDescribeRoleResponse) GetRoleOk() (*RolesRole, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesDescribeRoleResponse) HasRole

func (o *RolesDescribeRoleResponse) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RolesDescribeRoleResponse) MarshalJSON

func (o RolesDescribeRoleResponse) MarshalJSON() ([]byte, error)

func (*RolesDescribeRoleResponse) SetRole

func (o *RolesDescribeRoleResponse) SetRole(v RolesRole)

SetRole gets a reference to the given RolesRole and assigns it to the Role field.

func (RolesDescribeRoleResponse) ToMap

func (o RolesDescribeRoleResponse) ToMap() (map[string]interface{}, error)

type RolesListRolesResponse

type RolesListRolesResponse struct {
	Roles []RolesRole `json:"roles,omitempty"`
}

RolesListRolesResponse struct for RolesListRolesResponse

func NewRolesListRolesResponse

func NewRolesListRolesResponse() *RolesListRolesResponse

NewRolesListRolesResponse instantiates a new RolesListRolesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRolesListRolesResponseWithDefaults

func NewRolesListRolesResponseWithDefaults() *RolesListRolesResponse

NewRolesListRolesResponseWithDefaults instantiates a new RolesListRolesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RolesListRolesResponse) GetRoles

func (o *RolesListRolesResponse) GetRoles() []RolesRole

GetRoles returns the Roles field value if set, zero value otherwise.

func (*RolesListRolesResponse) GetRolesOk

func (o *RolesListRolesResponse) GetRolesOk() ([]RolesRole, bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesListRolesResponse) HasRoles

func (o *RolesListRolesResponse) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (RolesListRolesResponse) MarshalJSON

func (o RolesListRolesResponse) MarshalJSON() ([]byte, error)

func (*RolesListRolesResponse) SetRoles

func (o *RolesListRolesResponse) SetRoles(v []RolesRole)

SetRoles gets a reference to the given []RolesRole and assigns it to the Roles field.

func (RolesListRolesResponse) ToMap

func (o RolesListRolesResponse) ToMap() (map[string]interface{}, error)

type RolesRole

type RolesRole struct {
	Metadata *RolesRoleMetadata `json:"metadata,omitempty"`
	Spec     *RolesRoleSpec     `json:"spec,omitempty"`
}

RolesRole struct for RolesRole

func NewRolesRole

func NewRolesRole() *RolesRole

NewRolesRole instantiates a new RolesRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRolesRoleWithDefaults

func NewRolesRoleWithDefaults() *RolesRole

NewRolesRoleWithDefaults instantiates a new RolesRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RolesRole) GetMetadata

func (o *RolesRole) GetMetadata() RolesRoleMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*RolesRole) GetMetadataOk

func (o *RolesRole) GetMetadataOk() (*RolesRoleMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRole) GetSpec

func (o *RolesRole) GetSpec() RolesRoleSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*RolesRole) GetSpecOk

func (o *RolesRole) GetSpecOk() (*RolesRoleSpec, bool)

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRole) HasMetadata

func (o *RolesRole) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*RolesRole) HasSpec

func (o *RolesRole) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (RolesRole) MarshalJSON

func (o RolesRole) MarshalJSON() ([]byte, error)

func (*RolesRole) SetMetadata

func (o *RolesRole) SetMetadata(v RolesRoleMetadata)

SetMetadata gets a reference to the given RolesRoleMetadata and assigns it to the Metadata field.

func (*RolesRole) SetSpec

func (o *RolesRole) SetSpec(v RolesRoleSpec)

SetSpec gets a reference to the given RolesRoleSpec and assigns it to the Spec field.

func (RolesRole) ToMap

func (o RolesRole) ToMap() (map[string]interface{}, error)

type RolesRoleMetadata

type RolesRoleMetadata struct {
	Name       *string                  `json:"name,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	CreatedAt  *time.Time               `json:"createdAt,omitempty"`
	UpdatedAt  *time.Time               `json:"updatedAt,omitempty"`
}

RolesRoleMetadata struct for RolesRoleMetadata

func NewRolesRoleMetadata

func NewRolesRoleMetadata() *RolesRoleMetadata

NewRolesRoleMetadata instantiates a new RolesRoleMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRolesRoleMetadataWithDefaults

func NewRolesRoleMetadataWithDefaults() *RolesRoleMetadata

NewRolesRoleMetadataWithDefaults instantiates a new RolesRoleMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RolesRoleMetadata) GetCreatedAt

func (o *RolesRoleMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*RolesRoleMetadata) GetCreatedAtOk

func (o *RolesRoleMetadata) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRoleMetadata) GetDomainId

func (o *RolesRoleMetadata) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*RolesRoleMetadata) GetDomainIdOk

func (o *RolesRoleMetadata) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRoleMetadata) GetDomainType

func (o *RolesRoleMetadata) GetDomainType() AuthorizationDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*RolesRoleMetadata) GetDomainTypeOk

func (o *RolesRoleMetadata) GetDomainTypeOk() (*AuthorizationDomainType, bool)

GetDomainTypeOk returns a tuple with the DomainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRoleMetadata) GetName

func (o *RolesRoleMetadata) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RolesRoleMetadata) GetNameOk

func (o *RolesRoleMetadata) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRoleMetadata) GetUpdatedAt

func (o *RolesRoleMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*RolesRoleMetadata) GetUpdatedAtOk

func (o *RolesRoleMetadata) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRoleMetadata) HasCreatedAt

func (o *RolesRoleMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*RolesRoleMetadata) HasDomainId

func (o *RolesRoleMetadata) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*RolesRoleMetadata) HasDomainType

func (o *RolesRoleMetadata) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*RolesRoleMetadata) HasName

func (o *RolesRoleMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (*RolesRoleMetadata) HasUpdatedAt

func (o *RolesRoleMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (RolesRoleMetadata) MarshalJSON

func (o RolesRoleMetadata) MarshalJSON() ([]byte, error)

func (*RolesRoleMetadata) SetCreatedAt

func (o *RolesRoleMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*RolesRoleMetadata) SetDomainId

func (o *RolesRoleMetadata) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*RolesRoleMetadata) SetDomainType

func (o *RolesRoleMetadata) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*RolesRoleMetadata) SetName

func (o *RolesRoleMetadata) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RolesRoleMetadata) SetUpdatedAt

func (o *RolesRoleMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (RolesRoleMetadata) ToMap

func (o RolesRoleMetadata) ToMap() (map[string]interface{}, error)

type RolesRoleSpec

type RolesRoleSpec struct {
	DisplayName   *string                   `json:"displayName,omitempty"`
	Description   *string                   `json:"description,omitempty"`
	Permissions   []AuthorizationPermission `json:"permissions,omitempty"`
	InheritedRole *RolesRole                `json:"inheritedRole,omitempty"`
}

RolesRoleSpec struct for RolesRoleSpec

func NewRolesRoleSpec

func NewRolesRoleSpec() *RolesRoleSpec

NewRolesRoleSpec instantiates a new RolesRoleSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRolesRoleSpecWithDefaults

func NewRolesRoleSpecWithDefaults() *RolesRoleSpec

NewRolesRoleSpecWithDefaults instantiates a new RolesRoleSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RolesRoleSpec) GetDescription

func (o *RolesRoleSpec) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RolesRoleSpec) GetDescriptionOk

func (o *RolesRoleSpec) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRoleSpec) GetDisplayName

func (o *RolesRoleSpec) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*RolesRoleSpec) GetDisplayNameOk

func (o *RolesRoleSpec) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRoleSpec) GetInheritedRole

func (o *RolesRoleSpec) GetInheritedRole() RolesRole

GetInheritedRole returns the InheritedRole field value if set, zero value otherwise.

func (*RolesRoleSpec) GetInheritedRoleOk

func (o *RolesRoleSpec) GetInheritedRoleOk() (*RolesRole, bool)

GetInheritedRoleOk returns a tuple with the InheritedRole field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRoleSpec) GetPermissions

func (o *RolesRoleSpec) GetPermissions() []AuthorizationPermission

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*RolesRoleSpec) GetPermissionsOk

func (o *RolesRoleSpec) GetPermissionsOk() ([]AuthorizationPermission, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesRoleSpec) HasDescription

func (o *RolesRoleSpec) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RolesRoleSpec) HasDisplayName

func (o *RolesRoleSpec) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*RolesRoleSpec) HasInheritedRole

func (o *RolesRoleSpec) HasInheritedRole() bool

HasInheritedRole returns a boolean if a field has been set.

func (*RolesRoleSpec) HasPermissions

func (o *RolesRoleSpec) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (RolesRoleSpec) MarshalJSON

func (o RolesRoleSpec) MarshalJSON() ([]byte, error)

func (*RolesRoleSpec) SetDescription

func (o *RolesRoleSpec) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RolesRoleSpec) SetDisplayName

func (o *RolesRoleSpec) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*RolesRoleSpec) SetInheritedRole

func (o *RolesRoleSpec) SetInheritedRole(v RolesRole)

SetInheritedRole gets a reference to the given RolesRole and assigns it to the InheritedRole field.

func (*RolesRoleSpec) SetPermissions

func (o *RolesRoleSpec) SetPermissions(v []AuthorizationPermission)

SetPermissions gets a reference to the given []AuthorizationPermission and assigns it to the Permissions field.

func (RolesRoleSpec) ToMap

func (o RolesRoleSpec) ToMap() (map[string]interface{}, error)

type RolesUpdateRoleBody

type RolesUpdateRoleBody struct {
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	Role       *RolesRole               `json:"role,omitempty"`
}

RolesUpdateRoleBody struct for RolesUpdateRoleBody

func NewRolesUpdateRoleBody

func NewRolesUpdateRoleBody() *RolesUpdateRoleBody

NewRolesUpdateRoleBody instantiates a new RolesUpdateRoleBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRolesUpdateRoleBodyWithDefaults

func NewRolesUpdateRoleBodyWithDefaults() *RolesUpdateRoleBody

NewRolesUpdateRoleBodyWithDefaults instantiates a new RolesUpdateRoleBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RolesUpdateRoleBody) GetDomainId

func (o *RolesUpdateRoleBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*RolesUpdateRoleBody) GetDomainIdOk

func (o *RolesUpdateRoleBody) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesUpdateRoleBody) GetDomainType

func (o *RolesUpdateRoleBody) GetDomainType() AuthorizationDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*RolesUpdateRoleBody) GetDomainTypeOk

func (o *RolesUpdateRoleBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

GetDomainTypeOk returns a tuple with the DomainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesUpdateRoleBody) GetRole

func (o *RolesUpdateRoleBody) GetRole() RolesRole

GetRole returns the Role field value if set, zero value otherwise.

func (*RolesUpdateRoleBody) GetRoleOk

func (o *RolesUpdateRoleBody) GetRoleOk() (*RolesRole, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesUpdateRoleBody) HasDomainId

func (o *RolesUpdateRoleBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*RolesUpdateRoleBody) HasDomainType

func (o *RolesUpdateRoleBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*RolesUpdateRoleBody) HasRole

func (o *RolesUpdateRoleBody) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RolesUpdateRoleBody) MarshalJSON

func (o RolesUpdateRoleBody) MarshalJSON() ([]byte, error)

func (*RolesUpdateRoleBody) SetDomainId

func (o *RolesUpdateRoleBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*RolesUpdateRoleBody) SetDomainType

func (o *RolesUpdateRoleBody) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*RolesUpdateRoleBody) SetRole

func (o *RolesUpdateRoleBody) SetRole(v RolesRole)

SetRole gets a reference to the given RolesRole and assigns it to the Role field.

func (RolesUpdateRoleBody) ToMap

func (o RolesUpdateRoleBody) ToMap() (map[string]interface{}, error)

type RolesUpdateRoleResponse

type RolesUpdateRoleResponse struct {
	Role *RolesRole `json:"role,omitempty"`
}

RolesUpdateRoleResponse struct for RolesUpdateRoleResponse

func NewRolesUpdateRoleResponse

func NewRolesUpdateRoleResponse() *RolesUpdateRoleResponse

NewRolesUpdateRoleResponse instantiates a new RolesUpdateRoleResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRolesUpdateRoleResponseWithDefaults

func NewRolesUpdateRoleResponseWithDefaults() *RolesUpdateRoleResponse

NewRolesUpdateRoleResponseWithDefaults instantiates a new RolesUpdateRoleResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RolesUpdateRoleResponse) GetRole

func (o *RolesUpdateRoleResponse) GetRole() RolesRole

GetRole returns the Role field value if set, zero value otherwise.

func (*RolesUpdateRoleResponse) GetRoleOk

func (o *RolesUpdateRoleResponse) GetRoleOk() (*RolesRole, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RolesUpdateRoleResponse) HasRole

func (o *RolesUpdateRoleResponse) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RolesUpdateRoleResponse) MarshalJSON

func (o RolesUpdateRoleResponse) MarshalJSON() ([]byte, error)

func (*RolesUpdateRoleResponse) SetRole

func (o *RolesUpdateRoleResponse) SetRole(v RolesRole)

SetRole gets a reference to the given RolesRole and assigns it to the Role field.

func (RolesUpdateRoleResponse) ToMap

func (o RolesUpdateRoleResponse) ToMap() (map[string]interface{}, error)

type SecretAPIService

type SecretAPIService service

SecretAPIService SecretAPI service

func (*SecretAPIService) SecretsCreateSecret

func (a *SecretAPIService) SecretsCreateSecret(ctx context.Context) ApiSecretsCreateSecretRequest

SecretsCreateSecret Create a new secret

Creates a new secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSecretsCreateSecretRequest

func (*SecretAPIService) SecretsCreateSecretExecute

Execute executes the request

@return SecretsCreateSecretResponse

func (*SecretAPIService) SecretsDeleteSecret

func (a *SecretAPIService) SecretsDeleteSecret(ctx context.Context, idOrName string) ApiSecretsDeleteSecretRequest

SecretsDeleteSecret Deletes a secret

Deletes the specified secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param idOrName
@return ApiSecretsDeleteSecretRequest

func (*SecretAPIService) SecretsDeleteSecretExecute

func (a *SecretAPIService) SecretsDeleteSecretExecute(r ApiSecretsDeleteSecretRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*SecretAPIService) SecretsDescribeSecret

func (a *SecretAPIService) SecretsDescribeSecret(ctx context.Context, idOrName string) ApiSecretsDescribeSecretRequest

SecretsDescribeSecret Get secret details

Returns the details of a specific secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param idOrName
@return ApiSecretsDescribeSecretRequest

func (*SecretAPIService) SecretsDescribeSecretExecute

Execute executes the request

@return SecretsDescribeSecretResponse

func (*SecretAPIService) SecretsListSecrets

func (a *SecretAPIService) SecretsListSecrets(ctx context.Context) ApiSecretsListSecretsRequest

SecretsListSecrets List secrets

Returns the list of secrets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSecretsListSecretsRequest

func (*SecretAPIService) SecretsListSecretsExecute

Execute executes the request

@return SecretsListSecretsResponse

func (*SecretAPIService) SecretsUpdateSecret

func (a *SecretAPIService) SecretsUpdateSecret(ctx context.Context, idOrName string) ApiSecretsUpdateSecretRequest

SecretsUpdateSecret Updates a secret

Updates the specified secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param idOrName
@return ApiSecretsUpdateSecretRequest

func (*SecretAPIService) SecretsUpdateSecretExecute

Execute executes the request

@return SecretsUpdateSecretResponse

type SecretLocal

type SecretLocal struct {
	Data *map[string]string `json:"data,omitempty"`
}

SecretLocal Local secrets are stored and managed by SuperPlane itself.

func NewSecretLocal

func NewSecretLocal() *SecretLocal

NewSecretLocal instantiates a new SecretLocal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretLocalWithDefaults

func NewSecretLocalWithDefaults() *SecretLocal

NewSecretLocalWithDefaults instantiates a new SecretLocal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretLocal) GetData

func (o *SecretLocal) GetData() map[string]string

GetData returns the Data field value if set, zero value otherwise.

func (*SecretLocal) GetDataOk

func (o *SecretLocal) GetDataOk() (*map[string]string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretLocal) HasData

func (o *SecretLocal) HasData() bool

HasData returns a boolean if a field has been set.

func (SecretLocal) MarshalJSON

func (o SecretLocal) MarshalJSON() ([]byte, error)

func (*SecretLocal) SetData

func (o *SecretLocal) SetData(v map[string]string)

SetData gets a reference to the given map[string]string and assigns it to the Data field.

func (SecretLocal) ToMap

func (o SecretLocal) ToMap() (map[string]interface{}, error)

type SecretProvider

type SecretProvider string

SecretProvider the model 'SecretProvider'

const (
	SECRETPROVIDER_PROVIDER_UNKNOWN SecretProvider = "PROVIDER_UNKNOWN"
	SECRETPROVIDER_PROVIDER_LOCAL   SecretProvider = "PROVIDER_LOCAL"
)

List of SecretProvider

func NewSecretProviderFromValue

func NewSecretProviderFromValue(v string) (*SecretProvider, error)

NewSecretProviderFromValue returns a pointer to a valid SecretProvider for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SecretProvider) IsValid

func (v SecretProvider) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SecretProvider) Ptr

func (v SecretProvider) Ptr() *SecretProvider

Ptr returns reference to SecretProvider value

func (*SecretProvider) UnmarshalJSON

func (v *SecretProvider) UnmarshalJSON(src []byte) error

type SecretsCreateSecretRequest

type SecretsCreateSecretRequest struct {
	Secret     *SecretsSecret           `json:"secret,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
}

SecretsCreateSecretRequest struct for SecretsCreateSecretRequest

func NewSecretsCreateSecretRequest

func NewSecretsCreateSecretRequest() *SecretsCreateSecretRequest

NewSecretsCreateSecretRequest instantiates a new SecretsCreateSecretRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretsCreateSecretRequestWithDefaults

func NewSecretsCreateSecretRequestWithDefaults() *SecretsCreateSecretRequest

NewSecretsCreateSecretRequestWithDefaults instantiates a new SecretsCreateSecretRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretsCreateSecretRequest) GetDomainId

func (o *SecretsCreateSecretRequest) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*SecretsCreateSecretRequest) GetDomainIdOk

func (o *SecretsCreateSecretRequest) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsCreateSecretRequest) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*SecretsCreateSecretRequest) GetDomainTypeOk

func (o *SecretsCreateSecretRequest) GetDomainTypeOk() (*AuthorizationDomainType, bool)

GetDomainTypeOk returns a tuple with the DomainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsCreateSecretRequest) GetSecret

GetSecret returns the Secret field value if set, zero value otherwise.

func (*SecretsCreateSecretRequest) GetSecretOk

func (o *SecretsCreateSecretRequest) GetSecretOk() (*SecretsSecret, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsCreateSecretRequest) HasDomainId

func (o *SecretsCreateSecretRequest) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*SecretsCreateSecretRequest) HasDomainType

func (o *SecretsCreateSecretRequest) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*SecretsCreateSecretRequest) HasSecret

func (o *SecretsCreateSecretRequest) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsCreateSecretRequest) MarshalJSON

func (o SecretsCreateSecretRequest) MarshalJSON() ([]byte, error)

func (*SecretsCreateSecretRequest) SetDomainId

func (o *SecretsCreateSecretRequest) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*SecretsCreateSecretRequest) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*SecretsCreateSecretRequest) SetSecret

func (o *SecretsCreateSecretRequest) SetSecret(v SecretsSecret)

SetSecret gets a reference to the given SecretsSecret and assigns it to the Secret field.

func (SecretsCreateSecretRequest) ToMap

func (o SecretsCreateSecretRequest) ToMap() (map[string]interface{}, error)

type SecretsCreateSecretResponse

type SecretsCreateSecretResponse struct {
	Secret *SecretsSecret `json:"secret,omitempty"`
}

SecretsCreateSecretResponse struct for SecretsCreateSecretResponse

func NewSecretsCreateSecretResponse

func NewSecretsCreateSecretResponse() *SecretsCreateSecretResponse

NewSecretsCreateSecretResponse instantiates a new SecretsCreateSecretResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretsCreateSecretResponseWithDefaults

func NewSecretsCreateSecretResponseWithDefaults() *SecretsCreateSecretResponse

NewSecretsCreateSecretResponseWithDefaults instantiates a new SecretsCreateSecretResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretsCreateSecretResponse) GetSecret

GetSecret returns the Secret field value if set, zero value otherwise.

func (*SecretsCreateSecretResponse) GetSecretOk

func (o *SecretsCreateSecretResponse) GetSecretOk() (*SecretsSecret, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsCreateSecretResponse) HasSecret

func (o *SecretsCreateSecretResponse) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsCreateSecretResponse) MarshalJSON

func (o SecretsCreateSecretResponse) MarshalJSON() ([]byte, error)

func (*SecretsCreateSecretResponse) SetSecret

SetSecret gets a reference to the given SecretsSecret and assigns it to the Secret field.

func (SecretsCreateSecretResponse) ToMap

func (o SecretsCreateSecretResponse) ToMap() (map[string]interface{}, error)

type SecretsDescribeSecretResponse

type SecretsDescribeSecretResponse struct {
	Secret *SecretsSecret `json:"secret,omitempty"`
}

SecretsDescribeSecretResponse struct for SecretsDescribeSecretResponse

func NewSecretsDescribeSecretResponse

func NewSecretsDescribeSecretResponse() *SecretsDescribeSecretResponse

NewSecretsDescribeSecretResponse instantiates a new SecretsDescribeSecretResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretsDescribeSecretResponseWithDefaults

func NewSecretsDescribeSecretResponseWithDefaults() *SecretsDescribeSecretResponse

NewSecretsDescribeSecretResponseWithDefaults instantiates a new SecretsDescribeSecretResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretsDescribeSecretResponse) GetSecret

GetSecret returns the Secret field value if set, zero value otherwise.

func (*SecretsDescribeSecretResponse) GetSecretOk

func (o *SecretsDescribeSecretResponse) GetSecretOk() (*SecretsSecret, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsDescribeSecretResponse) HasSecret

func (o *SecretsDescribeSecretResponse) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsDescribeSecretResponse) MarshalJSON

func (o SecretsDescribeSecretResponse) MarshalJSON() ([]byte, error)

func (*SecretsDescribeSecretResponse) SetSecret

SetSecret gets a reference to the given SecretsSecret and assigns it to the Secret field.

func (SecretsDescribeSecretResponse) ToMap

func (o SecretsDescribeSecretResponse) ToMap() (map[string]interface{}, error)

type SecretsListSecretsResponse

type SecretsListSecretsResponse struct {
	Secrets []SecretsSecret `json:"secrets,omitempty"`
}

SecretsListSecretsResponse struct for SecretsListSecretsResponse

func NewSecretsListSecretsResponse

func NewSecretsListSecretsResponse() *SecretsListSecretsResponse

NewSecretsListSecretsResponse instantiates a new SecretsListSecretsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretsListSecretsResponseWithDefaults

func NewSecretsListSecretsResponseWithDefaults() *SecretsListSecretsResponse

NewSecretsListSecretsResponseWithDefaults instantiates a new SecretsListSecretsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretsListSecretsResponse) GetSecrets

func (o *SecretsListSecretsResponse) GetSecrets() []SecretsSecret

GetSecrets returns the Secrets field value if set, zero value otherwise.

func (*SecretsListSecretsResponse) GetSecretsOk

func (o *SecretsListSecretsResponse) GetSecretsOk() ([]SecretsSecret, bool)

GetSecretsOk returns a tuple with the Secrets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsListSecretsResponse) HasSecrets

func (o *SecretsListSecretsResponse) HasSecrets() bool

HasSecrets returns a boolean if a field has been set.

func (SecretsListSecretsResponse) MarshalJSON

func (o SecretsListSecretsResponse) MarshalJSON() ([]byte, error)

func (*SecretsListSecretsResponse) SetSecrets

func (o *SecretsListSecretsResponse) SetSecrets(v []SecretsSecret)

SetSecrets gets a reference to the given []SecretsSecret and assigns it to the Secrets field.

func (SecretsListSecretsResponse) ToMap

func (o SecretsListSecretsResponse) ToMap() (map[string]interface{}, error)

type SecretsSecret

type SecretsSecret struct {
	Metadata *SecretsSecretMetadata `json:"metadata,omitempty"`
	Spec     *SecretsSecretSpec     `json:"spec,omitempty"`
}

SecretsSecret struct for SecretsSecret

func NewSecretsSecret

func NewSecretsSecret() *SecretsSecret

NewSecretsSecret instantiates a new SecretsSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretsSecretWithDefaults

func NewSecretsSecretWithDefaults() *SecretsSecret

NewSecretsSecretWithDefaults instantiates a new SecretsSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretsSecret) GetMetadata

func (o *SecretsSecret) GetMetadata() SecretsSecretMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*SecretsSecret) GetMetadataOk

func (o *SecretsSecret) GetMetadataOk() (*SecretsSecretMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSecret) GetSpec

func (o *SecretsSecret) GetSpec() SecretsSecretSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*SecretsSecret) GetSpecOk

func (o *SecretsSecret) GetSpecOk() (*SecretsSecretSpec, bool)

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSecret) HasMetadata

func (o *SecretsSecret) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*SecretsSecret) HasSpec

func (o *SecretsSecret) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (SecretsSecret) MarshalJSON

func (o SecretsSecret) MarshalJSON() ([]byte, error)

func (*SecretsSecret) SetMetadata

func (o *SecretsSecret) SetMetadata(v SecretsSecretMetadata)

SetMetadata gets a reference to the given SecretsSecretMetadata and assigns it to the Metadata field.

func (*SecretsSecret) SetSpec

func (o *SecretsSecret) SetSpec(v SecretsSecretSpec)

SetSpec gets a reference to the given SecretsSecretSpec and assigns it to the Spec field.

func (SecretsSecret) ToMap

func (o SecretsSecret) ToMap() (map[string]interface{}, error)

type SecretsSecretMetadata

type SecretsSecretMetadata struct {
	Id         *string                  `json:"id,omitempty"`
	Name       *string                  `json:"name,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	CreatedAt  *time.Time               `json:"createdAt,omitempty"`
}

SecretsSecretMetadata struct for SecretsSecretMetadata

func NewSecretsSecretMetadata

func NewSecretsSecretMetadata() *SecretsSecretMetadata

NewSecretsSecretMetadata instantiates a new SecretsSecretMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretsSecretMetadataWithDefaults

func NewSecretsSecretMetadataWithDefaults() *SecretsSecretMetadata

NewSecretsSecretMetadataWithDefaults instantiates a new SecretsSecretMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretsSecretMetadata) GetCreatedAt

func (o *SecretsSecretMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*SecretsSecretMetadata) GetCreatedAtOk

func (o *SecretsSecretMetadata) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSecretMetadata) GetDomainId

func (o *SecretsSecretMetadata) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*SecretsSecretMetadata) GetDomainIdOk

func (o *SecretsSecretMetadata) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSecretMetadata) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*SecretsSecretMetadata) GetDomainTypeOk

func (o *SecretsSecretMetadata) GetDomainTypeOk() (*AuthorizationDomainType, bool)

GetDomainTypeOk returns a tuple with the DomainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSecretMetadata) GetId

func (o *SecretsSecretMetadata) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*SecretsSecretMetadata) GetIdOk

func (o *SecretsSecretMetadata) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSecretMetadata) GetName

func (o *SecretsSecretMetadata) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SecretsSecretMetadata) GetNameOk

func (o *SecretsSecretMetadata) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSecretMetadata) HasCreatedAt

func (o *SecretsSecretMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SecretsSecretMetadata) HasDomainId

func (o *SecretsSecretMetadata) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*SecretsSecretMetadata) HasDomainType

func (o *SecretsSecretMetadata) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*SecretsSecretMetadata) HasId

func (o *SecretsSecretMetadata) HasId() bool

HasId returns a boolean if a field has been set.

func (*SecretsSecretMetadata) HasName

func (o *SecretsSecretMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (SecretsSecretMetadata) MarshalJSON

func (o SecretsSecretMetadata) MarshalJSON() ([]byte, error)

func (*SecretsSecretMetadata) SetCreatedAt

func (o *SecretsSecretMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*SecretsSecretMetadata) SetDomainId

func (o *SecretsSecretMetadata) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*SecretsSecretMetadata) SetDomainType

func (o *SecretsSecretMetadata) SetDomainType(v AuthorizationDomainType)

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*SecretsSecretMetadata) SetId

func (o *SecretsSecretMetadata) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*SecretsSecretMetadata) SetName

func (o *SecretsSecretMetadata) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (SecretsSecretMetadata) ToMap

func (o SecretsSecretMetadata) ToMap() (map[string]interface{}, error)

type SecretsSecretSpec

type SecretsSecretSpec struct {
	Provider *SecretProvider `json:"provider,omitempty"`
	Local    *SecretLocal    `json:"local,omitempty"`
}

SecretsSecretSpec struct for SecretsSecretSpec

func NewSecretsSecretSpec

func NewSecretsSecretSpec() *SecretsSecretSpec

NewSecretsSecretSpec instantiates a new SecretsSecretSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretsSecretSpecWithDefaults

func NewSecretsSecretSpecWithDefaults() *SecretsSecretSpec

NewSecretsSecretSpecWithDefaults instantiates a new SecretsSecretSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretsSecretSpec) GetLocal

func (o *SecretsSecretSpec) GetLocal() SecretLocal

GetLocal returns the Local field value if set, zero value otherwise.

func (*SecretsSecretSpec) GetLocalOk

func (o *SecretsSecretSpec) GetLocalOk() (*SecretLocal, bool)

GetLocalOk returns a tuple with the Local field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSecretSpec) GetProvider

func (o *SecretsSecretSpec) GetProvider() SecretProvider

GetProvider returns the Provider field value if set, zero value otherwise.

func (*SecretsSecretSpec) GetProviderOk

func (o *SecretsSecretSpec) GetProviderOk() (*SecretProvider, bool)

GetProviderOk returns a tuple with the Provider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSecretSpec) HasLocal

func (o *SecretsSecretSpec) HasLocal() bool

HasLocal returns a boolean if a field has been set.

func (*SecretsSecretSpec) HasProvider

func (o *SecretsSecretSpec) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (SecretsSecretSpec) MarshalJSON

func (o SecretsSecretSpec) MarshalJSON() ([]byte, error)

func (*SecretsSecretSpec) SetLocal

func (o *SecretsSecretSpec) SetLocal(v SecretLocal)

SetLocal gets a reference to the given SecretLocal and assigns it to the Local field.

func (*SecretsSecretSpec) SetProvider

func (o *SecretsSecretSpec) SetProvider(v SecretProvider)

SetProvider gets a reference to the given SecretProvider and assigns it to the Provider field.

func (SecretsSecretSpec) ToMap

func (o SecretsSecretSpec) ToMap() (map[string]interface{}, error)

type SecretsUpdateSecretBody

type SecretsUpdateSecretBody struct {
	Secret     *SecretsSecret           `json:"secret,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
}

SecretsUpdateSecretBody struct for SecretsUpdateSecretBody

func NewSecretsUpdateSecretBody

func NewSecretsUpdateSecretBody() *SecretsUpdateSecretBody

NewSecretsUpdateSecretBody instantiates a new SecretsUpdateSecretBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretsUpdateSecretBodyWithDefaults

func NewSecretsUpdateSecretBodyWithDefaults() *SecretsUpdateSecretBody

NewSecretsUpdateSecretBodyWithDefaults instantiates a new SecretsUpdateSecretBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretsUpdateSecretBody) GetDomainId

func (o *SecretsUpdateSecretBody) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*SecretsUpdateSecretBody) GetDomainIdOk

func (o *SecretsUpdateSecretBody) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsUpdateSecretBody) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*SecretsUpdateSecretBody) GetDomainTypeOk

func (o *SecretsUpdateSecretBody) GetDomainTypeOk() (*AuthorizationDomainType, bool)

GetDomainTypeOk returns a tuple with the DomainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsUpdateSecretBody) GetSecret

func (o *SecretsUpdateSecretBody) GetSecret() SecretsSecret

GetSecret returns the Secret field value if set, zero value otherwise.

func (*SecretsUpdateSecretBody) GetSecretOk

func (o *SecretsUpdateSecretBody) GetSecretOk() (*SecretsSecret, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsUpdateSecretBody) HasDomainId

func (o *SecretsUpdateSecretBody) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*SecretsUpdateSecretBody) HasDomainType

func (o *SecretsUpdateSecretBody) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*SecretsUpdateSecretBody) HasSecret

func (o *SecretsUpdateSecretBody) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsUpdateSecretBody) MarshalJSON

func (o SecretsUpdateSecretBody) MarshalJSON() ([]byte, error)

func (*SecretsUpdateSecretBody) SetDomainId

func (o *SecretsUpdateSecretBody) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*SecretsUpdateSecretBody) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*SecretsUpdateSecretBody) SetSecret

func (o *SecretsUpdateSecretBody) SetSecret(v SecretsSecret)

SetSecret gets a reference to the given SecretsSecret and assigns it to the Secret field.

func (SecretsUpdateSecretBody) ToMap

func (o SecretsUpdateSecretBody) ToMap() (map[string]interface{}, error)

type SecretsUpdateSecretResponse

type SecretsUpdateSecretResponse struct {
	Secret *SecretsSecret `json:"secret,omitempty"`
}

SecretsUpdateSecretResponse struct for SecretsUpdateSecretResponse

func NewSecretsUpdateSecretResponse

func NewSecretsUpdateSecretResponse() *SecretsUpdateSecretResponse

NewSecretsUpdateSecretResponse instantiates a new SecretsUpdateSecretResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretsUpdateSecretResponseWithDefaults

func NewSecretsUpdateSecretResponseWithDefaults() *SecretsUpdateSecretResponse

NewSecretsUpdateSecretResponseWithDefaults instantiates a new SecretsUpdateSecretResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretsUpdateSecretResponse) GetSecret

GetSecret returns the Secret field value if set, zero value otherwise.

func (*SecretsUpdateSecretResponse) GetSecretOk

func (o *SecretsUpdateSecretResponse) GetSecretOk() (*SecretsSecret, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsUpdateSecretResponse) HasSecret

func (o *SecretsUpdateSecretResponse) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (SecretsUpdateSecretResponse) MarshalJSON

func (o SecretsUpdateSecretResponse) MarshalJSON() ([]byte, error)

func (*SecretsUpdateSecretResponse) SetSecret

SetSecret gets a reference to the given SecretsSecret and assigns it to the Secret field.

func (SecretsUpdateSecretResponse) ToMap

func (o SecretsUpdateSecretResponse) ToMap() (map[string]interface{}, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SuperplaneApplicationsListApplicationsResponse

type SuperplaneApplicationsListApplicationsResponse struct {
	Applications []ApplicationsApplicationDefinition `json:"applications,omitempty"`
}

SuperplaneApplicationsListApplicationsResponse struct for SuperplaneApplicationsListApplicationsResponse

func NewSuperplaneApplicationsListApplicationsResponse

func NewSuperplaneApplicationsListApplicationsResponse() *SuperplaneApplicationsListApplicationsResponse

NewSuperplaneApplicationsListApplicationsResponse instantiates a new SuperplaneApplicationsListApplicationsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperplaneApplicationsListApplicationsResponseWithDefaults

func NewSuperplaneApplicationsListApplicationsResponseWithDefaults() *SuperplaneApplicationsListApplicationsResponse

NewSuperplaneApplicationsListApplicationsResponseWithDefaults instantiates a new SuperplaneApplicationsListApplicationsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperplaneApplicationsListApplicationsResponse) GetApplications

GetApplications returns the Applications field value if set, zero value otherwise.

func (*SuperplaneApplicationsListApplicationsResponse) GetApplicationsOk

GetApplicationsOk returns a tuple with the Applications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneApplicationsListApplicationsResponse) HasApplications

HasApplications returns a boolean if a field has been set.

func (SuperplaneApplicationsListApplicationsResponse) MarshalJSON

func (*SuperplaneApplicationsListApplicationsResponse) SetApplications

SetApplications gets a reference to the given []ApplicationsApplicationDefinition and assigns it to the Applications field.

func (SuperplaneApplicationsListApplicationsResponse) ToMap

func (o SuperplaneApplicationsListApplicationsResponse) ToMap() (map[string]interface{}, error)

type SuperplaneBlueprintsOutputChannel

type SuperplaneBlueprintsOutputChannel struct {
	Name              *string `json:"name,omitempty"`
	NodeId            *string `json:"nodeId,omitempty"`
	NodeOutputChannel *string `json:"nodeOutputChannel,omitempty"`
}

SuperplaneBlueprintsOutputChannel struct for SuperplaneBlueprintsOutputChannel

func NewSuperplaneBlueprintsOutputChannel

func NewSuperplaneBlueprintsOutputChannel() *SuperplaneBlueprintsOutputChannel

NewSuperplaneBlueprintsOutputChannel instantiates a new SuperplaneBlueprintsOutputChannel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperplaneBlueprintsOutputChannelWithDefaults

func NewSuperplaneBlueprintsOutputChannelWithDefaults() *SuperplaneBlueprintsOutputChannel

NewSuperplaneBlueprintsOutputChannelWithDefaults instantiates a new SuperplaneBlueprintsOutputChannel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperplaneBlueprintsOutputChannel) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*SuperplaneBlueprintsOutputChannel) GetNameOk

func (o *SuperplaneBlueprintsOutputChannel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneBlueprintsOutputChannel) GetNodeId

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*SuperplaneBlueprintsOutputChannel) GetNodeIdOk

func (o *SuperplaneBlueprintsOutputChannel) GetNodeIdOk() (*string, bool)

GetNodeIdOk returns a tuple with the NodeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneBlueprintsOutputChannel) GetNodeOutputChannel

func (o *SuperplaneBlueprintsOutputChannel) GetNodeOutputChannel() string

GetNodeOutputChannel returns the NodeOutputChannel field value if set, zero value otherwise.

func (*SuperplaneBlueprintsOutputChannel) GetNodeOutputChannelOk

func (o *SuperplaneBlueprintsOutputChannel) GetNodeOutputChannelOk() (*string, bool)

GetNodeOutputChannelOk returns a tuple with the NodeOutputChannel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneBlueprintsOutputChannel) HasName

HasName returns a boolean if a field has been set.

func (*SuperplaneBlueprintsOutputChannel) HasNodeId

func (o *SuperplaneBlueprintsOutputChannel) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*SuperplaneBlueprintsOutputChannel) HasNodeOutputChannel

func (o *SuperplaneBlueprintsOutputChannel) HasNodeOutputChannel() bool

HasNodeOutputChannel returns a boolean if a field has been set.

func (SuperplaneBlueprintsOutputChannel) MarshalJSON

func (o SuperplaneBlueprintsOutputChannel) MarshalJSON() ([]byte, error)

func (*SuperplaneBlueprintsOutputChannel) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*SuperplaneBlueprintsOutputChannel) SetNodeId

func (o *SuperplaneBlueprintsOutputChannel) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*SuperplaneBlueprintsOutputChannel) SetNodeOutputChannel

func (o *SuperplaneBlueprintsOutputChannel) SetNodeOutputChannel(v string)

SetNodeOutputChannel gets a reference to the given string and assigns it to the NodeOutputChannel field.

func (SuperplaneBlueprintsOutputChannel) ToMap

func (o SuperplaneBlueprintsOutputChannel) ToMap() (map[string]interface{}, error)

type SuperplaneBlueprintsUserRef

type SuperplaneBlueprintsUserRef struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

SuperplaneBlueprintsUserRef struct for SuperplaneBlueprintsUserRef

func NewSuperplaneBlueprintsUserRef

func NewSuperplaneBlueprintsUserRef() *SuperplaneBlueprintsUserRef

NewSuperplaneBlueprintsUserRef instantiates a new SuperplaneBlueprintsUserRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperplaneBlueprintsUserRefWithDefaults

func NewSuperplaneBlueprintsUserRefWithDefaults() *SuperplaneBlueprintsUserRef

NewSuperplaneBlueprintsUserRefWithDefaults instantiates a new SuperplaneBlueprintsUserRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperplaneBlueprintsUserRef) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*SuperplaneBlueprintsUserRef) GetIdOk

func (o *SuperplaneBlueprintsUserRef) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneBlueprintsUserRef) GetName

func (o *SuperplaneBlueprintsUserRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SuperplaneBlueprintsUserRef) GetNameOk

func (o *SuperplaneBlueprintsUserRef) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneBlueprintsUserRef) HasId

func (o *SuperplaneBlueprintsUserRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*SuperplaneBlueprintsUserRef) HasName

func (o *SuperplaneBlueprintsUserRef) HasName() bool

HasName returns a boolean if a field has been set.

func (SuperplaneBlueprintsUserRef) MarshalJSON

func (o SuperplaneBlueprintsUserRef) MarshalJSON() ([]byte, error)

func (*SuperplaneBlueprintsUserRef) SetId

func (o *SuperplaneBlueprintsUserRef) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*SuperplaneBlueprintsUserRef) SetName

func (o *SuperplaneBlueprintsUserRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (SuperplaneBlueprintsUserRef) ToMap

func (o SuperplaneBlueprintsUserRef) ToMap() (map[string]interface{}, error)

type SuperplaneComponentsOutputChannel

type SuperplaneComponentsOutputChannel struct {
	Name        *string `json:"name,omitempty"`
	Label       *string `json:"label,omitempty"`
	Description *string `json:"description,omitempty"`
}

SuperplaneComponentsOutputChannel struct for SuperplaneComponentsOutputChannel

func NewSuperplaneComponentsOutputChannel

func NewSuperplaneComponentsOutputChannel() *SuperplaneComponentsOutputChannel

NewSuperplaneComponentsOutputChannel instantiates a new SuperplaneComponentsOutputChannel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperplaneComponentsOutputChannelWithDefaults

func NewSuperplaneComponentsOutputChannelWithDefaults() *SuperplaneComponentsOutputChannel

NewSuperplaneComponentsOutputChannelWithDefaults instantiates a new SuperplaneComponentsOutputChannel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperplaneComponentsOutputChannel) GetDescription

func (o *SuperplaneComponentsOutputChannel) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*SuperplaneComponentsOutputChannel) GetDescriptionOk

func (o *SuperplaneComponentsOutputChannel) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneComponentsOutputChannel) GetLabel

GetLabel returns the Label field value if set, zero value otherwise.

func (*SuperplaneComponentsOutputChannel) GetLabelOk

func (o *SuperplaneComponentsOutputChannel) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneComponentsOutputChannel) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*SuperplaneComponentsOutputChannel) GetNameOk

func (o *SuperplaneComponentsOutputChannel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneComponentsOutputChannel) HasDescription

func (o *SuperplaneComponentsOutputChannel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SuperplaneComponentsOutputChannel) HasLabel

HasLabel returns a boolean if a field has been set.

func (*SuperplaneComponentsOutputChannel) HasName

HasName returns a boolean if a field has been set.

func (SuperplaneComponentsOutputChannel) MarshalJSON

func (o SuperplaneComponentsOutputChannel) MarshalJSON() ([]byte, error)

func (*SuperplaneComponentsOutputChannel) SetDescription

func (o *SuperplaneComponentsOutputChannel) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*SuperplaneComponentsOutputChannel) SetLabel

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*SuperplaneComponentsOutputChannel) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (SuperplaneComponentsOutputChannel) ToMap

func (o SuperplaneComponentsOutputChannel) ToMap() (map[string]interface{}, error)

type SuperplaneMeUser

type SuperplaneMeUser struct {
	Id             *string    `json:"id,omitempty"`
	Email          *string    `json:"email,omitempty"`
	OrganizationId *string    `json:"organizationId,omitempty"`
	CreatedAt      *time.Time `json:"createdAt,omitempty"`
	HasToken       *bool      `json:"hasToken,omitempty"`
}

SuperplaneMeUser struct for SuperplaneMeUser

func NewSuperplaneMeUser

func NewSuperplaneMeUser() *SuperplaneMeUser

NewSuperplaneMeUser instantiates a new SuperplaneMeUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperplaneMeUserWithDefaults

func NewSuperplaneMeUserWithDefaults() *SuperplaneMeUser

NewSuperplaneMeUserWithDefaults instantiates a new SuperplaneMeUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperplaneMeUser) GetCreatedAt

func (o *SuperplaneMeUser) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*SuperplaneMeUser) GetCreatedAtOk

func (o *SuperplaneMeUser) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneMeUser) GetEmail

func (o *SuperplaneMeUser) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*SuperplaneMeUser) GetEmailOk

func (o *SuperplaneMeUser) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneMeUser) GetHasToken

func (o *SuperplaneMeUser) GetHasToken() bool

GetHasToken returns the HasToken field value if set, zero value otherwise.

func (*SuperplaneMeUser) GetHasTokenOk

func (o *SuperplaneMeUser) GetHasTokenOk() (*bool, bool)

GetHasTokenOk returns a tuple with the HasToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneMeUser) GetId

func (o *SuperplaneMeUser) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*SuperplaneMeUser) GetIdOk

func (o *SuperplaneMeUser) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneMeUser) GetOrganizationId

func (o *SuperplaneMeUser) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*SuperplaneMeUser) GetOrganizationIdOk

func (o *SuperplaneMeUser) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneMeUser) HasCreatedAt

func (o *SuperplaneMeUser) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SuperplaneMeUser) HasEmail

func (o *SuperplaneMeUser) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*SuperplaneMeUser) HasHasToken

func (o *SuperplaneMeUser) HasHasToken() bool

HasHasToken returns a boolean if a field has been set.

func (*SuperplaneMeUser) HasId

func (o *SuperplaneMeUser) HasId() bool

HasId returns a boolean if a field has been set.

func (*SuperplaneMeUser) HasOrganizationId

func (o *SuperplaneMeUser) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (SuperplaneMeUser) MarshalJSON

func (o SuperplaneMeUser) MarshalJSON() ([]byte, error)

func (*SuperplaneMeUser) SetCreatedAt

func (o *SuperplaneMeUser) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*SuperplaneMeUser) SetEmail

func (o *SuperplaneMeUser) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*SuperplaneMeUser) SetHasToken

func (o *SuperplaneMeUser) SetHasToken(v bool)

SetHasToken gets a reference to the given bool and assigns it to the HasToken field.

func (*SuperplaneMeUser) SetId

func (o *SuperplaneMeUser) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*SuperplaneMeUser) SetOrganizationId

func (o *SuperplaneMeUser) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (SuperplaneMeUser) ToMap

func (o SuperplaneMeUser) ToMap() (map[string]interface{}, error)

type SuperplaneOrganizationsListApplicationsResponse

type SuperplaneOrganizationsListApplicationsResponse struct {
	Applications []OrganizationsAppInstallation `json:"applications,omitempty"`
}

SuperplaneOrganizationsListApplicationsResponse struct for SuperplaneOrganizationsListApplicationsResponse

func NewSuperplaneOrganizationsListApplicationsResponse

func NewSuperplaneOrganizationsListApplicationsResponse() *SuperplaneOrganizationsListApplicationsResponse

NewSuperplaneOrganizationsListApplicationsResponse instantiates a new SuperplaneOrganizationsListApplicationsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperplaneOrganizationsListApplicationsResponseWithDefaults

func NewSuperplaneOrganizationsListApplicationsResponseWithDefaults() *SuperplaneOrganizationsListApplicationsResponse

NewSuperplaneOrganizationsListApplicationsResponseWithDefaults instantiates a new SuperplaneOrganizationsListApplicationsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperplaneOrganizationsListApplicationsResponse) GetApplications

GetApplications returns the Applications field value if set, zero value otherwise.

func (*SuperplaneOrganizationsListApplicationsResponse) GetApplicationsOk

GetApplicationsOk returns a tuple with the Applications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneOrganizationsListApplicationsResponse) HasApplications

HasApplications returns a boolean if a field has been set.

func (SuperplaneOrganizationsListApplicationsResponse) MarshalJSON

func (*SuperplaneOrganizationsListApplicationsResponse) SetApplications

SetApplications gets a reference to the given []OrganizationsAppInstallation and assigns it to the Applications field.

func (SuperplaneOrganizationsListApplicationsResponse) ToMap

func (o SuperplaneOrganizationsListApplicationsResponse) ToMap() (map[string]interface{}, error)

type SuperplaneUsersUser

type SuperplaneUsersUser struct {
	Metadata *UsersUserMetadata `json:"metadata,omitempty"`
	Spec     *UsersUserSpec     `json:"spec,omitempty"`
	Status   *UsersUserStatus   `json:"status,omitempty"`
}

SuperplaneUsersUser struct for SuperplaneUsersUser

func NewSuperplaneUsersUser

func NewSuperplaneUsersUser() *SuperplaneUsersUser

NewSuperplaneUsersUser instantiates a new SuperplaneUsersUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperplaneUsersUserWithDefaults

func NewSuperplaneUsersUserWithDefaults() *SuperplaneUsersUser

NewSuperplaneUsersUserWithDefaults instantiates a new SuperplaneUsersUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperplaneUsersUser) GetMetadata

func (o *SuperplaneUsersUser) GetMetadata() UsersUserMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*SuperplaneUsersUser) GetMetadataOk

func (o *SuperplaneUsersUser) GetMetadataOk() (*UsersUserMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneUsersUser) GetSpec

func (o *SuperplaneUsersUser) GetSpec() UsersUserSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*SuperplaneUsersUser) GetSpecOk

func (o *SuperplaneUsersUser) GetSpecOk() (*UsersUserSpec, bool)

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneUsersUser) GetStatus

func (o *SuperplaneUsersUser) GetStatus() UsersUserStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*SuperplaneUsersUser) GetStatusOk

func (o *SuperplaneUsersUser) GetStatusOk() (*UsersUserStatus, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneUsersUser) HasMetadata

func (o *SuperplaneUsersUser) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*SuperplaneUsersUser) HasSpec

func (o *SuperplaneUsersUser) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*SuperplaneUsersUser) HasStatus

func (o *SuperplaneUsersUser) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (SuperplaneUsersUser) MarshalJSON

func (o SuperplaneUsersUser) MarshalJSON() ([]byte, error)

func (*SuperplaneUsersUser) SetMetadata

func (o *SuperplaneUsersUser) SetMetadata(v UsersUserMetadata)

SetMetadata gets a reference to the given UsersUserMetadata and assigns it to the Metadata field.

func (*SuperplaneUsersUser) SetSpec

func (o *SuperplaneUsersUser) SetSpec(v UsersUserSpec)

SetSpec gets a reference to the given UsersUserSpec and assigns it to the Spec field.

func (*SuperplaneUsersUser) SetStatus

func (o *SuperplaneUsersUser) SetStatus(v UsersUserStatus)

SetStatus gets a reference to the given UsersUserStatus and assigns it to the Status field.

func (SuperplaneUsersUser) ToMap

func (o SuperplaneUsersUser) ToMap() (map[string]interface{}, error)

type SuperplaneWorkflowsUserRef

type SuperplaneWorkflowsUserRef struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

SuperplaneWorkflowsUserRef struct for SuperplaneWorkflowsUserRef

func NewSuperplaneWorkflowsUserRef

func NewSuperplaneWorkflowsUserRef() *SuperplaneWorkflowsUserRef

NewSuperplaneWorkflowsUserRef instantiates a new SuperplaneWorkflowsUserRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperplaneWorkflowsUserRefWithDefaults

func NewSuperplaneWorkflowsUserRefWithDefaults() *SuperplaneWorkflowsUserRef

NewSuperplaneWorkflowsUserRefWithDefaults instantiates a new SuperplaneWorkflowsUserRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperplaneWorkflowsUserRef) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*SuperplaneWorkflowsUserRef) GetIdOk

func (o *SuperplaneWorkflowsUserRef) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneWorkflowsUserRef) GetName

func (o *SuperplaneWorkflowsUserRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SuperplaneWorkflowsUserRef) GetNameOk

func (o *SuperplaneWorkflowsUserRef) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuperplaneWorkflowsUserRef) HasId

func (o *SuperplaneWorkflowsUserRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*SuperplaneWorkflowsUserRef) HasName

func (o *SuperplaneWorkflowsUserRef) HasName() bool

HasName returns a boolean if a field has been set.

func (SuperplaneWorkflowsUserRef) MarshalJSON

func (o SuperplaneWorkflowsUserRef) MarshalJSON() ([]byte, error)

func (*SuperplaneWorkflowsUserRef) SetId

func (o *SuperplaneWorkflowsUserRef) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*SuperplaneWorkflowsUserRef) SetName

func (o *SuperplaneWorkflowsUserRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (SuperplaneWorkflowsUserRef) ToMap

func (o SuperplaneWorkflowsUserRef) ToMap() (map[string]interface{}, error)

type TriggerAPIService

type TriggerAPIService service

TriggerAPIService TriggerAPI service

func (*TriggerAPIService) TriggersDescribeTrigger

func (a *TriggerAPIService) TriggersDescribeTrigger(ctx context.Context, name string) ApiTriggersDescribeTriggerRequest

TriggersDescribeTrigger Describe trigger

Returns a trigger by its name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name
@return ApiTriggersDescribeTriggerRequest

func (*TriggerAPIService) TriggersDescribeTriggerExecute

Execute executes the request

@return TriggersDescribeTriggerResponse

func (*TriggerAPIService) TriggersListTriggers

func (a *TriggerAPIService) TriggersListTriggers(ctx context.Context) ApiTriggersListTriggersRequest

TriggersListTriggers List triggers

Returns a list of all available triggers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTriggersListTriggersRequest

func (*TriggerAPIService) TriggersListTriggersExecute

Execute executes the request

@return TriggersListTriggersResponse

type TriggersDescribeTriggerResponse

type TriggersDescribeTriggerResponse struct {
	Trigger *TriggersTrigger `json:"trigger,omitempty"`
}

TriggersDescribeTriggerResponse struct for TriggersDescribeTriggerResponse

func NewTriggersDescribeTriggerResponse

func NewTriggersDescribeTriggerResponse() *TriggersDescribeTriggerResponse

NewTriggersDescribeTriggerResponse instantiates a new TriggersDescribeTriggerResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTriggersDescribeTriggerResponseWithDefaults

func NewTriggersDescribeTriggerResponseWithDefaults() *TriggersDescribeTriggerResponse

NewTriggersDescribeTriggerResponseWithDefaults instantiates a new TriggersDescribeTriggerResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TriggersDescribeTriggerResponse) GetTrigger

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*TriggersDescribeTriggerResponse) GetTriggerOk

GetTriggerOk returns a tuple with the Trigger field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggersDescribeTriggerResponse) HasTrigger

func (o *TriggersDescribeTriggerResponse) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (TriggersDescribeTriggerResponse) MarshalJSON

func (o TriggersDescribeTriggerResponse) MarshalJSON() ([]byte, error)

func (*TriggersDescribeTriggerResponse) SetTrigger

SetTrigger gets a reference to the given TriggersTrigger and assigns it to the Trigger field.

func (TriggersDescribeTriggerResponse) ToMap

func (o TriggersDescribeTriggerResponse) ToMap() (map[string]interface{}, error)

type TriggersListTriggersResponse

type TriggersListTriggersResponse struct {
	Triggers []TriggersTrigger `json:"triggers,omitempty"`
}

TriggersListTriggersResponse struct for TriggersListTriggersResponse

func NewTriggersListTriggersResponse

func NewTriggersListTriggersResponse() *TriggersListTriggersResponse

NewTriggersListTriggersResponse instantiates a new TriggersListTriggersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTriggersListTriggersResponseWithDefaults

func NewTriggersListTriggersResponseWithDefaults() *TriggersListTriggersResponse

NewTriggersListTriggersResponseWithDefaults instantiates a new TriggersListTriggersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TriggersListTriggersResponse) GetTriggers

func (o *TriggersListTriggersResponse) GetTriggers() []TriggersTrigger

GetTriggers returns the Triggers field value if set, zero value otherwise.

func (*TriggersListTriggersResponse) GetTriggersOk

func (o *TriggersListTriggersResponse) GetTriggersOk() ([]TriggersTrigger, bool)

GetTriggersOk returns a tuple with the Triggers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggersListTriggersResponse) HasTriggers

func (o *TriggersListTriggersResponse) HasTriggers() bool

HasTriggers returns a boolean if a field has been set.

func (TriggersListTriggersResponse) MarshalJSON

func (o TriggersListTriggersResponse) MarshalJSON() ([]byte, error)

func (*TriggersListTriggersResponse) SetTriggers

func (o *TriggersListTriggersResponse) SetTriggers(v []TriggersTrigger)

SetTriggers gets a reference to the given []TriggersTrigger and assigns it to the Triggers field.

func (TriggersListTriggersResponse) ToMap

func (o TriggersListTriggersResponse) ToMap() (map[string]interface{}, error)

type TriggersTrigger

type TriggersTrigger struct {
	Name          *string                `json:"name,omitempty"`
	Label         *string                `json:"label,omitempty"`
	Description   *string                `json:"description,omitempty"`
	Icon          *string                `json:"icon,omitempty"`
	Color         *string                `json:"color,omitempty"`
	Configuration []ConfigurationField   `json:"configuration,omitempty"`
	ExampleData   map[string]interface{} `json:"exampleData,omitempty"`
}

TriggersTrigger struct for TriggersTrigger

func NewTriggersTrigger

func NewTriggersTrigger() *TriggersTrigger

NewTriggersTrigger instantiates a new TriggersTrigger object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTriggersTriggerWithDefaults

func NewTriggersTriggerWithDefaults() *TriggersTrigger

NewTriggersTriggerWithDefaults instantiates a new TriggersTrigger object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TriggersTrigger) GetColor

func (o *TriggersTrigger) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*TriggersTrigger) GetColorOk

func (o *TriggersTrigger) GetColorOk() (*string, bool)

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggersTrigger) GetConfiguration

func (o *TriggersTrigger) GetConfiguration() []ConfigurationField

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*TriggersTrigger) GetConfigurationOk

func (o *TriggersTrigger) GetConfigurationOk() ([]ConfigurationField, bool)

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggersTrigger) GetDescription

func (o *TriggersTrigger) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TriggersTrigger) GetDescriptionOk

func (o *TriggersTrigger) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggersTrigger) GetExampleData added in v0.0.45

func (o *TriggersTrigger) GetExampleData() map[string]interface{}

GetExampleData returns the ExampleData field value if set, zero value otherwise.

func (*TriggersTrigger) GetExampleDataOk added in v0.0.45

func (o *TriggersTrigger) GetExampleDataOk() (map[string]interface{}, bool)

GetExampleDataOk returns a tuple with the ExampleData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggersTrigger) GetIcon

func (o *TriggersTrigger) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*TriggersTrigger) GetIconOk

func (o *TriggersTrigger) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggersTrigger) GetLabel

func (o *TriggersTrigger) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*TriggersTrigger) GetLabelOk

func (o *TriggersTrigger) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggersTrigger) GetName

func (o *TriggersTrigger) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TriggersTrigger) GetNameOk

func (o *TriggersTrigger) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggersTrigger) HasColor

func (o *TriggersTrigger) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*TriggersTrigger) HasConfiguration

func (o *TriggersTrigger) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*TriggersTrigger) HasDescription

func (o *TriggersTrigger) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TriggersTrigger) HasExampleData added in v0.0.45

func (o *TriggersTrigger) HasExampleData() bool

HasExampleData returns a boolean if a field has been set.

func (*TriggersTrigger) HasIcon

func (o *TriggersTrigger) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*TriggersTrigger) HasLabel

func (o *TriggersTrigger) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*TriggersTrigger) HasName

func (o *TriggersTrigger) HasName() bool

HasName returns a boolean if a field has been set.

func (TriggersTrigger) MarshalJSON

func (o TriggersTrigger) MarshalJSON() ([]byte, error)

func (*TriggersTrigger) SetColor

func (o *TriggersTrigger) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*TriggersTrigger) SetConfiguration

func (o *TriggersTrigger) SetConfiguration(v []ConfigurationField)

SetConfiguration gets a reference to the given []ConfigurationField and assigns it to the Configuration field.

func (*TriggersTrigger) SetDescription

func (o *TriggersTrigger) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TriggersTrigger) SetExampleData added in v0.0.45

func (o *TriggersTrigger) SetExampleData(v map[string]interface{})

SetExampleData gets a reference to the given map[string]interface{} and assigns it to the ExampleData field.

func (*TriggersTrigger) SetIcon

func (o *TriggersTrigger) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*TriggersTrigger) SetLabel

func (o *TriggersTrigger) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*TriggersTrigger) SetName

func (o *TriggersTrigger) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (TriggersTrigger) ToMap

func (o TriggersTrigger) ToMap() (map[string]interface{}, error)

type UsersAPIService

type UsersAPIService service

UsersAPIService UsersAPI service

func (*UsersAPIService) UsersListUserPermissions

func (a *UsersAPIService) UsersListUserPermissions(ctx context.Context, userId string) ApiUsersListUserPermissionsRequest

UsersListUserPermissions List user permissions

Returns all permissions a user has within a specific domain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId
@return ApiUsersListUserPermissionsRequest

func (*UsersAPIService) UsersListUserPermissionsExecute

Execute executes the request

@return UsersListUserPermissionsResponse

func (*UsersAPIService) UsersListUserRoles

func (a *UsersAPIService) UsersListUserRoles(ctx context.Context, userId string) ApiUsersListUserRolesRequest

UsersListUserRoles Get user roles

Returns the roles a user has within a specific domain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId
@return ApiUsersListUserRolesRequest

func (*UsersAPIService) UsersListUserRolesExecute

Execute executes the request

@return UsersListUserRolesResponse

func (*UsersAPIService) UsersListUsers

UsersListUsers List users

Returns all users that have roles within a domain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUsersListUsersRequest

func (*UsersAPIService) UsersListUsersExecute

Execute executes the request

@return UsersListUsersResponse

type UsersAccountProvider

type UsersAccountProvider struct {
	ProviderType *string    `json:"providerType,omitempty"`
	ProviderId   *string    `json:"providerId,omitempty"`
	Email        *string    `json:"email,omitempty"`
	DisplayName  *string    `json:"displayName,omitempty"`
	AvatarUrl    *string    `json:"avatarUrl,omitempty"`
	CreatedAt    *time.Time `json:"createdAt,omitempty"`
	UpdatedAt    *time.Time `json:"updatedAt,omitempty"`
}

UsersAccountProvider struct for UsersAccountProvider

func NewUsersAccountProvider

func NewUsersAccountProvider() *UsersAccountProvider

NewUsersAccountProvider instantiates a new UsersAccountProvider object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersAccountProviderWithDefaults

func NewUsersAccountProviderWithDefaults() *UsersAccountProvider

NewUsersAccountProviderWithDefaults instantiates a new UsersAccountProvider object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersAccountProvider) GetAvatarUrl

func (o *UsersAccountProvider) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*UsersAccountProvider) GetAvatarUrlOk

func (o *UsersAccountProvider) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersAccountProvider) GetCreatedAt

func (o *UsersAccountProvider) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*UsersAccountProvider) GetCreatedAtOk

func (o *UsersAccountProvider) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersAccountProvider) GetDisplayName

func (o *UsersAccountProvider) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*UsersAccountProvider) GetDisplayNameOk

func (o *UsersAccountProvider) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersAccountProvider) GetEmail

func (o *UsersAccountProvider) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UsersAccountProvider) GetEmailOk

func (o *UsersAccountProvider) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersAccountProvider) GetProviderId

func (o *UsersAccountProvider) GetProviderId() string

GetProviderId returns the ProviderId field value if set, zero value otherwise.

func (*UsersAccountProvider) GetProviderIdOk

func (o *UsersAccountProvider) GetProviderIdOk() (*string, bool)

GetProviderIdOk returns a tuple with the ProviderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersAccountProvider) GetProviderType

func (o *UsersAccountProvider) GetProviderType() string

GetProviderType returns the ProviderType field value if set, zero value otherwise.

func (*UsersAccountProvider) GetProviderTypeOk

func (o *UsersAccountProvider) GetProviderTypeOk() (*string, bool)

GetProviderTypeOk returns a tuple with the ProviderType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersAccountProvider) GetUpdatedAt

func (o *UsersAccountProvider) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*UsersAccountProvider) GetUpdatedAtOk

func (o *UsersAccountProvider) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersAccountProvider) HasAvatarUrl

func (o *UsersAccountProvider) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*UsersAccountProvider) HasCreatedAt

func (o *UsersAccountProvider) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*UsersAccountProvider) HasDisplayName

func (o *UsersAccountProvider) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*UsersAccountProvider) HasEmail

func (o *UsersAccountProvider) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UsersAccountProvider) HasProviderId

func (o *UsersAccountProvider) HasProviderId() bool

HasProviderId returns a boolean if a field has been set.

func (*UsersAccountProvider) HasProviderType

func (o *UsersAccountProvider) HasProviderType() bool

HasProviderType returns a boolean if a field has been set.

func (*UsersAccountProvider) HasUpdatedAt

func (o *UsersAccountProvider) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (UsersAccountProvider) MarshalJSON

func (o UsersAccountProvider) MarshalJSON() ([]byte, error)

func (*UsersAccountProvider) SetAvatarUrl

func (o *UsersAccountProvider) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*UsersAccountProvider) SetCreatedAt

func (o *UsersAccountProvider) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*UsersAccountProvider) SetDisplayName

func (o *UsersAccountProvider) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*UsersAccountProvider) SetEmail

func (o *UsersAccountProvider) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UsersAccountProvider) SetProviderId

func (o *UsersAccountProvider) SetProviderId(v string)

SetProviderId gets a reference to the given string and assigns it to the ProviderId field.

func (*UsersAccountProvider) SetProviderType

func (o *UsersAccountProvider) SetProviderType(v string)

SetProviderType gets a reference to the given string and assigns it to the ProviderType field.

func (*UsersAccountProvider) SetUpdatedAt

func (o *UsersAccountProvider) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (UsersAccountProvider) ToMap

func (o UsersAccountProvider) ToMap() (map[string]interface{}, error)

type UsersListUserPermissionsResponse

type UsersListUserPermissionsResponse struct {
	UserId      *string                   `json:"userId,omitempty"`
	DomainType  *AuthorizationDomainType  `json:"domainType,omitempty"`
	DomainId    *string                   `json:"domainId,omitempty"`
	Permissions []AuthorizationPermission `json:"permissions,omitempty"`
}

UsersListUserPermissionsResponse struct for UsersListUserPermissionsResponse

func NewUsersListUserPermissionsResponse

func NewUsersListUserPermissionsResponse() *UsersListUserPermissionsResponse

NewUsersListUserPermissionsResponse instantiates a new UsersListUserPermissionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersListUserPermissionsResponseWithDefaults

func NewUsersListUserPermissionsResponseWithDefaults() *UsersListUserPermissionsResponse

NewUsersListUserPermissionsResponseWithDefaults instantiates a new UsersListUserPermissionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersListUserPermissionsResponse) GetDomainId

func (o *UsersListUserPermissionsResponse) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*UsersListUserPermissionsResponse) GetDomainIdOk

func (o *UsersListUserPermissionsResponse) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersListUserPermissionsResponse) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*UsersListUserPermissionsResponse) GetDomainTypeOk

GetDomainTypeOk returns a tuple with the DomainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersListUserPermissionsResponse) GetPermissions

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*UsersListUserPermissionsResponse) GetPermissionsOk

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersListUserPermissionsResponse) GetUserId

GetUserId returns the UserId field value if set, zero value otherwise.

func (*UsersListUserPermissionsResponse) GetUserIdOk

func (o *UsersListUserPermissionsResponse) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersListUserPermissionsResponse) HasDomainId

func (o *UsersListUserPermissionsResponse) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*UsersListUserPermissionsResponse) HasDomainType

func (o *UsersListUserPermissionsResponse) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*UsersListUserPermissionsResponse) HasPermissions

func (o *UsersListUserPermissionsResponse) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (*UsersListUserPermissionsResponse) HasUserId

func (o *UsersListUserPermissionsResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (UsersListUserPermissionsResponse) MarshalJSON

func (o UsersListUserPermissionsResponse) MarshalJSON() ([]byte, error)

func (*UsersListUserPermissionsResponse) SetDomainId

func (o *UsersListUserPermissionsResponse) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*UsersListUserPermissionsResponse) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*UsersListUserPermissionsResponse) SetPermissions

SetPermissions gets a reference to the given []AuthorizationPermission and assigns it to the Permissions field.

func (*UsersListUserPermissionsResponse) SetUserId

func (o *UsersListUserPermissionsResponse) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (UsersListUserPermissionsResponse) ToMap

func (o UsersListUserPermissionsResponse) ToMap() (map[string]interface{}, error)

type UsersListUserRolesResponse

type UsersListUserRolesResponse struct {
	UserId     *string                  `json:"userId,omitempty"`
	DomainType *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId   *string                  `json:"domainId,omitempty"`
	Roles      []RolesRole              `json:"roles,omitempty"`
}

UsersListUserRolesResponse struct for UsersListUserRolesResponse

func NewUsersListUserRolesResponse

func NewUsersListUserRolesResponse() *UsersListUserRolesResponse

NewUsersListUserRolesResponse instantiates a new UsersListUserRolesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersListUserRolesResponseWithDefaults

func NewUsersListUserRolesResponseWithDefaults() *UsersListUserRolesResponse

NewUsersListUserRolesResponseWithDefaults instantiates a new UsersListUserRolesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersListUserRolesResponse) GetDomainId

func (o *UsersListUserRolesResponse) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*UsersListUserRolesResponse) GetDomainIdOk

func (o *UsersListUserRolesResponse) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersListUserRolesResponse) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*UsersListUserRolesResponse) GetDomainTypeOk

func (o *UsersListUserRolesResponse) GetDomainTypeOk() (*AuthorizationDomainType, bool)

GetDomainTypeOk returns a tuple with the DomainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersListUserRolesResponse) GetRoles

func (o *UsersListUserRolesResponse) GetRoles() []RolesRole

GetRoles returns the Roles field value if set, zero value otherwise.

func (*UsersListUserRolesResponse) GetRolesOk

func (o *UsersListUserRolesResponse) GetRolesOk() ([]RolesRole, bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersListUserRolesResponse) GetUserId

func (o *UsersListUserRolesResponse) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*UsersListUserRolesResponse) GetUserIdOk

func (o *UsersListUserRolesResponse) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersListUserRolesResponse) HasDomainId

func (o *UsersListUserRolesResponse) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*UsersListUserRolesResponse) HasDomainType

func (o *UsersListUserRolesResponse) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*UsersListUserRolesResponse) HasRoles

func (o *UsersListUserRolesResponse) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*UsersListUserRolesResponse) HasUserId

func (o *UsersListUserRolesResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (UsersListUserRolesResponse) MarshalJSON

func (o UsersListUserRolesResponse) MarshalJSON() ([]byte, error)

func (*UsersListUserRolesResponse) SetDomainId

func (o *UsersListUserRolesResponse) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*UsersListUserRolesResponse) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*UsersListUserRolesResponse) SetRoles

func (o *UsersListUserRolesResponse) SetRoles(v []RolesRole)

SetRoles gets a reference to the given []RolesRole and assigns it to the Roles field.

func (*UsersListUserRolesResponse) SetUserId

func (o *UsersListUserRolesResponse) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (UsersListUserRolesResponse) ToMap

func (o UsersListUserRolesResponse) ToMap() (map[string]interface{}, error)

type UsersListUsersResponse

type UsersListUsersResponse struct {
	Users []SuperplaneUsersUser `json:"users,omitempty"`
}

UsersListUsersResponse struct for UsersListUsersResponse

func NewUsersListUsersResponse

func NewUsersListUsersResponse() *UsersListUsersResponse

NewUsersListUsersResponse instantiates a new UsersListUsersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersListUsersResponseWithDefaults

func NewUsersListUsersResponseWithDefaults() *UsersListUsersResponse

NewUsersListUsersResponseWithDefaults instantiates a new UsersListUsersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersListUsersResponse) GetUsers

GetUsers returns the Users field value if set, zero value otherwise.

func (*UsersListUsersResponse) GetUsersOk

func (o *UsersListUsersResponse) GetUsersOk() ([]SuperplaneUsersUser, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersListUsersResponse) HasUsers

func (o *UsersListUsersResponse) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (UsersListUsersResponse) MarshalJSON

func (o UsersListUsersResponse) MarshalJSON() ([]byte, error)

func (*UsersListUsersResponse) SetUsers

SetUsers gets a reference to the given []SuperplaneUsersUser and assigns it to the Users field.

func (UsersListUsersResponse) ToMap

func (o UsersListUsersResponse) ToMap() (map[string]interface{}, error)

type UsersUserMetadata

type UsersUserMetadata struct {
	Id        *string    `json:"id,omitempty"`
	Email     *string    `json:"email,omitempty"`
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
}

UsersUserMetadata struct for UsersUserMetadata

func NewUsersUserMetadata

func NewUsersUserMetadata() *UsersUserMetadata

NewUsersUserMetadata instantiates a new UsersUserMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersUserMetadataWithDefaults

func NewUsersUserMetadataWithDefaults() *UsersUserMetadata

NewUsersUserMetadataWithDefaults instantiates a new UsersUserMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersUserMetadata) GetCreatedAt

func (o *UsersUserMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*UsersUserMetadata) GetCreatedAtOk

func (o *UsersUserMetadata) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserMetadata) GetEmail

func (o *UsersUserMetadata) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UsersUserMetadata) GetEmailOk

func (o *UsersUserMetadata) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserMetadata) GetId

func (o *UsersUserMetadata) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*UsersUserMetadata) GetIdOk

func (o *UsersUserMetadata) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserMetadata) GetUpdatedAt

func (o *UsersUserMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*UsersUserMetadata) GetUpdatedAtOk

func (o *UsersUserMetadata) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserMetadata) HasCreatedAt

func (o *UsersUserMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*UsersUserMetadata) HasEmail

func (o *UsersUserMetadata) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UsersUserMetadata) HasId

func (o *UsersUserMetadata) HasId() bool

HasId returns a boolean if a field has been set.

func (*UsersUserMetadata) HasUpdatedAt

func (o *UsersUserMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (UsersUserMetadata) MarshalJSON

func (o UsersUserMetadata) MarshalJSON() ([]byte, error)

func (*UsersUserMetadata) SetCreatedAt

func (o *UsersUserMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*UsersUserMetadata) SetEmail

func (o *UsersUserMetadata) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UsersUserMetadata) SetId

func (o *UsersUserMetadata) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*UsersUserMetadata) SetUpdatedAt

func (o *UsersUserMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (UsersUserMetadata) ToMap

func (o UsersUserMetadata) ToMap() (map[string]interface{}, error)

type UsersUserRoleAssignment

type UsersUserRoleAssignment struct {
	RoleName        *string                  `json:"roleName,omitempty"`
	RoleDisplayName *string                  `json:"roleDisplayName,omitempty"`
	RoleDescription *string                  `json:"roleDescription,omitempty"`
	DomainType      *AuthorizationDomainType `json:"domainType,omitempty"`
	DomainId        *string                  `json:"domainId,omitempty"`
	AssignedAt      *time.Time               `json:"assignedAt,omitempty"`
}

UsersUserRoleAssignment struct for UsersUserRoleAssignment

func NewUsersUserRoleAssignment

func NewUsersUserRoleAssignment() *UsersUserRoleAssignment

NewUsersUserRoleAssignment instantiates a new UsersUserRoleAssignment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersUserRoleAssignmentWithDefaults

func NewUsersUserRoleAssignmentWithDefaults() *UsersUserRoleAssignment

NewUsersUserRoleAssignmentWithDefaults instantiates a new UsersUserRoleAssignment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersUserRoleAssignment) GetAssignedAt

func (o *UsersUserRoleAssignment) GetAssignedAt() time.Time

GetAssignedAt returns the AssignedAt field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetAssignedAtOk

func (o *UsersUserRoleAssignment) GetAssignedAtOk() (*time.Time, bool)

GetAssignedAtOk returns a tuple with the AssignedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserRoleAssignment) GetDomainId

func (o *UsersUserRoleAssignment) GetDomainId() string

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetDomainIdOk

func (o *UsersUserRoleAssignment) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserRoleAssignment) GetDomainType

GetDomainType returns the DomainType field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetDomainTypeOk

func (o *UsersUserRoleAssignment) GetDomainTypeOk() (*AuthorizationDomainType, bool)

GetDomainTypeOk returns a tuple with the DomainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserRoleAssignment) GetRoleDescription

func (o *UsersUserRoleAssignment) GetRoleDescription() string

GetRoleDescription returns the RoleDescription field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetRoleDescriptionOk

func (o *UsersUserRoleAssignment) GetRoleDescriptionOk() (*string, bool)

GetRoleDescriptionOk returns a tuple with the RoleDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserRoleAssignment) GetRoleDisplayName

func (o *UsersUserRoleAssignment) GetRoleDisplayName() string

GetRoleDisplayName returns the RoleDisplayName field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetRoleDisplayNameOk

func (o *UsersUserRoleAssignment) GetRoleDisplayNameOk() (*string, bool)

GetRoleDisplayNameOk returns a tuple with the RoleDisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserRoleAssignment) GetRoleName

func (o *UsersUserRoleAssignment) GetRoleName() string

GetRoleName returns the RoleName field value if set, zero value otherwise.

func (*UsersUserRoleAssignment) GetRoleNameOk

func (o *UsersUserRoleAssignment) GetRoleNameOk() (*string, bool)

GetRoleNameOk returns a tuple with the RoleName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserRoleAssignment) HasAssignedAt

func (o *UsersUserRoleAssignment) HasAssignedAt() bool

HasAssignedAt returns a boolean if a field has been set.

func (*UsersUserRoleAssignment) HasDomainId

func (o *UsersUserRoleAssignment) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*UsersUserRoleAssignment) HasDomainType

func (o *UsersUserRoleAssignment) HasDomainType() bool

HasDomainType returns a boolean if a field has been set.

func (*UsersUserRoleAssignment) HasRoleDescription

func (o *UsersUserRoleAssignment) HasRoleDescription() bool

HasRoleDescription returns a boolean if a field has been set.

func (*UsersUserRoleAssignment) HasRoleDisplayName

func (o *UsersUserRoleAssignment) HasRoleDisplayName() bool

HasRoleDisplayName returns a boolean if a field has been set.

func (*UsersUserRoleAssignment) HasRoleName

func (o *UsersUserRoleAssignment) HasRoleName() bool

HasRoleName returns a boolean if a field has been set.

func (UsersUserRoleAssignment) MarshalJSON

func (o UsersUserRoleAssignment) MarshalJSON() ([]byte, error)

func (*UsersUserRoleAssignment) SetAssignedAt

func (o *UsersUserRoleAssignment) SetAssignedAt(v time.Time)

SetAssignedAt gets a reference to the given time.Time and assigns it to the AssignedAt field.

func (*UsersUserRoleAssignment) SetDomainId

func (o *UsersUserRoleAssignment) SetDomainId(v string)

SetDomainId gets a reference to the given string and assigns it to the DomainId field.

func (*UsersUserRoleAssignment) SetDomainType

SetDomainType gets a reference to the given AuthorizationDomainType and assigns it to the DomainType field.

func (*UsersUserRoleAssignment) SetRoleDescription

func (o *UsersUserRoleAssignment) SetRoleDescription(v string)

SetRoleDescription gets a reference to the given string and assigns it to the RoleDescription field.

func (*UsersUserRoleAssignment) SetRoleDisplayName

func (o *UsersUserRoleAssignment) SetRoleDisplayName(v string)

SetRoleDisplayName gets a reference to the given string and assigns it to the RoleDisplayName field.

func (*UsersUserRoleAssignment) SetRoleName

func (o *UsersUserRoleAssignment) SetRoleName(v string)

SetRoleName gets a reference to the given string and assigns it to the RoleName field.

func (UsersUserRoleAssignment) ToMap

func (o UsersUserRoleAssignment) ToMap() (map[string]interface{}, error)

type UsersUserSpec

type UsersUserSpec struct {
	DisplayName      *string                `json:"displayName,omitempty"`
	AccountProviders []UsersAccountProvider `json:"accountProviders,omitempty"`
}

UsersUserSpec struct for UsersUserSpec

func NewUsersUserSpec

func NewUsersUserSpec() *UsersUserSpec

NewUsersUserSpec instantiates a new UsersUserSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersUserSpecWithDefaults

func NewUsersUserSpecWithDefaults() *UsersUserSpec

NewUsersUserSpecWithDefaults instantiates a new UsersUserSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersUserSpec) GetAccountProviders

func (o *UsersUserSpec) GetAccountProviders() []UsersAccountProvider

GetAccountProviders returns the AccountProviders field value if set, zero value otherwise.

func (*UsersUserSpec) GetAccountProvidersOk

func (o *UsersUserSpec) GetAccountProvidersOk() ([]UsersAccountProvider, bool)

GetAccountProvidersOk returns a tuple with the AccountProviders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserSpec) GetDisplayName

func (o *UsersUserSpec) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*UsersUserSpec) GetDisplayNameOk

func (o *UsersUserSpec) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserSpec) HasAccountProviders

func (o *UsersUserSpec) HasAccountProviders() bool

HasAccountProviders returns a boolean if a field has been set.

func (*UsersUserSpec) HasDisplayName

func (o *UsersUserSpec) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (UsersUserSpec) MarshalJSON

func (o UsersUserSpec) MarshalJSON() ([]byte, error)

func (*UsersUserSpec) SetAccountProviders

func (o *UsersUserSpec) SetAccountProviders(v []UsersAccountProvider)

SetAccountProviders gets a reference to the given []UsersAccountProvider and assigns it to the AccountProviders field.

func (*UsersUserSpec) SetDisplayName

func (o *UsersUserSpec) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (UsersUserSpec) ToMap

func (o UsersUserSpec) ToMap() (map[string]interface{}, error)

type UsersUserStatus

type UsersUserStatus struct {
	RoleAssignments []UsersUserRoleAssignment `json:"roleAssignments,omitempty"`
}

UsersUserStatus struct for UsersUserStatus

func NewUsersUserStatus

func NewUsersUserStatus() *UsersUserStatus

NewUsersUserStatus instantiates a new UsersUserStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersUserStatusWithDefaults

func NewUsersUserStatusWithDefaults() *UsersUserStatus

NewUsersUserStatusWithDefaults instantiates a new UsersUserStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersUserStatus) GetRoleAssignments

func (o *UsersUserStatus) GetRoleAssignments() []UsersUserRoleAssignment

GetRoleAssignments returns the RoleAssignments field value if set, zero value otherwise.

func (*UsersUserStatus) GetRoleAssignmentsOk

func (o *UsersUserStatus) GetRoleAssignmentsOk() ([]UsersUserRoleAssignment, bool)

GetRoleAssignmentsOk returns a tuple with the RoleAssignments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersUserStatus) HasRoleAssignments

func (o *UsersUserStatus) HasRoleAssignments() bool

HasRoleAssignments returns a boolean if a field has been set.

func (UsersUserStatus) MarshalJSON

func (o UsersUserStatus) MarshalJSON() ([]byte, error)

func (*UsersUserStatus) SetRoleAssignments

func (o *UsersUserStatus) SetRoleAssignments(v []UsersUserRoleAssignment)

SetRoleAssignments gets a reference to the given []UsersUserRoleAssignment and assigns it to the RoleAssignments field.

func (UsersUserStatus) ToMap

func (o UsersUserStatus) ToMap() (map[string]interface{}, error)

type WidgetAPIService added in v0.0.18

type WidgetAPIService service

WidgetAPIService WidgetAPI service

func (*WidgetAPIService) WidgetsDescribeWidget added in v0.0.18

func (a *WidgetAPIService) WidgetsDescribeWidget(ctx context.Context, name string) ApiWidgetsDescribeWidgetRequest

WidgetsDescribeWidget Describe widget

Returns a widget by its name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name
@return ApiWidgetsDescribeWidgetRequest

func (*WidgetAPIService) WidgetsDescribeWidgetExecute added in v0.0.18

Execute executes the request

@return WidgetsDescribeWidgetResponse

func (*WidgetAPIService) WidgetsListWidgets added in v0.0.18

func (a *WidgetAPIService) WidgetsListWidgets(ctx context.Context) ApiWidgetsListWidgetsRequest

WidgetsListWidgets List widgets

Returns a list of all available widgets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWidgetsListWidgetsRequest

func (*WidgetAPIService) WidgetsListWidgetsExecute added in v0.0.18

Execute executes the request

@return WidgetsListWidgetsResponse

type WidgetsDescribeWidgetResponse added in v0.0.18

type WidgetsDescribeWidgetResponse struct {
	Widget *WidgetsWidget `json:"widget,omitempty"`
}

WidgetsDescribeWidgetResponse struct for WidgetsDescribeWidgetResponse

func NewWidgetsDescribeWidgetResponse added in v0.0.18

func NewWidgetsDescribeWidgetResponse() *WidgetsDescribeWidgetResponse

NewWidgetsDescribeWidgetResponse instantiates a new WidgetsDescribeWidgetResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWidgetsDescribeWidgetResponseWithDefaults added in v0.0.18

func NewWidgetsDescribeWidgetResponseWithDefaults() *WidgetsDescribeWidgetResponse

NewWidgetsDescribeWidgetResponseWithDefaults instantiates a new WidgetsDescribeWidgetResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WidgetsDescribeWidgetResponse) GetWidget added in v0.0.18

GetWidget returns the Widget field value if set, zero value otherwise.

func (*WidgetsDescribeWidgetResponse) GetWidgetOk added in v0.0.18

func (o *WidgetsDescribeWidgetResponse) GetWidgetOk() (*WidgetsWidget, bool)

GetWidgetOk returns a tuple with the Widget field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetsDescribeWidgetResponse) HasWidget added in v0.0.18

func (o *WidgetsDescribeWidgetResponse) HasWidget() bool

HasWidget returns a boolean if a field has been set.

func (WidgetsDescribeWidgetResponse) MarshalJSON added in v0.0.18

func (o WidgetsDescribeWidgetResponse) MarshalJSON() ([]byte, error)

func (*WidgetsDescribeWidgetResponse) SetWidget added in v0.0.18

SetWidget gets a reference to the given WidgetsWidget and assigns it to the Widget field.

func (WidgetsDescribeWidgetResponse) ToMap added in v0.0.18

func (o WidgetsDescribeWidgetResponse) ToMap() (map[string]interface{}, error)

type WidgetsListWidgetsResponse added in v0.0.18

type WidgetsListWidgetsResponse struct {
	Widgets []WidgetsWidget `json:"widgets,omitempty"`
}

WidgetsListWidgetsResponse struct for WidgetsListWidgetsResponse

func NewWidgetsListWidgetsResponse added in v0.0.18

func NewWidgetsListWidgetsResponse() *WidgetsListWidgetsResponse

NewWidgetsListWidgetsResponse instantiates a new WidgetsListWidgetsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWidgetsListWidgetsResponseWithDefaults added in v0.0.18

func NewWidgetsListWidgetsResponseWithDefaults() *WidgetsListWidgetsResponse

NewWidgetsListWidgetsResponseWithDefaults instantiates a new WidgetsListWidgetsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WidgetsListWidgetsResponse) GetWidgets added in v0.0.18

func (o *WidgetsListWidgetsResponse) GetWidgets() []WidgetsWidget

GetWidgets returns the Widgets field value if set, zero value otherwise.

func (*WidgetsListWidgetsResponse) GetWidgetsOk added in v0.0.18

func (o *WidgetsListWidgetsResponse) GetWidgetsOk() ([]WidgetsWidget, bool)

GetWidgetsOk returns a tuple with the Widgets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetsListWidgetsResponse) HasWidgets added in v0.0.18

func (o *WidgetsListWidgetsResponse) HasWidgets() bool

HasWidgets returns a boolean if a field has been set.

func (WidgetsListWidgetsResponse) MarshalJSON added in v0.0.18

func (o WidgetsListWidgetsResponse) MarshalJSON() ([]byte, error)

func (*WidgetsListWidgetsResponse) SetWidgets added in v0.0.18

func (o *WidgetsListWidgetsResponse) SetWidgets(v []WidgetsWidget)

SetWidgets gets a reference to the given []WidgetsWidget and assigns it to the Widgets field.

func (WidgetsListWidgetsResponse) ToMap added in v0.0.18

func (o WidgetsListWidgetsResponse) ToMap() (map[string]interface{}, error)

type WidgetsWidget added in v0.0.18

type WidgetsWidget struct {
	Name          *string              `json:"name,omitempty"`
	Label         *string              `json:"label,omitempty"`
	Description   *string              `json:"description,omitempty"`
	Icon          *string              `json:"icon,omitempty"`
	Color         *string              `json:"color,omitempty"`
	Configuration []ConfigurationField `json:"configuration,omitempty"`
}

WidgetsWidget struct for WidgetsWidget

func NewWidgetsWidget added in v0.0.18

func NewWidgetsWidget() *WidgetsWidget

NewWidgetsWidget instantiates a new WidgetsWidget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWidgetsWidgetWithDefaults added in v0.0.18

func NewWidgetsWidgetWithDefaults() *WidgetsWidget

NewWidgetsWidgetWithDefaults instantiates a new WidgetsWidget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WidgetsWidget) GetColor added in v0.0.18

func (o *WidgetsWidget) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*WidgetsWidget) GetColorOk added in v0.0.18

func (o *WidgetsWidget) GetColorOk() (*string, bool)

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetsWidget) GetConfiguration added in v0.0.18

func (o *WidgetsWidget) GetConfiguration() []ConfigurationField

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*WidgetsWidget) GetConfigurationOk added in v0.0.18

func (o *WidgetsWidget) GetConfigurationOk() ([]ConfigurationField, bool)

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetsWidget) GetDescription added in v0.0.18

func (o *WidgetsWidget) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WidgetsWidget) GetDescriptionOk added in v0.0.18

func (o *WidgetsWidget) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetsWidget) GetIcon added in v0.0.18

func (o *WidgetsWidget) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*WidgetsWidget) GetIconOk added in v0.0.18

func (o *WidgetsWidget) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetsWidget) GetLabel added in v0.0.18

func (o *WidgetsWidget) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*WidgetsWidget) GetLabelOk added in v0.0.18

func (o *WidgetsWidget) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetsWidget) GetName added in v0.0.18

func (o *WidgetsWidget) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WidgetsWidget) GetNameOk added in v0.0.18

func (o *WidgetsWidget) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetsWidget) HasColor added in v0.0.18

func (o *WidgetsWidget) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*WidgetsWidget) HasConfiguration added in v0.0.18

func (o *WidgetsWidget) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*WidgetsWidget) HasDescription added in v0.0.18

func (o *WidgetsWidget) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WidgetsWidget) HasIcon added in v0.0.18

func (o *WidgetsWidget) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*WidgetsWidget) HasLabel added in v0.0.18

func (o *WidgetsWidget) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*WidgetsWidget) HasName added in v0.0.18

func (o *WidgetsWidget) HasName() bool

HasName returns a boolean if a field has been set.

func (WidgetsWidget) MarshalJSON added in v0.0.18

func (o WidgetsWidget) MarshalJSON() ([]byte, error)

func (*WidgetsWidget) SetColor added in v0.0.18

func (o *WidgetsWidget) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*WidgetsWidget) SetConfiguration added in v0.0.18

func (o *WidgetsWidget) SetConfiguration(v []ConfigurationField)

SetConfiguration gets a reference to the given []ConfigurationField and assigns it to the Configuration field.

func (*WidgetsWidget) SetDescription added in v0.0.18

func (o *WidgetsWidget) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WidgetsWidget) SetIcon added in v0.0.18

func (o *WidgetsWidget) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*WidgetsWidget) SetLabel added in v0.0.18

func (o *WidgetsWidget) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*WidgetsWidget) SetName added in v0.0.18

func (o *WidgetsWidget) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (WidgetsWidget) ToMap added in v0.0.18

func (o WidgetsWidget) ToMap() (map[string]interface{}, error)

type WorkflowAPIService

type WorkflowAPIService service

WorkflowAPIService WorkflowAPI service

func (*WorkflowAPIService) WorkflowsCreateWorkflow

func (a *WorkflowAPIService) WorkflowsCreateWorkflow(ctx context.Context) ApiWorkflowsCreateWorkflowRequest

WorkflowsCreateWorkflow Create workflow

Creates a new workflow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowsCreateWorkflowRequest

func (*WorkflowAPIService) WorkflowsCreateWorkflowExecute

Execute executes the request

@return WorkflowsCreateWorkflowResponse

func (*WorkflowAPIService) WorkflowsDeleteWorkflow

func (a *WorkflowAPIService) WorkflowsDeleteWorkflow(ctx context.Context, id string) ApiWorkflowsDeleteWorkflowRequest

WorkflowsDeleteWorkflow Delete workflow

Deletes an existing workflow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiWorkflowsDeleteWorkflowRequest

func (*WorkflowAPIService) WorkflowsDeleteWorkflowExecute

func (a *WorkflowAPIService) WorkflowsDeleteWorkflowExecute(r ApiWorkflowsDeleteWorkflowRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*WorkflowAPIService) WorkflowsDescribeWorkflow

func (a *WorkflowAPIService) WorkflowsDescribeWorkflow(ctx context.Context, id string) ApiWorkflowsDescribeWorkflowRequest

WorkflowsDescribeWorkflow Describe workflow

Returns a workflow by ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiWorkflowsDescribeWorkflowRequest

func (*WorkflowAPIService) WorkflowsDescribeWorkflowExecute

Execute executes the request

@return WorkflowsDescribeWorkflowResponse

func (*WorkflowAPIService) WorkflowsListWorkflows

func (a *WorkflowAPIService) WorkflowsListWorkflows(ctx context.Context) ApiWorkflowsListWorkflowsRequest

WorkflowsListWorkflows List workflows

Returns a list of all workflows

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowsListWorkflowsRequest

func (*WorkflowAPIService) WorkflowsListWorkflowsExecute

Execute executes the request

@return WorkflowsListWorkflowsResponse

func (*WorkflowAPIService) WorkflowsUpdateWorkflow

func (a *WorkflowAPIService) WorkflowsUpdateWorkflow(ctx context.Context, id string) ApiWorkflowsUpdateWorkflowRequest

WorkflowsUpdateWorkflow Update workflow

Updates an existing workflow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiWorkflowsUpdateWorkflowRequest

func (*WorkflowAPIService) WorkflowsUpdateWorkflowExecute

Execute executes the request

@return WorkflowsUpdateWorkflowResponse

type WorkflowEventAPIService

type WorkflowEventAPIService service

WorkflowEventAPIService WorkflowEventAPI service

func (*WorkflowEventAPIService) WorkflowsListEventExecutions

func (a *WorkflowEventAPIService) WorkflowsListEventExecutions(ctx context.Context, workflowId string, eventId string) ApiWorkflowsListEventExecutionsRequest

WorkflowsListEventExecutions List event executions

Returns a list of all node executions triggered by a root event

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@param eventId
@return ApiWorkflowsListEventExecutionsRequest

func (*WorkflowEventAPIService) WorkflowsListEventExecutionsExecute

Execute executes the request

@return WorkflowsListEventExecutionsResponse

func (*WorkflowEventAPIService) WorkflowsListWorkflowEvents

func (a *WorkflowEventAPIService) WorkflowsListWorkflowEvents(ctx context.Context, workflowId string) ApiWorkflowsListWorkflowEventsRequest

WorkflowsListWorkflowEvents List workflow events

Returns a list of root events that triggered executions in a workflow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@return ApiWorkflowsListWorkflowEventsRequest

func (*WorkflowEventAPIService) WorkflowsListWorkflowEventsExecute

Execute executes the request

@return WorkflowsListWorkflowEventsResponse

type WorkflowNodeAPIService

type WorkflowNodeAPIService service

WorkflowNodeAPIService WorkflowNodeAPI service

func (*WorkflowNodeAPIService) WorkflowsDeleteNodeQueueItem

func (a *WorkflowNodeAPIService) WorkflowsDeleteNodeQueueItem(ctx context.Context, workflowId string, nodeId string, itemId string) ApiWorkflowsDeleteNodeQueueItemRequest

WorkflowsDeleteNodeQueueItem Delete item from a node's queue

Deletes a specific item in a node's queue

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@param nodeId
@param itemId
@return ApiWorkflowsDeleteNodeQueueItemRequest

func (*WorkflowNodeAPIService) WorkflowsDeleteNodeQueueItemExecute

func (a *WorkflowNodeAPIService) WorkflowsDeleteNodeQueueItemExecute(r ApiWorkflowsDeleteNodeQueueItemRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*WorkflowNodeAPIService) WorkflowsEmitNodeEvent

func (a *WorkflowNodeAPIService) WorkflowsEmitNodeEvent(ctx context.Context, workflowId string, nodeId string) ApiWorkflowsEmitNodeEventRequest

WorkflowsEmitNodeEvent Emit output event for workflow node

Emit output event for workflow node

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@param nodeId
@return ApiWorkflowsEmitNodeEventRequest

func (*WorkflowNodeAPIService) WorkflowsEmitNodeEventExecute

Execute executes the request

@return WorkflowsEmitNodeEventResponse

func (*WorkflowNodeAPIService) WorkflowsInvokeNodeTriggerAction added in v0.0.18

func (a *WorkflowNodeAPIService) WorkflowsInvokeNodeTriggerAction(ctx context.Context, workflowId string, nodeId string, actionName string) ApiWorkflowsInvokeNodeTriggerActionRequest

WorkflowsInvokeNodeTriggerAction Invoke trigger action

Invokes a custom action on a workflow node trigger

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@param nodeId
@param actionName
@return ApiWorkflowsInvokeNodeTriggerActionRequest

func (*WorkflowNodeAPIService) WorkflowsInvokeNodeTriggerActionExecute added in v0.0.18

Execute executes the request

@return WorkflowsInvokeNodeTriggerActionResponse

func (*WorkflowNodeAPIService) WorkflowsListNodeEvents

func (a *WorkflowNodeAPIService) WorkflowsListNodeEvents(ctx context.Context, workflowId string, nodeId string) ApiWorkflowsListNodeEventsRequest

WorkflowsListNodeEvents List node events

Returns a list of events for a specific workflow node

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@param nodeId
@return ApiWorkflowsListNodeEventsRequest

func (*WorkflowNodeAPIService) WorkflowsListNodeEventsExecute

Execute executes the request

@return WorkflowsListNodeEventsResponse

func (*WorkflowNodeAPIService) WorkflowsListNodeExecutions

func (a *WorkflowNodeAPIService) WorkflowsListNodeExecutions(ctx context.Context, workflowId string, nodeId string) ApiWorkflowsListNodeExecutionsRequest

WorkflowsListNodeExecutions List node executions

Returns a list of executions for a specific workflow node

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@param nodeId
@return ApiWorkflowsListNodeExecutionsRequest

func (*WorkflowNodeAPIService) WorkflowsListNodeExecutionsExecute

Execute executes the request

@return WorkflowsListNodeExecutionsResponse

func (*WorkflowNodeAPIService) WorkflowsListNodeQueueItems

func (a *WorkflowNodeAPIService) WorkflowsListNodeQueueItems(ctx context.Context, workflowId string, nodeId string) ApiWorkflowsListNodeQueueItemsRequest

WorkflowsListNodeQueueItems List items in a node's queue

Returns a list of items in a node's queue

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@param nodeId
@return ApiWorkflowsListNodeQueueItemsRequest

func (*WorkflowNodeAPIService) WorkflowsListNodeQueueItemsExecute

Execute executes the request

@return WorkflowsListNodeQueueItemsResponse

type WorkflowNodeExecutionAPIService

type WorkflowNodeExecutionAPIService service

WorkflowNodeExecutionAPIService WorkflowNodeExecutionAPI service

func (*WorkflowNodeExecutionAPIService) WorkflowsCancelExecution

func (a *WorkflowNodeExecutionAPIService) WorkflowsCancelExecution(ctx context.Context, workflowId string, executionId string) ApiWorkflowsCancelExecutionRequest

WorkflowsCancelExecution Cancel execution

Cancels a running workflow node execution

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@param executionId
@return ApiWorkflowsCancelExecutionRequest

func (*WorkflowNodeExecutionAPIService) WorkflowsCancelExecutionExecute

func (a *WorkflowNodeExecutionAPIService) WorkflowsCancelExecutionExecute(r ApiWorkflowsCancelExecutionRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*WorkflowNodeExecutionAPIService) WorkflowsInvokeNodeExecutionAction

func (a *WorkflowNodeExecutionAPIService) WorkflowsInvokeNodeExecutionAction(ctx context.Context, workflowId string, executionId string, actionName string) ApiWorkflowsInvokeNodeExecutionActionRequest

WorkflowsInvokeNodeExecutionAction Invoke execution action

Invokes a custom action on a workflow node execution

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@param executionId
@param actionName
@return ApiWorkflowsInvokeNodeExecutionActionRequest

func (*WorkflowNodeExecutionAPIService) WorkflowsInvokeNodeExecutionActionExecute

func (a *WorkflowNodeExecutionAPIService) WorkflowsInvokeNodeExecutionActionExecute(r ApiWorkflowsInvokeNodeExecutionActionRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*WorkflowNodeExecutionAPIService) WorkflowsListChildExecutions

func (a *WorkflowNodeExecutionAPIService) WorkflowsListChildExecutions(ctx context.Context, workflowId string, executionId string) ApiWorkflowsListChildExecutionsRequest

WorkflowsListChildExecutions List child executions for an execution

List child executions for an execution

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@param executionId
@return ApiWorkflowsListChildExecutionsRequest

func (*WorkflowNodeExecutionAPIService) WorkflowsListChildExecutionsExecute

Execute executes the request

@return WorkflowsListChildExecutionsResponse

type WorkflowNodeExecutionResult

type WorkflowNodeExecutionResult string

WorkflowNodeExecutionResult the model 'WorkflowNodeExecutionResult'

const (
	WORKFLOWNODEEXECUTIONRESULT_RESULT_UNKNOWN   WorkflowNodeExecutionResult = "RESULT_UNKNOWN"
	WORKFLOWNODEEXECUTIONRESULT_RESULT_PASSED    WorkflowNodeExecutionResult = "RESULT_PASSED"
	WORKFLOWNODEEXECUTIONRESULT_RESULT_FAILED    WorkflowNodeExecutionResult = "RESULT_FAILED"
	WORKFLOWNODEEXECUTIONRESULT_RESULT_CANCELLED WorkflowNodeExecutionResult = "RESULT_CANCELLED"
)

List of WorkflowNodeExecutionResult

func NewWorkflowNodeExecutionResultFromValue

func NewWorkflowNodeExecutionResultFromValue(v string) (*WorkflowNodeExecutionResult, error)

NewWorkflowNodeExecutionResultFromValue returns a pointer to a valid WorkflowNodeExecutionResult for the value passed as argument, or an error if the value passed is not allowed by the enum

func (WorkflowNodeExecutionResult) IsValid

func (v WorkflowNodeExecutionResult) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (WorkflowNodeExecutionResult) Ptr

Ptr returns reference to WorkflowNodeExecutionResult value

func (*WorkflowNodeExecutionResult) UnmarshalJSON

func (v *WorkflowNodeExecutionResult) UnmarshalJSON(src []byte) error

type WorkflowNodeExecutionResultReason

type WorkflowNodeExecutionResultReason string

WorkflowNodeExecutionResultReason the model 'WorkflowNodeExecutionResultReason'

const (
	WORKFLOWNODEEXECUTIONRESULTREASON_RESULT_REASON_OK    WorkflowNodeExecutionResultReason = "RESULT_REASON_OK"
	WORKFLOWNODEEXECUTIONRESULTREASON_RESULT_REASON_ERROR WorkflowNodeExecutionResultReason = "RESULT_REASON_ERROR"
)

List of WorkflowNodeExecutionResultReason

func NewWorkflowNodeExecutionResultReasonFromValue

func NewWorkflowNodeExecutionResultReasonFromValue(v string) (*WorkflowNodeExecutionResultReason, error)

NewWorkflowNodeExecutionResultReasonFromValue returns a pointer to a valid WorkflowNodeExecutionResultReason for the value passed as argument, or an error if the value passed is not allowed by the enum

func (WorkflowNodeExecutionResultReason) IsValid

IsValid return true if the value is valid for the enum, false otherwise

func (WorkflowNodeExecutionResultReason) Ptr

Ptr returns reference to WorkflowNodeExecutionResultReason value

func (*WorkflowNodeExecutionResultReason) UnmarshalJSON

func (v *WorkflowNodeExecutionResultReason) UnmarshalJSON(src []byte) error

type WorkflowNodeExecutionState

type WorkflowNodeExecutionState string

WorkflowNodeExecutionState the model 'WorkflowNodeExecutionState'

const (
	WORKFLOWNODEEXECUTIONSTATE_STATE_UNKNOWN  WorkflowNodeExecutionState = "STATE_UNKNOWN"
	WORKFLOWNODEEXECUTIONSTATE_STATE_PENDING  WorkflowNodeExecutionState = "STATE_PENDING"
	WORKFLOWNODEEXECUTIONSTATE_STATE_STARTED  WorkflowNodeExecutionState = "STATE_STARTED"
	WORKFLOWNODEEXECUTIONSTATE_STATE_FINISHED WorkflowNodeExecutionState = "STATE_FINISHED"
)

List of WorkflowNodeExecutionState

func NewWorkflowNodeExecutionStateFromValue

func NewWorkflowNodeExecutionStateFromValue(v string) (*WorkflowNodeExecutionState, error)

NewWorkflowNodeExecutionStateFromValue returns a pointer to a valid WorkflowNodeExecutionState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (WorkflowNodeExecutionState) IsValid

func (v WorkflowNodeExecutionState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (WorkflowNodeExecutionState) Ptr

Ptr returns reference to WorkflowNodeExecutionState value

func (*WorkflowNodeExecutionState) UnmarshalJSON

func (v *WorkflowNodeExecutionState) UnmarshalJSON(src []byte) error

type WorkflowsCreateWorkflowRequest

type WorkflowsCreateWorkflowRequest struct {
	Workflow *WorkflowsWorkflow `json:"workflow,omitempty"`
}

WorkflowsCreateWorkflowRequest struct for WorkflowsCreateWorkflowRequest

func NewWorkflowsCreateWorkflowRequest

func NewWorkflowsCreateWorkflowRequest() *WorkflowsCreateWorkflowRequest

NewWorkflowsCreateWorkflowRequest instantiates a new WorkflowsCreateWorkflowRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsCreateWorkflowRequestWithDefaults

func NewWorkflowsCreateWorkflowRequestWithDefaults() *WorkflowsCreateWorkflowRequest

NewWorkflowsCreateWorkflowRequestWithDefaults instantiates a new WorkflowsCreateWorkflowRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsCreateWorkflowRequest) GetWorkflow

GetWorkflow returns the Workflow field value if set, zero value otherwise.

func (*WorkflowsCreateWorkflowRequest) GetWorkflowOk

func (o *WorkflowsCreateWorkflowRequest) GetWorkflowOk() (*WorkflowsWorkflow, bool)

GetWorkflowOk returns a tuple with the Workflow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsCreateWorkflowRequest) HasWorkflow

func (o *WorkflowsCreateWorkflowRequest) HasWorkflow() bool

HasWorkflow returns a boolean if a field has been set.

func (WorkflowsCreateWorkflowRequest) MarshalJSON

func (o WorkflowsCreateWorkflowRequest) MarshalJSON() ([]byte, error)

func (*WorkflowsCreateWorkflowRequest) SetWorkflow

SetWorkflow gets a reference to the given WorkflowsWorkflow and assigns it to the Workflow field.

func (WorkflowsCreateWorkflowRequest) ToMap

func (o WorkflowsCreateWorkflowRequest) ToMap() (map[string]interface{}, error)

type WorkflowsCreateWorkflowResponse

type WorkflowsCreateWorkflowResponse struct {
	Workflow *WorkflowsWorkflow `json:"workflow,omitempty"`
}

WorkflowsCreateWorkflowResponse struct for WorkflowsCreateWorkflowResponse

func NewWorkflowsCreateWorkflowResponse

func NewWorkflowsCreateWorkflowResponse() *WorkflowsCreateWorkflowResponse

NewWorkflowsCreateWorkflowResponse instantiates a new WorkflowsCreateWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsCreateWorkflowResponseWithDefaults

func NewWorkflowsCreateWorkflowResponseWithDefaults() *WorkflowsCreateWorkflowResponse

NewWorkflowsCreateWorkflowResponseWithDefaults instantiates a new WorkflowsCreateWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsCreateWorkflowResponse) GetWorkflow

GetWorkflow returns the Workflow field value if set, zero value otherwise.

func (*WorkflowsCreateWorkflowResponse) GetWorkflowOk

GetWorkflowOk returns a tuple with the Workflow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsCreateWorkflowResponse) HasWorkflow

func (o *WorkflowsCreateWorkflowResponse) HasWorkflow() bool

HasWorkflow returns a boolean if a field has been set.

func (WorkflowsCreateWorkflowResponse) MarshalJSON

func (o WorkflowsCreateWorkflowResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsCreateWorkflowResponse) SetWorkflow

SetWorkflow gets a reference to the given WorkflowsWorkflow and assigns it to the Workflow field.

func (WorkflowsCreateWorkflowResponse) ToMap

func (o WorkflowsCreateWorkflowResponse) ToMap() (map[string]interface{}, error)

type WorkflowsDescribeWorkflowResponse

type WorkflowsDescribeWorkflowResponse struct {
	Workflow *WorkflowsWorkflow `json:"workflow,omitempty"`
}

WorkflowsDescribeWorkflowResponse struct for WorkflowsDescribeWorkflowResponse

func NewWorkflowsDescribeWorkflowResponse

func NewWorkflowsDescribeWorkflowResponse() *WorkflowsDescribeWorkflowResponse

NewWorkflowsDescribeWorkflowResponse instantiates a new WorkflowsDescribeWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsDescribeWorkflowResponseWithDefaults

func NewWorkflowsDescribeWorkflowResponseWithDefaults() *WorkflowsDescribeWorkflowResponse

NewWorkflowsDescribeWorkflowResponseWithDefaults instantiates a new WorkflowsDescribeWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsDescribeWorkflowResponse) GetWorkflow

GetWorkflow returns the Workflow field value if set, zero value otherwise.

func (*WorkflowsDescribeWorkflowResponse) GetWorkflowOk

GetWorkflowOk returns a tuple with the Workflow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsDescribeWorkflowResponse) HasWorkflow

func (o *WorkflowsDescribeWorkflowResponse) HasWorkflow() bool

HasWorkflow returns a boolean if a field has been set.

func (WorkflowsDescribeWorkflowResponse) MarshalJSON

func (o WorkflowsDescribeWorkflowResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsDescribeWorkflowResponse) SetWorkflow

SetWorkflow gets a reference to the given WorkflowsWorkflow and assigns it to the Workflow field.

func (WorkflowsDescribeWorkflowResponse) ToMap

func (o WorkflowsDescribeWorkflowResponse) ToMap() (map[string]interface{}, error)

type WorkflowsEmitNodeEventBody

type WorkflowsEmitNodeEventBody struct {
	Channel *string                `json:"channel,omitempty"`
	Data    map[string]interface{} `json:"data,omitempty"`
}

WorkflowsEmitNodeEventBody struct for WorkflowsEmitNodeEventBody

func NewWorkflowsEmitNodeEventBody

func NewWorkflowsEmitNodeEventBody() *WorkflowsEmitNodeEventBody

NewWorkflowsEmitNodeEventBody instantiates a new WorkflowsEmitNodeEventBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsEmitNodeEventBodyWithDefaults

func NewWorkflowsEmitNodeEventBodyWithDefaults() *WorkflowsEmitNodeEventBody

NewWorkflowsEmitNodeEventBodyWithDefaults instantiates a new WorkflowsEmitNodeEventBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsEmitNodeEventBody) GetChannel

func (o *WorkflowsEmitNodeEventBody) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*WorkflowsEmitNodeEventBody) GetChannelOk

func (o *WorkflowsEmitNodeEventBody) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsEmitNodeEventBody) GetData

func (o *WorkflowsEmitNodeEventBody) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*WorkflowsEmitNodeEventBody) GetDataOk

func (o *WorkflowsEmitNodeEventBody) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsEmitNodeEventBody) HasChannel

func (o *WorkflowsEmitNodeEventBody) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*WorkflowsEmitNodeEventBody) HasData

func (o *WorkflowsEmitNodeEventBody) HasData() bool

HasData returns a boolean if a field has been set.

func (WorkflowsEmitNodeEventBody) MarshalJSON

func (o WorkflowsEmitNodeEventBody) MarshalJSON() ([]byte, error)

func (*WorkflowsEmitNodeEventBody) SetChannel

func (o *WorkflowsEmitNodeEventBody) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*WorkflowsEmitNodeEventBody) SetData

func (o *WorkflowsEmitNodeEventBody) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (WorkflowsEmitNodeEventBody) ToMap

func (o WorkflowsEmitNodeEventBody) ToMap() (map[string]interface{}, error)

type WorkflowsEmitNodeEventResponse

type WorkflowsEmitNodeEventResponse struct {
	EventId *string `json:"eventId,omitempty"`
}

WorkflowsEmitNodeEventResponse struct for WorkflowsEmitNodeEventResponse

func NewWorkflowsEmitNodeEventResponse

func NewWorkflowsEmitNodeEventResponse() *WorkflowsEmitNodeEventResponse

NewWorkflowsEmitNodeEventResponse instantiates a new WorkflowsEmitNodeEventResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsEmitNodeEventResponseWithDefaults

func NewWorkflowsEmitNodeEventResponseWithDefaults() *WorkflowsEmitNodeEventResponse

NewWorkflowsEmitNodeEventResponseWithDefaults instantiates a new WorkflowsEmitNodeEventResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsEmitNodeEventResponse) GetEventId

func (o *WorkflowsEmitNodeEventResponse) GetEventId() string

GetEventId returns the EventId field value if set, zero value otherwise.

func (*WorkflowsEmitNodeEventResponse) GetEventIdOk

func (o *WorkflowsEmitNodeEventResponse) GetEventIdOk() (*string, bool)

GetEventIdOk returns a tuple with the EventId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsEmitNodeEventResponse) HasEventId

func (o *WorkflowsEmitNodeEventResponse) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (WorkflowsEmitNodeEventResponse) MarshalJSON

func (o WorkflowsEmitNodeEventResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsEmitNodeEventResponse) SetEventId

func (o *WorkflowsEmitNodeEventResponse) SetEventId(v string)

SetEventId gets a reference to the given string and assigns it to the EventId field.

func (WorkflowsEmitNodeEventResponse) ToMap

func (o WorkflowsEmitNodeEventResponse) ToMap() (map[string]interface{}, error)

type WorkflowsInvokeNodeExecutionActionBody

type WorkflowsInvokeNodeExecutionActionBody struct {
	Parameters map[string]interface{} `json:"parameters,omitempty"`
}

WorkflowsInvokeNodeExecutionActionBody struct for WorkflowsInvokeNodeExecutionActionBody

func NewWorkflowsInvokeNodeExecutionActionBody

func NewWorkflowsInvokeNodeExecutionActionBody() *WorkflowsInvokeNodeExecutionActionBody

NewWorkflowsInvokeNodeExecutionActionBody instantiates a new WorkflowsInvokeNodeExecutionActionBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsInvokeNodeExecutionActionBodyWithDefaults

func NewWorkflowsInvokeNodeExecutionActionBodyWithDefaults() *WorkflowsInvokeNodeExecutionActionBody

NewWorkflowsInvokeNodeExecutionActionBodyWithDefaults instantiates a new WorkflowsInvokeNodeExecutionActionBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsInvokeNodeExecutionActionBody) GetParameters

func (o *WorkflowsInvokeNodeExecutionActionBody) GetParameters() map[string]interface{}

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*WorkflowsInvokeNodeExecutionActionBody) GetParametersOk

func (o *WorkflowsInvokeNodeExecutionActionBody) GetParametersOk() (map[string]interface{}, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsInvokeNodeExecutionActionBody) HasParameters

func (o *WorkflowsInvokeNodeExecutionActionBody) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (WorkflowsInvokeNodeExecutionActionBody) MarshalJSON

func (o WorkflowsInvokeNodeExecutionActionBody) MarshalJSON() ([]byte, error)

func (*WorkflowsInvokeNodeExecutionActionBody) SetParameters

func (o *WorkflowsInvokeNodeExecutionActionBody) SetParameters(v map[string]interface{})

SetParameters gets a reference to the given map[string]interface{} and assigns it to the Parameters field.

func (WorkflowsInvokeNodeExecutionActionBody) ToMap

func (o WorkflowsInvokeNodeExecutionActionBody) ToMap() (map[string]interface{}, error)

type WorkflowsInvokeNodeTriggerActionBody added in v0.0.18

type WorkflowsInvokeNodeTriggerActionBody struct {
	Parameters map[string]interface{} `json:"parameters,omitempty"`
}

WorkflowsInvokeNodeTriggerActionBody struct for WorkflowsInvokeNodeTriggerActionBody

func NewWorkflowsInvokeNodeTriggerActionBody added in v0.0.18

func NewWorkflowsInvokeNodeTriggerActionBody() *WorkflowsInvokeNodeTriggerActionBody

NewWorkflowsInvokeNodeTriggerActionBody instantiates a new WorkflowsInvokeNodeTriggerActionBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsInvokeNodeTriggerActionBodyWithDefaults added in v0.0.18

func NewWorkflowsInvokeNodeTriggerActionBodyWithDefaults() *WorkflowsInvokeNodeTriggerActionBody

NewWorkflowsInvokeNodeTriggerActionBodyWithDefaults instantiates a new WorkflowsInvokeNodeTriggerActionBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsInvokeNodeTriggerActionBody) GetParameters added in v0.0.18

func (o *WorkflowsInvokeNodeTriggerActionBody) GetParameters() map[string]interface{}

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*WorkflowsInvokeNodeTriggerActionBody) GetParametersOk added in v0.0.18

func (o *WorkflowsInvokeNodeTriggerActionBody) GetParametersOk() (map[string]interface{}, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsInvokeNodeTriggerActionBody) HasParameters added in v0.0.18

func (o *WorkflowsInvokeNodeTriggerActionBody) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (WorkflowsInvokeNodeTriggerActionBody) MarshalJSON added in v0.0.18

func (o WorkflowsInvokeNodeTriggerActionBody) MarshalJSON() ([]byte, error)

func (*WorkflowsInvokeNodeTriggerActionBody) SetParameters added in v0.0.18

func (o *WorkflowsInvokeNodeTriggerActionBody) SetParameters(v map[string]interface{})

SetParameters gets a reference to the given map[string]interface{} and assigns it to the Parameters field.

func (WorkflowsInvokeNodeTriggerActionBody) ToMap added in v0.0.18

func (o WorkflowsInvokeNodeTriggerActionBody) ToMap() (map[string]interface{}, error)

type WorkflowsInvokeNodeTriggerActionResponse added in v0.0.18

type WorkflowsInvokeNodeTriggerActionResponse struct {
	Result map[string]interface{} `json:"result,omitempty"`
}

WorkflowsInvokeNodeTriggerActionResponse struct for WorkflowsInvokeNodeTriggerActionResponse

func NewWorkflowsInvokeNodeTriggerActionResponse added in v0.0.18

func NewWorkflowsInvokeNodeTriggerActionResponse() *WorkflowsInvokeNodeTriggerActionResponse

NewWorkflowsInvokeNodeTriggerActionResponse instantiates a new WorkflowsInvokeNodeTriggerActionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsInvokeNodeTriggerActionResponseWithDefaults added in v0.0.18

func NewWorkflowsInvokeNodeTriggerActionResponseWithDefaults() *WorkflowsInvokeNodeTriggerActionResponse

NewWorkflowsInvokeNodeTriggerActionResponseWithDefaults instantiates a new WorkflowsInvokeNodeTriggerActionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsInvokeNodeTriggerActionResponse) GetResult added in v0.0.18

func (o *WorkflowsInvokeNodeTriggerActionResponse) GetResult() map[string]interface{}

GetResult returns the Result field value if set, zero value otherwise.

func (*WorkflowsInvokeNodeTriggerActionResponse) GetResultOk added in v0.0.18

func (o *WorkflowsInvokeNodeTriggerActionResponse) GetResultOk() (map[string]interface{}, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsInvokeNodeTriggerActionResponse) HasResult added in v0.0.18

HasResult returns a boolean if a field has been set.

func (WorkflowsInvokeNodeTriggerActionResponse) MarshalJSON added in v0.0.18

func (*WorkflowsInvokeNodeTriggerActionResponse) SetResult added in v0.0.18

func (o *WorkflowsInvokeNodeTriggerActionResponse) SetResult(v map[string]interface{})

SetResult gets a reference to the given map[string]interface{} and assigns it to the Result field.

func (WorkflowsInvokeNodeTriggerActionResponse) ToMap added in v0.0.18

func (o WorkflowsInvokeNodeTriggerActionResponse) ToMap() (map[string]interface{}, error)

type WorkflowsListChildExecutionsResponse

type WorkflowsListChildExecutionsResponse struct {
	Executions []WorkflowsWorkflowNodeExecution `json:"executions,omitempty"`
}

WorkflowsListChildExecutionsResponse struct for WorkflowsListChildExecutionsResponse

func NewWorkflowsListChildExecutionsResponse

func NewWorkflowsListChildExecutionsResponse() *WorkflowsListChildExecutionsResponse

NewWorkflowsListChildExecutionsResponse instantiates a new WorkflowsListChildExecutionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsListChildExecutionsResponseWithDefaults

func NewWorkflowsListChildExecutionsResponseWithDefaults() *WorkflowsListChildExecutionsResponse

NewWorkflowsListChildExecutionsResponseWithDefaults instantiates a new WorkflowsListChildExecutionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsListChildExecutionsResponse) GetExecutions

GetExecutions returns the Executions field value if set, zero value otherwise.

func (*WorkflowsListChildExecutionsResponse) GetExecutionsOk

GetExecutionsOk returns a tuple with the Executions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListChildExecutionsResponse) HasExecutions

func (o *WorkflowsListChildExecutionsResponse) HasExecutions() bool

HasExecutions returns a boolean if a field has been set.

func (WorkflowsListChildExecutionsResponse) MarshalJSON

func (o WorkflowsListChildExecutionsResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsListChildExecutionsResponse) SetExecutions

SetExecutions gets a reference to the given []WorkflowsWorkflowNodeExecution and assigns it to the Executions field.

func (WorkflowsListChildExecutionsResponse) ToMap

func (o WorkflowsListChildExecutionsResponse) ToMap() (map[string]interface{}, error)

type WorkflowsListEventExecutionsResponse

type WorkflowsListEventExecutionsResponse struct {
	Executions []WorkflowsWorkflowNodeExecution `json:"executions,omitempty"`
}

WorkflowsListEventExecutionsResponse struct for WorkflowsListEventExecutionsResponse

func NewWorkflowsListEventExecutionsResponse

func NewWorkflowsListEventExecutionsResponse() *WorkflowsListEventExecutionsResponse

NewWorkflowsListEventExecutionsResponse instantiates a new WorkflowsListEventExecutionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsListEventExecutionsResponseWithDefaults

func NewWorkflowsListEventExecutionsResponseWithDefaults() *WorkflowsListEventExecutionsResponse

NewWorkflowsListEventExecutionsResponseWithDefaults instantiates a new WorkflowsListEventExecutionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsListEventExecutionsResponse) GetExecutions

GetExecutions returns the Executions field value if set, zero value otherwise.

func (*WorkflowsListEventExecutionsResponse) GetExecutionsOk

GetExecutionsOk returns a tuple with the Executions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListEventExecutionsResponse) HasExecutions

func (o *WorkflowsListEventExecutionsResponse) HasExecutions() bool

HasExecutions returns a boolean if a field has been set.

func (WorkflowsListEventExecutionsResponse) MarshalJSON

func (o WorkflowsListEventExecutionsResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsListEventExecutionsResponse) SetExecutions

SetExecutions gets a reference to the given []WorkflowsWorkflowNodeExecution and assigns it to the Executions field.

func (WorkflowsListEventExecutionsResponse) ToMap

func (o WorkflowsListEventExecutionsResponse) ToMap() (map[string]interface{}, error)

type WorkflowsListNodeEventsResponse

type WorkflowsListNodeEventsResponse struct {
	Events        []WorkflowsWorkflowEvent `json:"events,omitempty"`
	TotalCount    *int64                   `json:"totalCount,omitempty"`
	HasNextPage   *bool                    `json:"hasNextPage,omitempty"`
	LastTimestamp *time.Time               `json:"lastTimestamp,omitempty"`
}

WorkflowsListNodeEventsResponse struct for WorkflowsListNodeEventsResponse

func NewWorkflowsListNodeEventsResponse

func NewWorkflowsListNodeEventsResponse() *WorkflowsListNodeEventsResponse

NewWorkflowsListNodeEventsResponse instantiates a new WorkflowsListNodeEventsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsListNodeEventsResponseWithDefaults

func NewWorkflowsListNodeEventsResponseWithDefaults() *WorkflowsListNodeEventsResponse

NewWorkflowsListNodeEventsResponseWithDefaults instantiates a new WorkflowsListNodeEventsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsListNodeEventsResponse) GetEvents

GetEvents returns the Events field value if set, zero value otherwise.

func (*WorkflowsListNodeEventsResponse) GetEventsOk

GetEventsOk returns a tuple with the Events field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeEventsResponse) GetHasNextPage

func (o *WorkflowsListNodeEventsResponse) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field value if set, zero value otherwise.

func (*WorkflowsListNodeEventsResponse) GetHasNextPageOk

func (o *WorkflowsListNodeEventsResponse) GetHasNextPageOk() (*bool, bool)

GetHasNextPageOk returns a tuple with the HasNextPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeEventsResponse) GetLastTimestamp

func (o *WorkflowsListNodeEventsResponse) GetLastTimestamp() time.Time

GetLastTimestamp returns the LastTimestamp field value if set, zero value otherwise.

func (*WorkflowsListNodeEventsResponse) GetLastTimestampOk

func (o *WorkflowsListNodeEventsResponse) GetLastTimestampOk() (*time.Time, bool)

GetLastTimestampOk returns a tuple with the LastTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeEventsResponse) GetTotalCount

func (o *WorkflowsListNodeEventsResponse) GetTotalCount() int64

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*WorkflowsListNodeEventsResponse) GetTotalCountOk

func (o *WorkflowsListNodeEventsResponse) GetTotalCountOk() (*int64, bool)

GetTotalCountOk returns a tuple with the TotalCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeEventsResponse) HasEvents

func (o *WorkflowsListNodeEventsResponse) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*WorkflowsListNodeEventsResponse) HasHasNextPage

func (o *WorkflowsListNodeEventsResponse) HasHasNextPage() bool

HasHasNextPage returns a boolean if a field has been set.

func (*WorkflowsListNodeEventsResponse) HasLastTimestamp

func (o *WorkflowsListNodeEventsResponse) HasLastTimestamp() bool

HasLastTimestamp returns a boolean if a field has been set.

func (*WorkflowsListNodeEventsResponse) HasTotalCount

func (o *WorkflowsListNodeEventsResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (WorkflowsListNodeEventsResponse) MarshalJSON

func (o WorkflowsListNodeEventsResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsListNodeEventsResponse) SetEvents

SetEvents gets a reference to the given []WorkflowsWorkflowEvent and assigns it to the Events field.

func (*WorkflowsListNodeEventsResponse) SetHasNextPage

func (o *WorkflowsListNodeEventsResponse) SetHasNextPage(v bool)

SetHasNextPage gets a reference to the given bool and assigns it to the HasNextPage field.

func (*WorkflowsListNodeEventsResponse) SetLastTimestamp

func (o *WorkflowsListNodeEventsResponse) SetLastTimestamp(v time.Time)

SetLastTimestamp gets a reference to the given time.Time and assigns it to the LastTimestamp field.

func (*WorkflowsListNodeEventsResponse) SetTotalCount

func (o *WorkflowsListNodeEventsResponse) SetTotalCount(v int64)

SetTotalCount gets a reference to the given int64 and assigns it to the TotalCount field.

func (WorkflowsListNodeEventsResponse) ToMap

func (o WorkflowsListNodeEventsResponse) ToMap() (map[string]interface{}, error)

type WorkflowsListNodeExecutionsResponse

type WorkflowsListNodeExecutionsResponse struct {
	Executions    []WorkflowsWorkflowNodeExecution `json:"executions,omitempty"`
	TotalCount    *int64                           `json:"totalCount,omitempty"`
	HasNextPage   *bool                            `json:"hasNextPage,omitempty"`
	LastTimestamp *time.Time                       `json:"lastTimestamp,omitempty"`
}

WorkflowsListNodeExecutionsResponse struct for WorkflowsListNodeExecutionsResponse

func NewWorkflowsListNodeExecutionsResponse

func NewWorkflowsListNodeExecutionsResponse() *WorkflowsListNodeExecutionsResponse

NewWorkflowsListNodeExecutionsResponse instantiates a new WorkflowsListNodeExecutionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsListNodeExecutionsResponseWithDefaults

func NewWorkflowsListNodeExecutionsResponseWithDefaults() *WorkflowsListNodeExecutionsResponse

NewWorkflowsListNodeExecutionsResponseWithDefaults instantiates a new WorkflowsListNodeExecutionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsListNodeExecutionsResponse) GetExecutions

GetExecutions returns the Executions field value if set, zero value otherwise.

func (*WorkflowsListNodeExecutionsResponse) GetExecutionsOk

GetExecutionsOk returns a tuple with the Executions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeExecutionsResponse) GetHasNextPage

func (o *WorkflowsListNodeExecutionsResponse) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field value if set, zero value otherwise.

func (*WorkflowsListNodeExecutionsResponse) GetHasNextPageOk

func (o *WorkflowsListNodeExecutionsResponse) GetHasNextPageOk() (*bool, bool)

GetHasNextPageOk returns a tuple with the HasNextPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeExecutionsResponse) GetLastTimestamp

func (o *WorkflowsListNodeExecutionsResponse) GetLastTimestamp() time.Time

GetLastTimestamp returns the LastTimestamp field value if set, zero value otherwise.

func (*WorkflowsListNodeExecutionsResponse) GetLastTimestampOk

func (o *WorkflowsListNodeExecutionsResponse) GetLastTimestampOk() (*time.Time, bool)

GetLastTimestampOk returns a tuple with the LastTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeExecutionsResponse) GetTotalCount

func (o *WorkflowsListNodeExecutionsResponse) GetTotalCount() int64

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*WorkflowsListNodeExecutionsResponse) GetTotalCountOk

func (o *WorkflowsListNodeExecutionsResponse) GetTotalCountOk() (*int64, bool)

GetTotalCountOk returns a tuple with the TotalCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeExecutionsResponse) HasExecutions

func (o *WorkflowsListNodeExecutionsResponse) HasExecutions() bool

HasExecutions returns a boolean if a field has been set.

func (*WorkflowsListNodeExecutionsResponse) HasHasNextPage

func (o *WorkflowsListNodeExecutionsResponse) HasHasNextPage() bool

HasHasNextPage returns a boolean if a field has been set.

func (*WorkflowsListNodeExecutionsResponse) HasLastTimestamp

func (o *WorkflowsListNodeExecutionsResponse) HasLastTimestamp() bool

HasLastTimestamp returns a boolean if a field has been set.

func (*WorkflowsListNodeExecutionsResponse) HasTotalCount

func (o *WorkflowsListNodeExecutionsResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (WorkflowsListNodeExecutionsResponse) MarshalJSON

func (o WorkflowsListNodeExecutionsResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsListNodeExecutionsResponse) SetExecutions

SetExecutions gets a reference to the given []WorkflowsWorkflowNodeExecution and assigns it to the Executions field.

func (*WorkflowsListNodeExecutionsResponse) SetHasNextPage

func (o *WorkflowsListNodeExecutionsResponse) SetHasNextPage(v bool)

SetHasNextPage gets a reference to the given bool and assigns it to the HasNextPage field.

func (*WorkflowsListNodeExecutionsResponse) SetLastTimestamp

func (o *WorkflowsListNodeExecutionsResponse) SetLastTimestamp(v time.Time)

SetLastTimestamp gets a reference to the given time.Time and assigns it to the LastTimestamp field.

func (*WorkflowsListNodeExecutionsResponse) SetTotalCount

func (o *WorkflowsListNodeExecutionsResponse) SetTotalCount(v int64)

SetTotalCount gets a reference to the given int64 and assigns it to the TotalCount field.

func (WorkflowsListNodeExecutionsResponse) ToMap

func (o WorkflowsListNodeExecutionsResponse) ToMap() (map[string]interface{}, error)

type WorkflowsListNodeQueueItemsResponse

type WorkflowsListNodeQueueItemsResponse struct {
	Items         []WorkflowsWorkflowNodeQueueItem `json:"items,omitempty"`
	TotalCount    *int64                           `json:"totalCount,omitempty"`
	HasNextPage   *bool                            `json:"hasNextPage,omitempty"`
	LastTimestamp *time.Time                       `json:"lastTimestamp,omitempty"`
}

WorkflowsListNodeQueueItemsResponse struct for WorkflowsListNodeQueueItemsResponse

func NewWorkflowsListNodeQueueItemsResponse

func NewWorkflowsListNodeQueueItemsResponse() *WorkflowsListNodeQueueItemsResponse

NewWorkflowsListNodeQueueItemsResponse instantiates a new WorkflowsListNodeQueueItemsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsListNodeQueueItemsResponseWithDefaults

func NewWorkflowsListNodeQueueItemsResponseWithDefaults() *WorkflowsListNodeQueueItemsResponse

NewWorkflowsListNodeQueueItemsResponseWithDefaults instantiates a new WorkflowsListNodeQueueItemsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsListNodeQueueItemsResponse) GetHasNextPage

func (o *WorkflowsListNodeQueueItemsResponse) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field value if set, zero value otherwise.

func (*WorkflowsListNodeQueueItemsResponse) GetHasNextPageOk

func (o *WorkflowsListNodeQueueItemsResponse) GetHasNextPageOk() (*bool, bool)

GetHasNextPageOk returns a tuple with the HasNextPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeQueueItemsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*WorkflowsListNodeQueueItemsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeQueueItemsResponse) GetLastTimestamp

func (o *WorkflowsListNodeQueueItemsResponse) GetLastTimestamp() time.Time

GetLastTimestamp returns the LastTimestamp field value if set, zero value otherwise.

func (*WorkflowsListNodeQueueItemsResponse) GetLastTimestampOk

func (o *WorkflowsListNodeQueueItemsResponse) GetLastTimestampOk() (*time.Time, bool)

GetLastTimestampOk returns a tuple with the LastTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeQueueItemsResponse) GetTotalCount

func (o *WorkflowsListNodeQueueItemsResponse) GetTotalCount() int64

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*WorkflowsListNodeQueueItemsResponse) GetTotalCountOk

func (o *WorkflowsListNodeQueueItemsResponse) GetTotalCountOk() (*int64, bool)

GetTotalCountOk returns a tuple with the TotalCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListNodeQueueItemsResponse) HasHasNextPage

func (o *WorkflowsListNodeQueueItemsResponse) HasHasNextPage() bool

HasHasNextPage returns a boolean if a field has been set.

func (*WorkflowsListNodeQueueItemsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*WorkflowsListNodeQueueItemsResponse) HasLastTimestamp

func (o *WorkflowsListNodeQueueItemsResponse) HasLastTimestamp() bool

HasLastTimestamp returns a boolean if a field has been set.

func (*WorkflowsListNodeQueueItemsResponse) HasTotalCount

func (o *WorkflowsListNodeQueueItemsResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (WorkflowsListNodeQueueItemsResponse) MarshalJSON

func (o WorkflowsListNodeQueueItemsResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsListNodeQueueItemsResponse) SetHasNextPage

func (o *WorkflowsListNodeQueueItemsResponse) SetHasNextPage(v bool)

SetHasNextPage gets a reference to the given bool and assigns it to the HasNextPage field.

func (*WorkflowsListNodeQueueItemsResponse) SetItems

SetItems gets a reference to the given []WorkflowsWorkflowNodeQueueItem and assigns it to the Items field.

func (*WorkflowsListNodeQueueItemsResponse) SetLastTimestamp

func (o *WorkflowsListNodeQueueItemsResponse) SetLastTimestamp(v time.Time)

SetLastTimestamp gets a reference to the given time.Time and assigns it to the LastTimestamp field.

func (*WorkflowsListNodeQueueItemsResponse) SetTotalCount

func (o *WorkflowsListNodeQueueItemsResponse) SetTotalCount(v int64)

SetTotalCount gets a reference to the given int64 and assigns it to the TotalCount field.

func (WorkflowsListNodeQueueItemsResponse) ToMap

func (o WorkflowsListNodeQueueItemsResponse) ToMap() (map[string]interface{}, error)

type WorkflowsListWorkflowEventsResponse

type WorkflowsListWorkflowEventsResponse struct {
	Events        []WorkflowsWorkflowEventWithExecutions `json:"events,omitempty"`
	TotalCount    *int64                                 `json:"totalCount,omitempty"`
	HasNextPage   *bool                                  `json:"hasNextPage,omitempty"`
	LastTimestamp *time.Time                             `json:"lastTimestamp,omitempty"`
}

WorkflowsListWorkflowEventsResponse struct for WorkflowsListWorkflowEventsResponse

func NewWorkflowsListWorkflowEventsResponse

func NewWorkflowsListWorkflowEventsResponse() *WorkflowsListWorkflowEventsResponse

NewWorkflowsListWorkflowEventsResponse instantiates a new WorkflowsListWorkflowEventsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsListWorkflowEventsResponseWithDefaults

func NewWorkflowsListWorkflowEventsResponseWithDefaults() *WorkflowsListWorkflowEventsResponse

NewWorkflowsListWorkflowEventsResponseWithDefaults instantiates a new WorkflowsListWorkflowEventsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsListWorkflowEventsResponse) GetEvents

GetEvents returns the Events field value if set, zero value otherwise.

func (*WorkflowsListWorkflowEventsResponse) GetEventsOk

GetEventsOk returns a tuple with the Events field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListWorkflowEventsResponse) GetHasNextPage

func (o *WorkflowsListWorkflowEventsResponse) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field value if set, zero value otherwise.

func (*WorkflowsListWorkflowEventsResponse) GetHasNextPageOk

func (o *WorkflowsListWorkflowEventsResponse) GetHasNextPageOk() (*bool, bool)

GetHasNextPageOk returns a tuple with the HasNextPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListWorkflowEventsResponse) GetLastTimestamp

func (o *WorkflowsListWorkflowEventsResponse) GetLastTimestamp() time.Time

GetLastTimestamp returns the LastTimestamp field value if set, zero value otherwise.

func (*WorkflowsListWorkflowEventsResponse) GetLastTimestampOk

func (o *WorkflowsListWorkflowEventsResponse) GetLastTimestampOk() (*time.Time, bool)

GetLastTimestampOk returns a tuple with the LastTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListWorkflowEventsResponse) GetTotalCount

func (o *WorkflowsListWorkflowEventsResponse) GetTotalCount() int64

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*WorkflowsListWorkflowEventsResponse) GetTotalCountOk

func (o *WorkflowsListWorkflowEventsResponse) GetTotalCountOk() (*int64, bool)

GetTotalCountOk returns a tuple with the TotalCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListWorkflowEventsResponse) HasEvents

HasEvents returns a boolean if a field has been set.

func (*WorkflowsListWorkflowEventsResponse) HasHasNextPage

func (o *WorkflowsListWorkflowEventsResponse) HasHasNextPage() bool

HasHasNextPage returns a boolean if a field has been set.

func (*WorkflowsListWorkflowEventsResponse) HasLastTimestamp

func (o *WorkflowsListWorkflowEventsResponse) HasLastTimestamp() bool

HasLastTimestamp returns a boolean if a field has been set.

func (*WorkflowsListWorkflowEventsResponse) HasTotalCount

func (o *WorkflowsListWorkflowEventsResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (WorkflowsListWorkflowEventsResponse) MarshalJSON

func (o WorkflowsListWorkflowEventsResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsListWorkflowEventsResponse) SetEvents

SetEvents gets a reference to the given []WorkflowsWorkflowEventWithExecutions and assigns it to the Events field.

func (*WorkflowsListWorkflowEventsResponse) SetHasNextPage

func (o *WorkflowsListWorkflowEventsResponse) SetHasNextPage(v bool)

SetHasNextPage gets a reference to the given bool and assigns it to the HasNextPage field.

func (*WorkflowsListWorkflowEventsResponse) SetLastTimestamp

func (o *WorkflowsListWorkflowEventsResponse) SetLastTimestamp(v time.Time)

SetLastTimestamp gets a reference to the given time.Time and assigns it to the LastTimestamp field.

func (*WorkflowsListWorkflowEventsResponse) SetTotalCount

func (o *WorkflowsListWorkflowEventsResponse) SetTotalCount(v int64)

SetTotalCount gets a reference to the given int64 and assigns it to the TotalCount field.

func (WorkflowsListWorkflowEventsResponse) ToMap

func (o WorkflowsListWorkflowEventsResponse) ToMap() (map[string]interface{}, error)

type WorkflowsListWorkflowsResponse

type WorkflowsListWorkflowsResponse struct {
	Workflows []WorkflowsWorkflow `json:"workflows,omitempty"`
}

WorkflowsListWorkflowsResponse struct for WorkflowsListWorkflowsResponse

func NewWorkflowsListWorkflowsResponse

func NewWorkflowsListWorkflowsResponse() *WorkflowsListWorkflowsResponse

NewWorkflowsListWorkflowsResponse instantiates a new WorkflowsListWorkflowsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsListWorkflowsResponseWithDefaults

func NewWorkflowsListWorkflowsResponseWithDefaults() *WorkflowsListWorkflowsResponse

NewWorkflowsListWorkflowsResponseWithDefaults instantiates a new WorkflowsListWorkflowsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsListWorkflowsResponse) GetWorkflows

GetWorkflows returns the Workflows field value if set, zero value otherwise.

func (*WorkflowsListWorkflowsResponse) GetWorkflowsOk

func (o *WorkflowsListWorkflowsResponse) GetWorkflowsOk() ([]WorkflowsWorkflow, bool)

GetWorkflowsOk returns a tuple with the Workflows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsListWorkflowsResponse) HasWorkflows

func (o *WorkflowsListWorkflowsResponse) HasWorkflows() bool

HasWorkflows returns a boolean if a field has been set.

func (WorkflowsListWorkflowsResponse) MarshalJSON

func (o WorkflowsListWorkflowsResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsListWorkflowsResponse) SetWorkflows

SetWorkflows gets a reference to the given []WorkflowsWorkflow and assigns it to the Workflows field.

func (WorkflowsListWorkflowsResponse) ToMap

func (o WorkflowsListWorkflowsResponse) ToMap() (map[string]interface{}, error)

type WorkflowsUpdateWorkflowBody

type WorkflowsUpdateWorkflowBody struct {
	Workflow *WorkflowsWorkflow `json:"workflow,omitempty"`
}

WorkflowsUpdateWorkflowBody struct for WorkflowsUpdateWorkflowBody

func NewWorkflowsUpdateWorkflowBody

func NewWorkflowsUpdateWorkflowBody() *WorkflowsUpdateWorkflowBody

NewWorkflowsUpdateWorkflowBody instantiates a new WorkflowsUpdateWorkflowBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsUpdateWorkflowBodyWithDefaults

func NewWorkflowsUpdateWorkflowBodyWithDefaults() *WorkflowsUpdateWorkflowBody

NewWorkflowsUpdateWorkflowBodyWithDefaults instantiates a new WorkflowsUpdateWorkflowBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsUpdateWorkflowBody) GetWorkflow

GetWorkflow returns the Workflow field value if set, zero value otherwise.

func (*WorkflowsUpdateWorkflowBody) GetWorkflowOk

func (o *WorkflowsUpdateWorkflowBody) GetWorkflowOk() (*WorkflowsWorkflow, bool)

GetWorkflowOk returns a tuple with the Workflow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsUpdateWorkflowBody) HasWorkflow

func (o *WorkflowsUpdateWorkflowBody) HasWorkflow() bool

HasWorkflow returns a boolean if a field has been set.

func (WorkflowsUpdateWorkflowBody) MarshalJSON

func (o WorkflowsUpdateWorkflowBody) MarshalJSON() ([]byte, error)

func (*WorkflowsUpdateWorkflowBody) SetWorkflow

SetWorkflow gets a reference to the given WorkflowsWorkflow and assigns it to the Workflow field.

func (WorkflowsUpdateWorkflowBody) ToMap

func (o WorkflowsUpdateWorkflowBody) ToMap() (map[string]interface{}, error)

type WorkflowsUpdateWorkflowResponse

type WorkflowsUpdateWorkflowResponse struct {
	Workflow *WorkflowsWorkflow `json:"workflow,omitempty"`
}

WorkflowsUpdateWorkflowResponse struct for WorkflowsUpdateWorkflowResponse

func NewWorkflowsUpdateWorkflowResponse

func NewWorkflowsUpdateWorkflowResponse() *WorkflowsUpdateWorkflowResponse

NewWorkflowsUpdateWorkflowResponse instantiates a new WorkflowsUpdateWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsUpdateWorkflowResponseWithDefaults

func NewWorkflowsUpdateWorkflowResponseWithDefaults() *WorkflowsUpdateWorkflowResponse

NewWorkflowsUpdateWorkflowResponseWithDefaults instantiates a new WorkflowsUpdateWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsUpdateWorkflowResponse) GetWorkflow

GetWorkflow returns the Workflow field value if set, zero value otherwise.

func (*WorkflowsUpdateWorkflowResponse) GetWorkflowOk

GetWorkflowOk returns a tuple with the Workflow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsUpdateWorkflowResponse) HasWorkflow

func (o *WorkflowsUpdateWorkflowResponse) HasWorkflow() bool

HasWorkflow returns a boolean if a field has been set.

func (WorkflowsUpdateWorkflowResponse) MarshalJSON

func (o WorkflowsUpdateWorkflowResponse) MarshalJSON() ([]byte, error)

func (*WorkflowsUpdateWorkflowResponse) SetWorkflow

SetWorkflow gets a reference to the given WorkflowsWorkflow and assigns it to the Workflow field.

func (WorkflowsUpdateWorkflowResponse) ToMap

func (o WorkflowsUpdateWorkflowResponse) ToMap() (map[string]interface{}, error)

type WorkflowsWorkflow

type WorkflowsWorkflow struct {
	Metadata *WorkflowsWorkflowMetadata `json:"metadata,omitempty"`
	Spec     *WorkflowsWorkflowSpec     `json:"spec,omitempty"`
	Status   *WorkflowsWorkflowStatus   `json:"status,omitempty"`
}

WorkflowsWorkflow struct for WorkflowsWorkflow

func NewWorkflowsWorkflow

func NewWorkflowsWorkflow() *WorkflowsWorkflow

NewWorkflowsWorkflow instantiates a new WorkflowsWorkflow object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsWorkflowWithDefaults

func NewWorkflowsWorkflowWithDefaults() *WorkflowsWorkflow

NewWorkflowsWorkflowWithDefaults instantiates a new WorkflowsWorkflow object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsWorkflow) GetMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*WorkflowsWorkflow) GetMetadataOk

func (o *WorkflowsWorkflow) GetMetadataOk() (*WorkflowsWorkflowMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflow) GetSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*WorkflowsWorkflow) GetSpecOk

func (o *WorkflowsWorkflow) GetSpecOk() (*WorkflowsWorkflowSpec, bool)

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflow) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*WorkflowsWorkflow) GetStatusOk

func (o *WorkflowsWorkflow) GetStatusOk() (*WorkflowsWorkflowStatus, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflow) HasMetadata

func (o *WorkflowsWorkflow) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*WorkflowsWorkflow) HasSpec

func (o *WorkflowsWorkflow) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*WorkflowsWorkflow) HasStatus

func (o *WorkflowsWorkflow) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (WorkflowsWorkflow) MarshalJSON

func (o WorkflowsWorkflow) MarshalJSON() ([]byte, error)

func (*WorkflowsWorkflow) SetMetadata

func (o *WorkflowsWorkflow) SetMetadata(v WorkflowsWorkflowMetadata)

SetMetadata gets a reference to the given WorkflowsWorkflowMetadata and assigns it to the Metadata field.

func (*WorkflowsWorkflow) SetSpec

SetSpec gets a reference to the given WorkflowsWorkflowSpec and assigns it to the Spec field.

func (*WorkflowsWorkflow) SetStatus

SetStatus gets a reference to the given WorkflowsWorkflowStatus and assigns it to the Status field.

func (WorkflowsWorkflow) ToMap

func (o WorkflowsWorkflow) ToMap() (map[string]interface{}, error)

type WorkflowsWorkflowEvent

type WorkflowsWorkflowEvent struct {
	Id         *string                `json:"id,omitempty"`
	WorkflowId *string                `json:"workflowId,omitempty"`
	NodeId     *string                `json:"nodeId,omitempty"`
	Channel    *string                `json:"channel,omitempty"`
	CustomName *string                `json:"customName,omitempty"`
	Data       map[string]interface{} `json:"data,omitempty"`
	CreatedAt  *time.Time             `json:"createdAt,omitempty"`
}

WorkflowsWorkflowEvent struct for WorkflowsWorkflowEvent

func NewWorkflowsWorkflowEvent

func NewWorkflowsWorkflowEvent() *WorkflowsWorkflowEvent

NewWorkflowsWorkflowEvent instantiates a new WorkflowsWorkflowEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsWorkflowEventWithDefaults

func NewWorkflowsWorkflowEventWithDefaults() *WorkflowsWorkflowEvent

NewWorkflowsWorkflowEventWithDefaults instantiates a new WorkflowsWorkflowEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsWorkflowEvent) GetChannel

func (o *WorkflowsWorkflowEvent) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*WorkflowsWorkflowEvent) GetChannelOk

func (o *WorkflowsWorkflowEvent) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEvent) GetCreatedAt

func (o *WorkflowsWorkflowEvent) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*WorkflowsWorkflowEvent) GetCreatedAtOk

func (o *WorkflowsWorkflowEvent) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEvent) GetCustomName added in v0.0.43

func (o *WorkflowsWorkflowEvent) GetCustomName() string

GetCustomName returns the CustomName field value if set, zero value otherwise.

func (*WorkflowsWorkflowEvent) GetCustomNameOk added in v0.0.43

func (o *WorkflowsWorkflowEvent) GetCustomNameOk() (*string, bool)

GetCustomNameOk returns a tuple with the CustomName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEvent) GetData

func (o *WorkflowsWorkflowEvent) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*WorkflowsWorkflowEvent) GetDataOk

func (o *WorkflowsWorkflowEvent) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEvent) GetId

func (o *WorkflowsWorkflowEvent) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowsWorkflowEvent) GetIdOk

func (o *WorkflowsWorkflowEvent) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEvent) GetNodeId

func (o *WorkflowsWorkflowEvent) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*WorkflowsWorkflowEvent) GetNodeIdOk

func (o *WorkflowsWorkflowEvent) GetNodeIdOk() (*string, bool)

GetNodeIdOk returns a tuple with the NodeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEvent) GetWorkflowId

func (o *WorkflowsWorkflowEvent) GetWorkflowId() string

GetWorkflowId returns the WorkflowId field value if set, zero value otherwise.

func (*WorkflowsWorkflowEvent) GetWorkflowIdOk

func (o *WorkflowsWorkflowEvent) GetWorkflowIdOk() (*string, bool)

GetWorkflowIdOk returns a tuple with the WorkflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEvent) HasChannel

func (o *WorkflowsWorkflowEvent) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*WorkflowsWorkflowEvent) HasCreatedAt

func (o *WorkflowsWorkflowEvent) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*WorkflowsWorkflowEvent) HasCustomName added in v0.0.43

func (o *WorkflowsWorkflowEvent) HasCustomName() bool

HasCustomName returns a boolean if a field has been set.

func (*WorkflowsWorkflowEvent) HasData

func (o *WorkflowsWorkflowEvent) HasData() bool

HasData returns a boolean if a field has been set.

func (*WorkflowsWorkflowEvent) HasId

func (o *WorkflowsWorkflowEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowsWorkflowEvent) HasNodeId

func (o *WorkflowsWorkflowEvent) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*WorkflowsWorkflowEvent) HasWorkflowId

func (o *WorkflowsWorkflowEvent) HasWorkflowId() bool

HasWorkflowId returns a boolean if a field has been set.

func (WorkflowsWorkflowEvent) MarshalJSON

func (o WorkflowsWorkflowEvent) MarshalJSON() ([]byte, error)

func (*WorkflowsWorkflowEvent) SetChannel

func (o *WorkflowsWorkflowEvent) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*WorkflowsWorkflowEvent) SetCreatedAt

func (o *WorkflowsWorkflowEvent) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*WorkflowsWorkflowEvent) SetCustomName added in v0.0.43

func (o *WorkflowsWorkflowEvent) SetCustomName(v string)

SetCustomName gets a reference to the given string and assigns it to the CustomName field.

func (*WorkflowsWorkflowEvent) SetData

func (o *WorkflowsWorkflowEvent) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*WorkflowsWorkflowEvent) SetId

func (o *WorkflowsWorkflowEvent) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowsWorkflowEvent) SetNodeId

func (o *WorkflowsWorkflowEvent) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*WorkflowsWorkflowEvent) SetWorkflowId

func (o *WorkflowsWorkflowEvent) SetWorkflowId(v string)

SetWorkflowId gets a reference to the given string and assigns it to the WorkflowId field.

func (WorkflowsWorkflowEvent) ToMap

func (o WorkflowsWorkflowEvent) ToMap() (map[string]interface{}, error)

type WorkflowsWorkflowEventWithExecutions added in v0.0.40

type WorkflowsWorkflowEventWithExecutions struct {
	Id         *string                          `json:"id,omitempty"`
	WorkflowId *string                          `json:"workflowId,omitempty"`
	NodeId     *string                          `json:"nodeId,omitempty"`
	Channel    *string                          `json:"channel,omitempty"`
	Data       map[string]interface{}           `json:"data,omitempty"`
	CreatedAt  *time.Time                       `json:"createdAt,omitempty"`
	Executions []WorkflowsWorkflowNodeExecution `json:"executions,omitempty"`
	CustomName *string                          `json:"customName,omitempty"`
}

WorkflowsWorkflowEventWithExecutions struct for WorkflowsWorkflowEventWithExecutions

func NewWorkflowsWorkflowEventWithExecutions added in v0.0.40

func NewWorkflowsWorkflowEventWithExecutions() *WorkflowsWorkflowEventWithExecutions

NewWorkflowsWorkflowEventWithExecutions instantiates a new WorkflowsWorkflowEventWithExecutions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsWorkflowEventWithExecutionsWithDefaults added in v0.0.40

func NewWorkflowsWorkflowEventWithExecutionsWithDefaults() *WorkflowsWorkflowEventWithExecutions

NewWorkflowsWorkflowEventWithExecutionsWithDefaults instantiates a new WorkflowsWorkflowEventWithExecutions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsWorkflowEventWithExecutions) GetChannel added in v0.0.40

GetChannel returns the Channel field value if set, zero value otherwise.

func (*WorkflowsWorkflowEventWithExecutions) GetChannelOk added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEventWithExecutions) GetCreatedAt added in v0.0.40

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*WorkflowsWorkflowEventWithExecutions) GetCreatedAtOk added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEventWithExecutions) GetCustomName added in v0.0.43

func (o *WorkflowsWorkflowEventWithExecutions) GetCustomName() string

GetCustomName returns the CustomName field value if set, zero value otherwise.

func (*WorkflowsWorkflowEventWithExecutions) GetCustomNameOk added in v0.0.43

func (o *WorkflowsWorkflowEventWithExecutions) GetCustomNameOk() (*string, bool)

GetCustomNameOk returns a tuple with the CustomName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEventWithExecutions) GetData added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*WorkflowsWorkflowEventWithExecutions) GetDataOk added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEventWithExecutions) GetExecutions added in v0.0.40

GetExecutions returns the Executions field value if set, zero value otherwise.

func (*WorkflowsWorkflowEventWithExecutions) GetExecutionsOk added in v0.0.40

GetExecutionsOk returns a tuple with the Executions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEventWithExecutions) GetId added in v0.0.40

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowsWorkflowEventWithExecutions) GetIdOk added in v0.0.40

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEventWithExecutions) GetNodeId added in v0.0.40

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*WorkflowsWorkflowEventWithExecutions) GetNodeIdOk added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) GetNodeIdOk() (*string, bool)

GetNodeIdOk returns a tuple with the NodeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEventWithExecutions) GetWorkflowId added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) GetWorkflowId() string

GetWorkflowId returns the WorkflowId field value if set, zero value otherwise.

func (*WorkflowsWorkflowEventWithExecutions) GetWorkflowIdOk added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) GetWorkflowIdOk() (*string, bool)

GetWorkflowIdOk returns a tuple with the WorkflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowEventWithExecutions) HasChannel added in v0.0.40

HasChannel returns a boolean if a field has been set.

func (*WorkflowsWorkflowEventWithExecutions) HasCreatedAt added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*WorkflowsWorkflowEventWithExecutions) HasCustomName added in v0.0.43

func (o *WorkflowsWorkflowEventWithExecutions) HasCustomName() bool

HasCustomName returns a boolean if a field has been set.

func (*WorkflowsWorkflowEventWithExecutions) HasData added in v0.0.40

HasData returns a boolean if a field has been set.

func (*WorkflowsWorkflowEventWithExecutions) HasExecutions added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) HasExecutions() bool

HasExecutions returns a boolean if a field has been set.

func (*WorkflowsWorkflowEventWithExecutions) HasId added in v0.0.40

HasId returns a boolean if a field has been set.

func (*WorkflowsWorkflowEventWithExecutions) HasNodeId added in v0.0.40

HasNodeId returns a boolean if a field has been set.

func (*WorkflowsWorkflowEventWithExecutions) HasWorkflowId added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) HasWorkflowId() bool

HasWorkflowId returns a boolean if a field has been set.

func (WorkflowsWorkflowEventWithExecutions) MarshalJSON added in v0.0.40

func (o WorkflowsWorkflowEventWithExecutions) MarshalJSON() ([]byte, error)

func (*WorkflowsWorkflowEventWithExecutions) SetChannel added in v0.0.40

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*WorkflowsWorkflowEventWithExecutions) SetCreatedAt added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*WorkflowsWorkflowEventWithExecutions) SetCustomName added in v0.0.43

func (o *WorkflowsWorkflowEventWithExecutions) SetCustomName(v string)

SetCustomName gets a reference to the given string and assigns it to the CustomName field.

func (*WorkflowsWorkflowEventWithExecutions) SetData added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*WorkflowsWorkflowEventWithExecutions) SetExecutions added in v0.0.40

SetExecutions gets a reference to the given []WorkflowsWorkflowNodeExecution and assigns it to the Executions field.

func (*WorkflowsWorkflowEventWithExecutions) SetId added in v0.0.40

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowsWorkflowEventWithExecutions) SetNodeId added in v0.0.40

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*WorkflowsWorkflowEventWithExecutions) SetWorkflowId added in v0.0.40

func (o *WorkflowsWorkflowEventWithExecutions) SetWorkflowId(v string)

SetWorkflowId gets a reference to the given string and assigns it to the WorkflowId field.

func (WorkflowsWorkflowEventWithExecutions) ToMap added in v0.0.40

func (o WorkflowsWorkflowEventWithExecutions) ToMap() (map[string]interface{}, error)

type WorkflowsWorkflowMetadata

type WorkflowsWorkflowMetadata struct {
	Id             *string                     `json:"id,omitempty"`
	OrganizationId *string                     `json:"organizationId,omitempty"`
	Name           *string                     `json:"name,omitempty"`
	Description    *string                     `json:"description,omitempty"`
	CreatedAt      *time.Time                  `json:"createdAt,omitempty"`
	UpdatedAt      *time.Time                  `json:"updatedAt,omitempty"`
	CreatedBy      *SuperplaneWorkflowsUserRef `json:"createdBy,omitempty"`
	IsTemplate     *bool                       `json:"isTemplate,omitempty"`
}

WorkflowsWorkflowMetadata struct for WorkflowsWorkflowMetadata

func NewWorkflowsWorkflowMetadata

func NewWorkflowsWorkflowMetadata() *WorkflowsWorkflowMetadata

NewWorkflowsWorkflowMetadata instantiates a new WorkflowsWorkflowMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsWorkflowMetadataWithDefaults

func NewWorkflowsWorkflowMetadataWithDefaults() *WorkflowsWorkflowMetadata

NewWorkflowsWorkflowMetadataWithDefaults instantiates a new WorkflowsWorkflowMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsWorkflowMetadata) GetCreatedAt

func (o *WorkflowsWorkflowMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*WorkflowsWorkflowMetadata) GetCreatedAtOk

func (o *WorkflowsWorkflowMetadata) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowMetadata) GetCreatedBy

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkflowsWorkflowMetadata) GetCreatedByOk

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowMetadata) GetDescription

func (o *WorkflowsWorkflowMetadata) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowsWorkflowMetadata) GetDescriptionOk

func (o *WorkflowsWorkflowMetadata) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowMetadata) GetId

func (o *WorkflowsWorkflowMetadata) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowsWorkflowMetadata) GetIdOk

func (o *WorkflowsWorkflowMetadata) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowMetadata) GetIsTemplate added in v0.0.45

func (o *WorkflowsWorkflowMetadata) GetIsTemplate() bool

GetIsTemplate returns the IsTemplate field value if set, zero value otherwise.

func (*WorkflowsWorkflowMetadata) GetIsTemplateOk added in v0.0.45

func (o *WorkflowsWorkflowMetadata) GetIsTemplateOk() (*bool, bool)

GetIsTemplateOk returns a tuple with the IsTemplate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowMetadata) GetName

func (o *WorkflowsWorkflowMetadata) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowsWorkflowMetadata) GetNameOk

func (o *WorkflowsWorkflowMetadata) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowMetadata) GetOrganizationId

func (o *WorkflowsWorkflowMetadata) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*WorkflowsWorkflowMetadata) GetOrganizationIdOk

func (o *WorkflowsWorkflowMetadata) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowMetadata) GetUpdatedAt

func (o *WorkflowsWorkflowMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*WorkflowsWorkflowMetadata) GetUpdatedAtOk

func (o *WorkflowsWorkflowMetadata) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowMetadata) HasCreatedAt

func (o *WorkflowsWorkflowMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*WorkflowsWorkflowMetadata) HasCreatedBy

func (o *WorkflowsWorkflowMetadata) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkflowsWorkflowMetadata) HasDescription

func (o *WorkflowsWorkflowMetadata) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WorkflowsWorkflowMetadata) HasId

func (o *WorkflowsWorkflowMetadata) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowsWorkflowMetadata) HasIsTemplate added in v0.0.45

func (o *WorkflowsWorkflowMetadata) HasIsTemplate() bool

HasIsTemplate returns a boolean if a field has been set.

func (*WorkflowsWorkflowMetadata) HasName

func (o *WorkflowsWorkflowMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowsWorkflowMetadata) HasOrganizationId

func (o *WorkflowsWorkflowMetadata) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*WorkflowsWorkflowMetadata) HasUpdatedAt

func (o *WorkflowsWorkflowMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (WorkflowsWorkflowMetadata) MarshalJSON

func (o WorkflowsWorkflowMetadata) MarshalJSON() ([]byte, error)

func (*WorkflowsWorkflowMetadata) SetCreatedAt

func (o *WorkflowsWorkflowMetadata) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*WorkflowsWorkflowMetadata) SetCreatedBy

SetCreatedBy gets a reference to the given SuperplaneWorkflowsUserRef and assigns it to the CreatedBy field.

func (*WorkflowsWorkflowMetadata) SetDescription

func (o *WorkflowsWorkflowMetadata) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowsWorkflowMetadata) SetId

func (o *WorkflowsWorkflowMetadata) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowsWorkflowMetadata) SetIsTemplate added in v0.0.45

func (o *WorkflowsWorkflowMetadata) SetIsTemplate(v bool)

SetIsTemplate gets a reference to the given bool and assigns it to the IsTemplate field.

func (*WorkflowsWorkflowMetadata) SetName

func (o *WorkflowsWorkflowMetadata) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowsWorkflowMetadata) SetOrganizationId

func (o *WorkflowsWorkflowMetadata) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*WorkflowsWorkflowMetadata) SetUpdatedAt

func (o *WorkflowsWorkflowMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (WorkflowsWorkflowMetadata) ToMap

func (o WorkflowsWorkflowMetadata) ToMap() (map[string]interface{}, error)

type WorkflowsWorkflowNodeExecution

type WorkflowsWorkflowNodeExecution struct {
	Id                  *string                            `json:"id,omitempty"`
	WorkflowId          *string                            `json:"workflowId,omitempty"`
	NodeId              *string                            `json:"nodeId,omitempty"`
	ParentExecutionId   *string                            `json:"parentExecutionId,omitempty"`
	PreviousExecutionId *string                            `json:"previousExecutionId,omitempty"`
	State               *WorkflowNodeExecutionState        `json:"state,omitempty"`
	Result              *WorkflowNodeExecutionResult       `json:"result,omitempty"`
	ResultReason        *WorkflowNodeExecutionResultReason `json:"resultReason,omitempty"`
	ResultMessage       *string                            `json:"resultMessage,omitempty"`
	Input               map[string]interface{}             `json:"input,omitempty"`
	Outputs             map[string]interface{}             `json:"outputs,omitempty"`
	CreatedAt           *time.Time                         `json:"createdAt,omitempty"`
	UpdatedAt           *time.Time                         `json:"updatedAt,omitempty"`
	Metadata            map[string]interface{}             `json:"metadata,omitempty"`
	Configuration       map[string]interface{}             `json:"configuration,omitempty"`
	ChildExecutions     []WorkflowsWorkflowNodeExecution   `json:"childExecutions,omitempty"`
	RootEvent           *WorkflowsWorkflowEvent            `json:"rootEvent,omitempty"`
	CancelledBy         *SuperplaneWorkflowsUserRef        `json:"cancelledBy,omitempty"`
}

WorkflowsWorkflowNodeExecution struct for WorkflowsWorkflowNodeExecution

func NewWorkflowsWorkflowNodeExecution

func NewWorkflowsWorkflowNodeExecution() *WorkflowsWorkflowNodeExecution

NewWorkflowsWorkflowNodeExecution instantiates a new WorkflowsWorkflowNodeExecution object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsWorkflowNodeExecutionWithDefaults

func NewWorkflowsWorkflowNodeExecutionWithDefaults() *WorkflowsWorkflowNodeExecution

NewWorkflowsWorkflowNodeExecutionWithDefaults instantiates a new WorkflowsWorkflowNodeExecution object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsWorkflowNodeExecution) GetCancelledBy added in v0.0.43

GetCancelledBy returns the CancelledBy field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetCancelledByOk added in v0.0.43

GetCancelledByOk returns a tuple with the CancelledBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetChildExecutions

GetChildExecutions returns the ChildExecutions field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetChildExecutionsOk

GetChildExecutionsOk returns a tuple with the ChildExecutions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetConfiguration

func (o *WorkflowsWorkflowNodeExecution) GetConfiguration() map[string]interface{}

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetConfigurationOk

func (o *WorkflowsWorkflowNodeExecution) GetConfigurationOk() (map[string]interface{}, bool)

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetCreatedAt

func (o *WorkflowsWorkflowNodeExecution) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetCreatedAtOk

func (o *WorkflowsWorkflowNodeExecution) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetIdOk

func (o *WorkflowsWorkflowNodeExecution) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetInput

func (o *WorkflowsWorkflowNodeExecution) GetInput() map[string]interface{}

GetInput returns the Input field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetInputOk

func (o *WorkflowsWorkflowNodeExecution) GetInputOk() (map[string]interface{}, bool)

GetInputOk returns a tuple with the Input field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetMetadata

func (o *WorkflowsWorkflowNodeExecution) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetMetadataOk

func (o *WorkflowsWorkflowNodeExecution) GetMetadataOk() (map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetNodeId

func (o *WorkflowsWorkflowNodeExecution) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetNodeIdOk

func (o *WorkflowsWorkflowNodeExecution) GetNodeIdOk() (*string, bool)

GetNodeIdOk returns a tuple with the NodeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetOutputs

func (o *WorkflowsWorkflowNodeExecution) GetOutputs() map[string]interface{}

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetOutputsOk

func (o *WorkflowsWorkflowNodeExecution) GetOutputsOk() (map[string]interface{}, bool)

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetParentExecutionId

func (o *WorkflowsWorkflowNodeExecution) GetParentExecutionId() string

GetParentExecutionId returns the ParentExecutionId field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetParentExecutionIdOk

func (o *WorkflowsWorkflowNodeExecution) GetParentExecutionIdOk() (*string, bool)

GetParentExecutionIdOk returns a tuple with the ParentExecutionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetPreviousExecutionId

func (o *WorkflowsWorkflowNodeExecution) GetPreviousExecutionId() string

GetPreviousExecutionId returns the PreviousExecutionId field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetPreviousExecutionIdOk

func (o *WorkflowsWorkflowNodeExecution) GetPreviousExecutionIdOk() (*string, bool)

GetPreviousExecutionIdOk returns a tuple with the PreviousExecutionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetResultMessage

func (o *WorkflowsWorkflowNodeExecution) GetResultMessage() string

GetResultMessage returns the ResultMessage field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetResultMessageOk

func (o *WorkflowsWorkflowNodeExecution) GetResultMessageOk() (*string, bool)

GetResultMessageOk returns a tuple with the ResultMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetResultOk

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetResultReason

GetResultReason returns the ResultReason field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetResultReasonOk

GetResultReasonOk returns a tuple with the ResultReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetRootEvent

GetRootEvent returns the RootEvent field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetRootEventOk

GetRootEventOk returns a tuple with the RootEvent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetState

GetState returns the State field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetStateOk

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetUpdatedAt

func (o *WorkflowsWorkflowNodeExecution) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetUpdatedAtOk

func (o *WorkflowsWorkflowNodeExecution) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) GetWorkflowId

func (o *WorkflowsWorkflowNodeExecution) GetWorkflowId() string

GetWorkflowId returns the WorkflowId field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeExecution) GetWorkflowIdOk

func (o *WorkflowsWorkflowNodeExecution) GetWorkflowIdOk() (*string, bool)

GetWorkflowIdOk returns a tuple with the WorkflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeExecution) HasCancelledBy added in v0.0.43

func (o *WorkflowsWorkflowNodeExecution) HasCancelledBy() bool

HasCancelledBy returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasChildExecutions

func (o *WorkflowsWorkflowNodeExecution) HasChildExecutions() bool

HasChildExecutions returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasConfiguration

func (o *WorkflowsWorkflowNodeExecution) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasCreatedAt

func (o *WorkflowsWorkflowNodeExecution) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasId

HasId returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasInput

func (o *WorkflowsWorkflowNodeExecution) HasInput() bool

HasInput returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasMetadata

func (o *WorkflowsWorkflowNodeExecution) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasNodeId

func (o *WorkflowsWorkflowNodeExecution) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasOutputs

func (o *WorkflowsWorkflowNodeExecution) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasParentExecutionId

func (o *WorkflowsWorkflowNodeExecution) HasParentExecutionId() bool

HasParentExecutionId returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasPreviousExecutionId

func (o *WorkflowsWorkflowNodeExecution) HasPreviousExecutionId() bool

HasPreviousExecutionId returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasResult

func (o *WorkflowsWorkflowNodeExecution) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasResultMessage

func (o *WorkflowsWorkflowNodeExecution) HasResultMessage() bool

HasResultMessage returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasResultReason

func (o *WorkflowsWorkflowNodeExecution) HasResultReason() bool

HasResultReason returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasRootEvent

func (o *WorkflowsWorkflowNodeExecution) HasRootEvent() bool

HasRootEvent returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasState

func (o *WorkflowsWorkflowNodeExecution) HasState() bool

HasState returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasUpdatedAt

func (o *WorkflowsWorkflowNodeExecution) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeExecution) HasWorkflowId

func (o *WorkflowsWorkflowNodeExecution) HasWorkflowId() bool

HasWorkflowId returns a boolean if a field has been set.

func (WorkflowsWorkflowNodeExecution) MarshalJSON

func (o WorkflowsWorkflowNodeExecution) MarshalJSON() ([]byte, error)

func (*WorkflowsWorkflowNodeExecution) SetCancelledBy added in v0.0.43

SetCancelledBy gets a reference to the given SuperplaneWorkflowsUserRef and assigns it to the CancelledBy field.

func (*WorkflowsWorkflowNodeExecution) SetChildExecutions

SetChildExecutions gets a reference to the given []WorkflowsWorkflowNodeExecution and assigns it to the ChildExecutions field.

func (*WorkflowsWorkflowNodeExecution) SetConfiguration

func (o *WorkflowsWorkflowNodeExecution) SetConfiguration(v map[string]interface{})

SetConfiguration gets a reference to the given map[string]interface{} and assigns it to the Configuration field.

func (*WorkflowsWorkflowNodeExecution) SetCreatedAt

func (o *WorkflowsWorkflowNodeExecution) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*WorkflowsWorkflowNodeExecution) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowsWorkflowNodeExecution) SetInput

func (o *WorkflowsWorkflowNodeExecution) SetInput(v map[string]interface{})

SetInput gets a reference to the given map[string]interface{} and assigns it to the Input field.

func (*WorkflowsWorkflowNodeExecution) SetMetadata

func (o *WorkflowsWorkflowNodeExecution) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*WorkflowsWorkflowNodeExecution) SetNodeId

func (o *WorkflowsWorkflowNodeExecution) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*WorkflowsWorkflowNodeExecution) SetOutputs

func (o *WorkflowsWorkflowNodeExecution) SetOutputs(v map[string]interface{})

SetOutputs gets a reference to the given map[string]interface{} and assigns it to the Outputs field.

func (*WorkflowsWorkflowNodeExecution) SetParentExecutionId

func (o *WorkflowsWorkflowNodeExecution) SetParentExecutionId(v string)

SetParentExecutionId gets a reference to the given string and assigns it to the ParentExecutionId field.

func (*WorkflowsWorkflowNodeExecution) SetPreviousExecutionId

func (o *WorkflowsWorkflowNodeExecution) SetPreviousExecutionId(v string)

SetPreviousExecutionId gets a reference to the given string and assigns it to the PreviousExecutionId field.

func (*WorkflowsWorkflowNodeExecution) SetResult

SetResult gets a reference to the given WorkflowNodeExecutionResult and assigns it to the Result field.

func (*WorkflowsWorkflowNodeExecution) SetResultMessage

func (o *WorkflowsWorkflowNodeExecution) SetResultMessage(v string)

SetResultMessage gets a reference to the given string and assigns it to the ResultMessage field.

func (*WorkflowsWorkflowNodeExecution) SetResultReason

SetResultReason gets a reference to the given WorkflowNodeExecutionResultReason and assigns it to the ResultReason field.

func (*WorkflowsWorkflowNodeExecution) SetRootEvent

SetRootEvent gets a reference to the given WorkflowsWorkflowEvent and assigns it to the RootEvent field.

func (*WorkflowsWorkflowNodeExecution) SetState

SetState gets a reference to the given WorkflowNodeExecutionState and assigns it to the State field.

func (*WorkflowsWorkflowNodeExecution) SetUpdatedAt

func (o *WorkflowsWorkflowNodeExecution) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*WorkflowsWorkflowNodeExecution) SetWorkflowId

func (o *WorkflowsWorkflowNodeExecution) SetWorkflowId(v string)

SetWorkflowId gets a reference to the given string and assigns it to the WorkflowId field.

func (WorkflowsWorkflowNodeExecution) ToMap

func (o WorkflowsWorkflowNodeExecution) ToMap() (map[string]interface{}, error)

type WorkflowsWorkflowNodeQueueItem

type WorkflowsWorkflowNodeQueueItem struct {
	Id         *string                 `json:"id,omitempty"`
	WorkflowId *string                 `json:"workflowId,omitempty"`
	NodeId     *string                 `json:"nodeId,omitempty"`
	Input      map[string]interface{}  `json:"input,omitempty"`
	RootEvent  *WorkflowsWorkflowEvent `json:"rootEvent,omitempty"`
	CreatedAt  *time.Time              `json:"createdAt,omitempty"`
}

WorkflowsWorkflowNodeQueueItem struct for WorkflowsWorkflowNodeQueueItem

func NewWorkflowsWorkflowNodeQueueItem

func NewWorkflowsWorkflowNodeQueueItem() *WorkflowsWorkflowNodeQueueItem

NewWorkflowsWorkflowNodeQueueItem instantiates a new WorkflowsWorkflowNodeQueueItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsWorkflowNodeQueueItemWithDefaults

func NewWorkflowsWorkflowNodeQueueItemWithDefaults() *WorkflowsWorkflowNodeQueueItem

NewWorkflowsWorkflowNodeQueueItemWithDefaults instantiates a new WorkflowsWorkflowNodeQueueItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsWorkflowNodeQueueItem) GetCreatedAt

func (o *WorkflowsWorkflowNodeQueueItem) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeQueueItem) GetCreatedAtOk

func (o *WorkflowsWorkflowNodeQueueItem) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeQueueItem) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeQueueItem) GetIdOk

func (o *WorkflowsWorkflowNodeQueueItem) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeQueueItem) GetInput

func (o *WorkflowsWorkflowNodeQueueItem) GetInput() map[string]interface{}

GetInput returns the Input field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeQueueItem) GetInputOk

func (o *WorkflowsWorkflowNodeQueueItem) GetInputOk() (map[string]interface{}, bool)

GetInputOk returns a tuple with the Input field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeQueueItem) GetNodeId

func (o *WorkflowsWorkflowNodeQueueItem) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeQueueItem) GetNodeIdOk

func (o *WorkflowsWorkflowNodeQueueItem) GetNodeIdOk() (*string, bool)

GetNodeIdOk returns a tuple with the NodeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeQueueItem) GetRootEvent

GetRootEvent returns the RootEvent field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeQueueItem) GetRootEventOk

GetRootEventOk returns a tuple with the RootEvent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeQueueItem) GetWorkflowId

func (o *WorkflowsWorkflowNodeQueueItem) GetWorkflowId() string

GetWorkflowId returns the WorkflowId field value if set, zero value otherwise.

func (*WorkflowsWorkflowNodeQueueItem) GetWorkflowIdOk

func (o *WorkflowsWorkflowNodeQueueItem) GetWorkflowIdOk() (*string, bool)

GetWorkflowIdOk returns a tuple with the WorkflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowNodeQueueItem) HasCreatedAt

func (o *WorkflowsWorkflowNodeQueueItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeQueueItem) HasId

HasId returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeQueueItem) HasInput

func (o *WorkflowsWorkflowNodeQueueItem) HasInput() bool

HasInput returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeQueueItem) HasNodeId

func (o *WorkflowsWorkflowNodeQueueItem) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeQueueItem) HasRootEvent

func (o *WorkflowsWorkflowNodeQueueItem) HasRootEvent() bool

HasRootEvent returns a boolean if a field has been set.

func (*WorkflowsWorkflowNodeQueueItem) HasWorkflowId

func (o *WorkflowsWorkflowNodeQueueItem) HasWorkflowId() bool

HasWorkflowId returns a boolean if a field has been set.

func (WorkflowsWorkflowNodeQueueItem) MarshalJSON

func (o WorkflowsWorkflowNodeQueueItem) MarshalJSON() ([]byte, error)

func (*WorkflowsWorkflowNodeQueueItem) SetCreatedAt

func (o *WorkflowsWorkflowNodeQueueItem) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*WorkflowsWorkflowNodeQueueItem) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowsWorkflowNodeQueueItem) SetInput

func (o *WorkflowsWorkflowNodeQueueItem) SetInput(v map[string]interface{})

SetInput gets a reference to the given map[string]interface{} and assigns it to the Input field.

func (*WorkflowsWorkflowNodeQueueItem) SetNodeId

func (o *WorkflowsWorkflowNodeQueueItem) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*WorkflowsWorkflowNodeQueueItem) SetRootEvent

SetRootEvent gets a reference to the given WorkflowsWorkflowEvent and assigns it to the RootEvent field.

func (*WorkflowsWorkflowNodeQueueItem) SetWorkflowId

func (o *WorkflowsWorkflowNodeQueueItem) SetWorkflowId(v string)

SetWorkflowId gets a reference to the given string and assigns it to the WorkflowId field.

func (WorkflowsWorkflowNodeQueueItem) ToMap

func (o WorkflowsWorkflowNodeQueueItem) ToMap() (map[string]interface{}, error)

type WorkflowsWorkflowSpec

type WorkflowsWorkflowSpec struct {
	Nodes []ComponentsNode `json:"nodes,omitempty"`
	Edges []ComponentsEdge `json:"edges,omitempty"`
}

WorkflowsWorkflowSpec struct for WorkflowsWorkflowSpec

func NewWorkflowsWorkflowSpec

func NewWorkflowsWorkflowSpec() *WorkflowsWorkflowSpec

NewWorkflowsWorkflowSpec instantiates a new WorkflowsWorkflowSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsWorkflowSpecWithDefaults

func NewWorkflowsWorkflowSpecWithDefaults() *WorkflowsWorkflowSpec

NewWorkflowsWorkflowSpecWithDefaults instantiates a new WorkflowsWorkflowSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsWorkflowSpec) GetEdges

func (o *WorkflowsWorkflowSpec) GetEdges() []ComponentsEdge

GetEdges returns the Edges field value if set, zero value otherwise.

func (*WorkflowsWorkflowSpec) GetEdgesOk

func (o *WorkflowsWorkflowSpec) GetEdgesOk() ([]ComponentsEdge, bool)

GetEdgesOk returns a tuple with the Edges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowSpec) GetNodes

func (o *WorkflowsWorkflowSpec) GetNodes() []ComponentsNode

GetNodes returns the Nodes field value if set, zero value otherwise.

func (*WorkflowsWorkflowSpec) GetNodesOk

func (o *WorkflowsWorkflowSpec) GetNodesOk() ([]ComponentsNode, bool)

GetNodesOk returns a tuple with the Nodes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowSpec) HasEdges

func (o *WorkflowsWorkflowSpec) HasEdges() bool

HasEdges returns a boolean if a field has been set.

func (*WorkflowsWorkflowSpec) HasNodes

func (o *WorkflowsWorkflowSpec) HasNodes() bool

HasNodes returns a boolean if a field has been set.

func (WorkflowsWorkflowSpec) MarshalJSON

func (o WorkflowsWorkflowSpec) MarshalJSON() ([]byte, error)

func (*WorkflowsWorkflowSpec) SetEdges

func (o *WorkflowsWorkflowSpec) SetEdges(v []ComponentsEdge)

SetEdges gets a reference to the given []ComponentsEdge and assigns it to the Edges field.

func (*WorkflowsWorkflowSpec) SetNodes

func (o *WorkflowsWorkflowSpec) SetNodes(v []ComponentsNode)

SetNodes gets a reference to the given []ComponentsNode and assigns it to the Nodes field.

func (WorkflowsWorkflowSpec) ToMap

func (o WorkflowsWorkflowSpec) ToMap() (map[string]interface{}, error)

type WorkflowsWorkflowStatus

type WorkflowsWorkflowStatus struct {
	LastExecutions []WorkflowsWorkflowNodeExecution `json:"lastExecutions,omitempty"`
	NextQueueItems []WorkflowsWorkflowNodeQueueItem `json:"nextQueueItems,omitempty"`
	LastEvents     []WorkflowsWorkflowEvent         `json:"lastEvents,omitempty"`
}

WorkflowsWorkflowStatus struct for WorkflowsWorkflowStatus

func NewWorkflowsWorkflowStatus

func NewWorkflowsWorkflowStatus() *WorkflowsWorkflowStatus

NewWorkflowsWorkflowStatus instantiates a new WorkflowsWorkflowStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowsWorkflowStatusWithDefaults

func NewWorkflowsWorkflowStatusWithDefaults() *WorkflowsWorkflowStatus

NewWorkflowsWorkflowStatusWithDefaults instantiates a new WorkflowsWorkflowStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowsWorkflowStatus) GetLastEvents

func (o *WorkflowsWorkflowStatus) GetLastEvents() []WorkflowsWorkflowEvent

GetLastEvents returns the LastEvents field value if set, zero value otherwise.

func (*WorkflowsWorkflowStatus) GetLastEventsOk

func (o *WorkflowsWorkflowStatus) GetLastEventsOk() ([]WorkflowsWorkflowEvent, bool)

GetLastEventsOk returns a tuple with the LastEvents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowStatus) GetLastExecutions

GetLastExecutions returns the LastExecutions field value if set, zero value otherwise.

func (*WorkflowsWorkflowStatus) GetLastExecutionsOk

func (o *WorkflowsWorkflowStatus) GetLastExecutionsOk() ([]WorkflowsWorkflowNodeExecution, bool)

GetLastExecutionsOk returns a tuple with the LastExecutions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowStatus) GetNextQueueItems

GetNextQueueItems returns the NextQueueItems field value if set, zero value otherwise.

func (*WorkflowsWorkflowStatus) GetNextQueueItemsOk

func (o *WorkflowsWorkflowStatus) GetNextQueueItemsOk() ([]WorkflowsWorkflowNodeQueueItem, bool)

GetNextQueueItemsOk returns a tuple with the NextQueueItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowsWorkflowStatus) HasLastEvents

func (o *WorkflowsWorkflowStatus) HasLastEvents() bool

HasLastEvents returns a boolean if a field has been set.

func (*WorkflowsWorkflowStatus) HasLastExecutions

func (o *WorkflowsWorkflowStatus) HasLastExecutions() bool

HasLastExecutions returns a boolean if a field has been set.

func (*WorkflowsWorkflowStatus) HasNextQueueItems

func (o *WorkflowsWorkflowStatus) HasNextQueueItems() bool

HasNextQueueItems returns a boolean if a field has been set.

func (WorkflowsWorkflowStatus) MarshalJSON

func (o WorkflowsWorkflowStatus) MarshalJSON() ([]byte, error)

func (*WorkflowsWorkflowStatus) SetLastEvents

func (o *WorkflowsWorkflowStatus) SetLastEvents(v []WorkflowsWorkflowEvent)

SetLastEvents gets a reference to the given []WorkflowsWorkflowEvent and assigns it to the LastEvents field.

func (*WorkflowsWorkflowStatus) SetLastExecutions

func (o *WorkflowsWorkflowStatus) SetLastExecutions(v []WorkflowsWorkflowNodeExecution)

SetLastExecutions gets a reference to the given []WorkflowsWorkflowNodeExecution and assigns it to the LastExecutions field.

func (*WorkflowsWorkflowStatus) SetNextQueueItems

func (o *WorkflowsWorkflowStatus) SetNextQueueItems(v []WorkflowsWorkflowNodeQueueItem)

SetNextQueueItems gets a reference to the given []WorkflowsWorkflowNodeQueueItem and assigns it to the NextQueueItems field.

func (WorkflowsWorkflowStatus) ToMap

func (o WorkflowsWorkflowStatus) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL