/// <summary>
 /// Post an Update for Entitlement Info for Emerald dashboard.
 ///
 /// **Usage Plan:**
 ///
 /// | Rate (requests per second) | Burst |
 /// | ---- | ---- |
 /// | 1 | 5 |
 ///
 /// For more information, see "Usage Plans and Rate Limits" in the Selling
 /// Partner API documentation.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='entitlementType'>
 /// Entitlement type for which info entitlement information needs to be updated
 /// for the selling partner.
 /// </param>
 /// <param name='body'>
 /// </param>
 public static ErrorList UpdateEntitlement(this IEntitlementsClient operations, string entitlementType, UpdateEntitlementRequest body)
 {
     return(operations.UpdateEntitlementAsync(entitlementType, body).GetAwaiter().GetResult());
 }