pub struct Output {
pub customer_message: CustomerMessageDraft,
pub internal_flags: Vec<InternalFlag>,
pub disposition: ReviewDisposition,
pub included_facts: Vec<IncludedFact>,
pub omitted_facts: Vec<OmittedFact>,
}Expand description
Output used by the daily update workflow; it packages operational changes into reviewable staff updates instead of free-form agent output.
Fields§
§customer_message: CustomerMessageDraftCustomer message copied from reviewed source input for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
internal_flags: Vec<InternalFlag>Internal flags copied from reviewed source input for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
disposition: ReviewDispositionDisposition copied from reviewed source input for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
included_facts: Vec<IncludedFact>Included facts copied from reviewed source input for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
omitted_facts: Vec<OmittedFact>Omitted facts copied from reviewed source input for audit, reviewer explanation, or agent context; callers must not invent or mutate it.