processdefinition

package
v0.0.34 Latest Latest
Warning

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

Go to latest
Published: Sep 21, 2025 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type API

type API interface {
	camunda.Base
	GetProcessDefinitionByKey(ctx context.Context, key int64) (ProcessDefinition, error)
	SearchProcessDefinitions(ctx context.Context, filter SearchFilterOpts, size int32) (ProcessDefinitions, error)
}

type ProcessDefinition

type ProcessDefinition struct {
	BpmnProcessId string `json:"bpmnProcessId,omitempty"`
	Key           int64  `json:"key,omitempty"`
	Name          string `json:"name,omitempty"`
	TenantId      string `json:"tenantId,omitempty"`
	Version       int32  `json:"version,omitempty"`
	VersionTag    string `json:"versionTag,omitempty"`
}

type ProcessDefinitions added in v0.0.30

type ProcessDefinitions struct {
	Total int32               `json:"total,omitempty"`
	Items []ProcessDefinition `json:"items,omitempty"`
}

type SearchFilterOpts

type SearchFilterOpts struct {
	Key           int64  `json:"key,omitempty"`
	BpmnProcessId string `json:"bpmnProcessId,omitempty"`
	Version       int32  `json:"version,omitempty"`
	VersionTag    string `json:"versionTag,omitempty"`
}

Jump to

Keyboard shortcuts

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