the json to deserialize
Optional
callback: ((err: any, result: T) => void)the callback to invoke once deserialization has completed.
Optional
customArgs: anycustom arguments that are available as context.args
during the deserialization process. This can be used as dependency injection mechanism to pass in, for example, stores.
Optional
callback: ((err: any, result: T) => void)Optional
customArgs: anyGenerated using TypeDoc
Similar to deserialize, but updates an existing object instance. Properties will always updated entirely, but properties not present in the json will be kept as is. Further this method behaves similar to deserialize.
Returns
deserialized object, possibly incomplete.