/**
* Trigger the `beforeDeserialize` hooks declared on the schema to massage raw payloads
* prior to property mapping.
*/
export functionalterBeforeDeserialize(data, schema, options) {
return schema?.$hooks?.alter("beforeDeserialize", data, [options]);
}