Result structure for an actor attribute update (#143).
Returned by FoundryClient.updateActorAttribute. The updatedAttributes map echoes back the post-update value for every patched dot-path so callers can confirm what changed.
FoundryClient.updateActorAttribute
updatedAttributes
const result: ActorAttributeUpdateResult = { success: true, updatedAttributes: { 'attributes.hp.value': 30, 'currency.gp': 12 },}; Copy
const result: ActorAttributeUpdateResult = { success: true, updatedAttributes: { 'attributes.hp.value': 30, 'currency.gp': 12 },};
Result structure for an actor attribute update (#143).
Returned by
FoundryClient.updateActorAttribute. TheupdatedAttributesmap echoes back the post-update value for every patched dot-path so callers can confirm what changed.Example