/// <summary>
 /// Returns the manifest.plist in XML format for installing the release on a
 /// device. Only available for iOS.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='appId'>
 /// The ID of the application
 /// </param>
 /// <param name='releaseId'>
 /// The release_id
 /// </param>
 /// <param name='token'>
 /// A hash that authorizes the download if it matches the release info.
 /// </param>
 public static ErrorDetails GetIosManifest(this IReleases operations, string appId, int releaseId, string token)
 {
     return(operations.GetIosManifestAsync(appId, releaseId, token).GetAwaiter().GetResult());
 }