Skip to main content

made_app/workers/
execute_ceremony_operation_input.rs

1use made_core::ports::CeremonyStepHandlerRequest;
2use made_core::value_objects::{
3    AuditActorKind, StateIteration, StateVisit, StepClaimFence, StepIteration,
4};
5
6/// One accepted claim and the semantic handler input it may execute.
7#[derive(Debug, Clone, PartialEq, Eq)]
8pub struct ExecuteCeremonyOperationInput {
9    pub handler_request: CeremonyStepHandlerRequest,
10    pub state_visit: StateVisit,
11    pub state_iteration: StateIteration,
12    pub step_iteration: StepIteration,
13    pub claim_fence: StepClaimFence,
14    pub actor_kind: AuditActorKind,
15}