/// <summary>
 /// Enables / disables a list of test set execution schedules.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Edit.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='setEnabledParameters'>
 /// &lt;para /&gt;enabled: if true the test set schedules will be enabled, if
 /// false they will be disabled.
 /// &lt;para /&gt;scheduleIds: the ids of the test set schedules to be enabled
 /// or disabled.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataValueBoolean> SetEnabledAsync(this ITestSetSchedules operations, SetEnabledParametersModel setEnabledParameters, long?xUIPATHOrganizationUnitId = default(long?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     using (var _result = await operations.SetEnabledWithHttpMessagesAsync(setEnabledParameters, xUIPATHOrganizationUnitId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Enables / disables a list of test set execution schedules.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Edit.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='body'>
 /// &lt;para /&gt;enabled: if true the test set schedules will be enabled, if
 /// false they will be disabled.
 /// &lt;para /&gt;scheduleIds: the ids of the test set schedules to be enabled
 /// or disabled.
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataValueOfBoolean> SetEnabledAsync(this ITestSetSchedules operations, TestSetSchedulesSetEnabledParameters body = default(TestSetSchedulesSetEnabledParameters), string expand = default(string), string select = default(string), long?xUIPATHOrganizationUnitId = default(long?), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.SetEnabledWithHttpMessagesAsync(body, expand, select, xUIPATHOrganizationUnitId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Update an existing test set execution schedule
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Edit.
 ///
 /// Responses:
 /// 201 Returns the updated test set execution schedule
 /// 403 If the caller doesn't have permissions to update test set execution
 /// schedules
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='key'>
 /// ID of the test set execution schedule to be updated
 /// </param>
 /// <param name='body'>
 /// Update information
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <TestSetScheduleDto> PutByIdAsync(this ITestSetSchedules operations, long key, TestSetScheduleDto body = default(TestSetScheduleDto), long?xUIPATHOrganizationUnitId = default(long?), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.PutByIdWithHttpMessagesAsync(key, body, xUIPATHOrganizationUnitId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Return a specific test set execution schedule identified by key
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Read.
 ///
 /// Required permissions: TestSetSchedules.View.
 ///
 /// Responses:
 /// 200 Return a specific test set execution schedule identified by key
 /// 403 If the caller doesn't have permissions to view test set execution
 /// schedules
 /// 404 It the test set execution schedule is not found
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='key'>
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <TestSetScheduleDto> GetByIdAsync(this ITestSetSchedules operations, long key, string expand = default(string), string select = default(string), long?xUIPATHOrganizationUnitId = default(long?), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetByIdWithHttpMessagesAsync(key, expand, select, xUIPATHOrganizationUnitId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Returns a list of test set execution schedules
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Read.
 ///
 /// Required permissions: TestSetSchedules.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='expand'>
 /// Expands related entities inline.
 /// </param>
 /// <param name='filter'>
 /// Filters the results, based on a Boolean condition.
 /// </param>
 /// <param name='select'>
 /// Selects which properties to include in the response.
 /// </param>
 /// <param name='orderby'>
 /// Sorts the results.
 /// </param>
 /// <param name='top'>
 /// Returns only the first n results.
 /// </param>
 /// <param name='skip'>
 /// Skips the first n results.
 /// </param>
 /// <param name='count'>
 /// Includes a count of the matching results in the response.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataValueIEnumerableTestSetScheduleDto> GetAsync(this ITestSetSchedules operations, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?), long?xUIPATHOrganizationUnitId = default(long?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     using (var _result = await operations.GetWithHttpMessagesAsync(expand, filter, select, orderby, top, skip, count, xUIPATHOrganizationUnitId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Update an existing test set execution schedule
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Edit.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='id'>
 /// key: Id
 /// </param>
 /// <param name='testSetScheduleDto'>
 /// The entity to put
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <TestSetScheduleDto> PutByIdAsync(this ITestSetSchedules operations, long id, TestSetScheduleDto testSetScheduleDto, long?xUIPATHOrganizationUnitId = default(long?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     using (var _result = await operations.PutByIdWithHttpMessagesAsync(id, testSetScheduleDto, xUIPATHOrganizationUnitId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Returns a list of test set execution schedules
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Read.
 ///
 /// Required permissions: TestSetSchedules.View.
 ///
 /// Responses:
 /// 200 Returns a list of test set execution schedules filtered with
 /// queryOptions
 /// 403 If the caller doesn't have permissions to view test set execution
 /// schedules
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='filter'>
 /// Restricts the set of items returned. The maximum number of expressions is
 /// 100.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='orderby'>
 /// Specifies the order in which items are returned. The maximum number of
 /// expressions is 5.
 /// </param>
 /// <param name='top'>
 /// Limits the number of items returned from a collection. The maximum value is
 /// 1000.
 /// </param>
 /// <param name='skip'>
 /// Excludes the specified number of items of the queried collection from the
 /// result.
 /// </param>
 /// <param name='count'>
 /// Indicates whether the total count of items within a collection are returned
 /// in the result.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 public static ODataValueOfIEnumerableOfTestSetScheduleDto Get(this ITestSetSchedules operations, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?), long?xUIPATHOrganizationUnitId = default(long?))
 {
     return(operations.GetAsync(expand, filter, select, orderby, top, skip, count, xUIPATHOrganizationUnitId).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Enables / disables a list of test set execution schedules.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Edit.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='body'>
 /// &lt;para /&gt;enabled: if true the test set schedules will be enabled, if
 /// false they will be disabled.
 /// &lt;para /&gt;scheduleIds: the ids of the test set schedules to be enabled
 /// or disabled.
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 public static ODataValueOfBoolean SetEnabled(this ITestSetSchedules operations, TestSetSchedulesSetEnabledParameters body = default(TestSetSchedulesSetEnabledParameters), string expand = default(string), string select = default(string), long?xUIPATHOrganizationUnitId = default(long?))
 {
     return(operations.SetEnabledAsync(body, expand, select, xUIPATHOrganizationUnitId).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Delete an existing test set execution schedule
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Delete.
 ///
 /// Responses:
 /// 204 The test set execution schedule was deleted
 /// 403 If the caller doesn't have permissions to delete test set execution
 /// schedules
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='key'>
 /// ID of the test set execution schedule to be deleted
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task DeleteByIdAsync(this ITestSetSchedules operations, long key, long?xUIPATHOrganizationUnitId = default(long?), CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.DeleteByIdWithHttpMessagesAsync(key, xUIPATHOrganizationUnitId, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
 /// <summary>
 /// Delete an existing test set execution schedule
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Delete.
 ///
 /// Responses:
 /// 204 The test set execution schedule was deleted
 /// 403 If the caller doesn't have permissions to delete test set execution
 /// schedules
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='key'>
 /// ID of the test set execution schedule to be deleted
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 public static void DeleteById(this ITestSetSchedules operations, long key, long?xUIPATHOrganizationUnitId = default(long?))
 {
     operations.DeleteByIdAsync(key, xUIPATHOrganizationUnitId).GetAwaiter().GetResult();
 }
 /// <summary>
 /// Update an existing test set execution schedule
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Edit.
 ///
 /// Responses:
 /// 201 Returns the updated test set execution schedule
 /// 403 If the caller doesn't have permissions to update test set execution
 /// schedules
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='key'>
 /// ID of the test set execution schedule to be updated
 /// </param>
 /// <param name='body'>
 /// Update information
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 public static TestSetScheduleDto PutById(this ITestSetSchedules operations, long key, TestSetScheduleDto body = default(TestSetScheduleDto), long?xUIPATHOrganizationUnitId = default(long?))
 {
     return(operations.PutByIdAsync(key, body, xUIPATHOrganizationUnitId).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Return a specific test set execution schedule identified by key
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Read.
 ///
 /// Required permissions: TestSetSchedules.View.
 ///
 /// Responses:
 /// 200 Return a specific test set execution schedule identified by key
 /// 403 If the caller doesn't have permissions to view test set execution
 /// schedules
 /// 404 It the test set execution schedule is not found
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='key'>
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 public static TestSetScheduleDto GetById(this ITestSetSchedules operations, long key, string expand = default(string), string select = default(string), long?xUIPATHOrganizationUnitId = default(long?))
 {
     return(operations.GetByIdAsync(key, expand, select, xUIPATHOrganizationUnitId).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Enables / disables a list of test set execution schedules.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Edit.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='setEnabledParameters'>
 /// &lt;para /&gt;enabled: if true the test set schedules will be enabled, if
 /// false they will be disabled.
 /// &lt;para /&gt;scheduleIds: the ids of the test set schedules to be enabled
 /// or disabled.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 public static ODataValueBoolean SetEnabled(this ITestSetSchedules operations, SetEnabledParametersModel setEnabledParameters, long?xUIPATHOrganizationUnitId = default(long?))
 {
     return(operations.SetEnabledAsync(setEnabledParameters, xUIPATHOrganizationUnitId).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Delete an existing test set execution schedule
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Delete.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='id'>
 /// key: Id
 /// </param>
 /// <param name='ifMatch'>
 /// If-Match header
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task DeleteByIdAsync(this ITestSetSchedules operations, long id, string ifMatch = default(string), long?xUIPATHOrganizationUnitId = default(long?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     (await operations.DeleteByIdWithHttpMessagesAsync(id, ifMatch, xUIPATHOrganizationUnitId, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
 /// <summary>
 /// Delete an existing test set execution schedule
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Delete.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='id'>
 /// key: Id
 /// </param>
 /// <param name='ifMatch'>
 /// If-Match header
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 public static void DeleteById(this ITestSetSchedules operations, long id, string ifMatch = default(string), long?xUIPATHOrganizationUnitId = default(long?))
 {
     operations.DeleteByIdAsync(id, ifMatch, xUIPATHOrganizationUnitId).GetAwaiter().GetResult();
 }
 /// <summary>
 /// Update an existing test set execution schedule
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: TestSetSchedules or
 /// TestSetSchedules.Write.
 ///
 /// Required permissions: TestSetSchedules.Edit.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='id'>
 /// key: Id
 /// </param>
 /// <param name='testSetScheduleDto'>
 /// The entity to put
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 public static TestSetScheduleDto PutById(this ITestSetSchedules operations, long id, TestSetScheduleDto testSetScheduleDto, long?xUIPATHOrganizationUnitId = default(long?))
 {
     return(operations.PutByIdAsync(id, testSetScheduleDto, xUIPATHOrganizationUnitId).GetAwaiter().GetResult());
 }