Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddUserAssigneeCommand ¶
type AddUserAssigneeCommand struct { eventstore.BaseCommand AssigneeId string `json:"assigneeId" validate:"required"` At *time.Time AppSource string }
func NewAddUserAssigneeCommand ¶
func NewAddUserAssigneeCommand(issueId, tenant, loggedInUserId, userId, appSource string, at *time.Time) *AddUserAssigneeCommand
type AddUserFollowerCommand ¶
type AddUserFollowerCommand struct { eventstore.BaseCommand FollowerId string `json:"followerId" validate:"required"` At *time.Time AppSource string }
func NewAddUserFollowerCommand ¶
func NewAddUserFollowerCommand(issueId, tenant, loggedInUserId, userId, appSource string, at *time.Time) *AddUserFollowerCommand
type RemoveUserAssigneeCommand ¶
type RemoveUserAssigneeCommand struct { eventstore.BaseCommand AssigneeId string `json:"assigneeId" validate:"required"` At *time.Time AppSource string }
func NewRemoveUserAssigneeCommand ¶
func NewRemoveUserAssigneeCommand(issueId, tenant, loggedInUserId, userId, appSource string, at *time.Time) *RemoveUserAssigneeCommand
type RemoveUserFollowerCommand ¶
type RemoveUserFollowerCommand struct { eventstore.BaseCommand FollowerId string `json:"followerId" validate:"required"` At *time.Time AppSource string }
func NewRemoveUserFollowerCommand ¶
func NewRemoveUserFollowerCommand(issueId, tenant, loggedInUserId, userId, appSource string, at *time.Time) *RemoveUserFollowerCommand
type UpsertIssueCommand ¶
type UpsertIssueCommand struct { eventstore.BaseCommand IsCreateCommand bool DataFields model.IssueDataFields Source cmnmod.Source ExternalSystem cmnmod.ExternalSystem CreatedAt *time.Time UpdatedAt *time.Time }
func NewUpsertIssueCommand ¶
func NewUpsertIssueCommand(issueId, tenant, loggedInUserId string, dataFields model.IssueDataFields, source cmnmod.Source, externalSystem cmnmod.ExternalSystem, createdAt, updatedAt *time.Time) *UpsertIssueCommand
Click to show internal directories.
Click to hide internal directories.