C++ equivalent of "StartWithTickEnabled"

What is the c++ way of disabling this checkbox that every actor has:

I checked AActor | Unreal Engine Documentation as well as the internal code but could not locate it.

It’s NOT:

SetActorTickEnabled(true/false);
PrimaryActorTick.bCanEverTick = true/false;

PrimaryActorTick.bStartWithTickEnabled = false;