ChildCUWOTerminated
When a child CUWO either terminates itself or is terminated due to a TerminateChildCUWOOperation
operation, the parent CUWO will be notified via a ChildCUWOTerminated
message.
The message is defined as follows:
/**
* Message of the "parent/child CUWOs" API that informs a parent CUWO about the
* termination of one of its child CUWOs.
*/
class ChildCUWOTerminated extends AbstractMessage {
readonly "@type" : string = "n4.cuwo.messages.parentchild.ChildCUWOTerminated";
/**
* The ID of the message.
*/
public id : string;
/**
* The handle of the terminated child CUWO.
*/
public cuwoHandle : string;
/**
* Result data that the terminated child CUWO provided.
*/
public resultData? : string;
}