ResolveEventData

public class ResolveEventData : CommunicationEventData

ResolveEventData provides the entire message payload data for a ResolveEvent including the object itself as well as associated private data.

Public attributes.

  • The object to be resolved (may be nil if relatedObjects property is defined).

    Declaration

    Swift

    public var object: CoatyObject?
  • Related objects, i.e. child objects to be resolved (may be nil if object property is defined).

    Declaration

    Swift

    public var relatedObjects: [CoatyObject]?
  • Application-specific options (optional).

    Declaration

    Swift

    public var privateData: [String : Any]?

Codable methods.

  • Undocumented

    Declaration

    Swift

    override public func encode(to encoder: Encoder) throws