Swift offers the ability to send data that is required. But API's, especially REST-full thingies like to send it with small links: idea introduce LazyDeserializable ```swift protocol LazyDeserializable: Deserializable { associatedType: M: Deserializable var fullObject: M? {get set} } ```
Swift offers the ability to send data that is required. But API's, especially REST-full thingies like to send it with small links:
idea introduce LazyDeserializable