"Ease in" and "Ease out" of audio clips in timeline via script

Hi,

I am generating an audio track by importing an XML from another software. I am able to correctly set the clip in and out time in the Timeline by using:

        TimelineAsset asset = (TimelineAsset)timeline.playableAsset;

        AudioTrack timelineTrack = asset.CreateTrack<AudioTrack> (null, "Prueba");

        TimelineClip clip = timelineTrack.CreateClip( Resources.Load("Audios/CASSIANIT08") as AudioClip  );

        clip.start = 1f;

        clip.duration = 2f;

        clip.clipIn = 5f;

        clip.easeIn ???

But there doesn’t seem to be any variables exposed to change ease in and ease out time.

Any help?

TimelineClip.easeInDuration and TimelineClip.easeOutDuration should do the trick.