Is there a method to set all properties in HumanoidDescription to default values at once?

I am trying to set the properties in Humanoid Description to their default values.
For example,

local CurrentDescription = humanoid:GetAppliedDescription()
	
CurrentDescription.BodyTypeScale = 0
CurrentDescription.ProportionScale = 0

humanoid:ApplyDescription(CurrentDescription)

But i dont want to set the properties one by one. So im trying to find a method to set all properties to default at once (e.g. Humanoid:SetDefault) ← wondering if there’s something like that. However, i cant seem to find it in the documentation. Please help by letting me know if there is such a method, thanks!