unreal python

when i use code:


        asset.set_editor_property('implicit_type', unreal.ImplicitTypeEnum.CHAOS_IMPLICIT_BOX)  # float

LogPython: Error: DeprecationWarning: GeometryCollection: Property 'implicit_type' on 'GeometryCollection' is deprecated: This property is deprecated. Use the default SizeSpecificData instead.

when i use code:

        GCSSD=unreal.GeometryCollectionSizeSpecificData()
        GCSSD.set_editor_property('implicit_type', unreal.ImplicitTypeEnum.CHAOS_IMPLICIT_BOX)
        asset.set_editor_property('size_specific_data', [GCSSD])  # float

LogPython: Error: DeprecationWarning: GeometryCollectionSizeSpecificData: Property 'implicit_type' on 'GeometryCollectionSizeSpecificData' is deprecated: Use Collision.ImplicitType instead.

i can not find Collision.ImplicitType in unreal python API docs, does anyone know about it? appreciate it/