[Feature Request] Expose InitialLifeSpan

For AActor, InitialLifeSpan is a protected property. I would like to inspect this value from outside the class, i.e. the property should have a public accessor method:

public:
    float GetInitialLifeSpan() { return InitialLifeSpan; }

Thank you in advance.

Workaround: after spawning the actor, cache the value of GetLifeSpan() and use that cached value.