Hello
I am attempting to deploy a release programmatically. The basics are simple
var deploy = new DeploymentResource()
deploy.ProjectId = projectID
deploy.EnvironmentId = environmentID;
deploy.ReleaseId = releaseID;
deploy.ChannelId = channelID;
deploy.QueueTime = scheduledTime;
However, there does not appear to be an attribute exposed for the QueueTimeExpiry
deploy.QueueTimeExpiry = expiryTime;
Is there a different way to access this attribute?
Kind regards
Ian