Skip to content

Commit 59f060d

Browse files
authored
Merge pull request #253 from XeroAPI/regenerated-against-OAS-v2-4-4
generated against OAS 2.4.4
2 parents 57b3007 + fa7ce98 commit 59f060d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Xero.NetStandard.OAuth2/Api/ProjectApi.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ public interface IProjectApiAsync : IApiAccessor
218218
/// <param name="taskIds">taskIdsSearch for all tasks that match a comma separated list of taskIds, i.e. GET https://.../tasks?taskIds&#x3D;{taskId},{taskId} (optional)</param>
219219
/// <param name="chargeType"> (optional)</param>
220220
/// <returns>Task of Tasks</returns>
221-
System.Threading.Tasks.Task<Tasks> GetTasksAsync (string accessToken, string xeroTenantId, Guid projectId, int? page = null, int? pageSize = null, string taskIds = null, ChargeType chargeType = null);
221+
System.Threading.Tasks.Task<Tasks> GetTasksAsync (string accessToken, string xeroTenantId, Guid projectId, int? page = null, int? pageSize = null, string taskIds = null, ChargeType? chargeType = null);
222222

223223
/// <summary>
224224
/// Allows you to retrieve a single project
@@ -234,7 +234,7 @@ public interface IProjectApiAsync : IApiAccessor
234234
/// <param name="taskIds">taskIdsSearch for all tasks that match a comma separated list of taskIds, i.e. GET https://.../tasks?taskIds&#x3D;{taskId},{taskId} (optional)</param>
235235
/// <param name="chargeType"> (optional)</param>
236236
/// <returns>Task of ApiResponse (Tasks)</returns>
237-
System.Threading.Tasks.Task<ApiResponse<Tasks>> GetTasksAsyncWithHttpInfo (string accessToken, string xeroTenantId, Guid projectId, int? page = null, int? pageSize = null, string taskIds = null, ChargeType chargeType = null);
237+
System.Threading.Tasks.Task<ApiResponse<Tasks>> GetTasksAsyncWithHttpInfo (string accessToken, string xeroTenantId, Guid projectId, int? page = null, int? pageSize = null, string taskIds = null, ChargeType? chargeType = null);
238238
/// <summary>
239239
/// Allows you to retrieve the time entries associated with a specific project
240240
/// </summary>
@@ -1133,7 +1133,7 @@ public async System.Threading.Tasks.Task<Task> GetTaskAsync (string accessToken,
11331133
/// <param name="taskIds">taskIdsSearch for all tasks that match a comma separated list of taskIds, i.e. GET https://.../tasks?taskIds&#x3D;{taskId},{taskId} (optional)</param>
11341134
/// <param name="chargeType"> (optional)</param>
11351135
/// <returns>Task of Tasks</returns>
1136-
public async System.Threading.Tasks.Task<Tasks> GetTasksAsync (string accessToken, string xeroTenantId, Guid projectId, int? page = null, int? pageSize = null, string taskIds = null, ChargeType chargeType = null)
1136+
public async System.Threading.Tasks.Task<Tasks> GetTasksAsync (string accessToken, string xeroTenantId, Guid projectId, int? page = null, int? pageSize = null, string taskIds = null, ChargeType? chargeType = null)
11371137
{
11381138
Xero.NetStandard.OAuth2.Client.ApiResponse<Tasks> localVarResponse = await GetTasksAsyncWithHttpInfo(accessToken, xeroTenantId, projectId, page, pageSize, taskIds, chargeType);
11391139
return localVarResponse.Data;
@@ -1151,7 +1151,7 @@ public async System.Threading.Tasks.Task<Tasks> GetTasksAsync (string accessToke
11511151
/// <param name="taskIds">taskIdsSearch for all tasks that match a comma separated list of taskIds, i.e. GET https://.../tasks?taskIds&#x3D;{taskId},{taskId} (optional)</param>
11521152
/// <param name="chargeType"> (optional)</param>
11531153
/// <returns>Task of ApiResponse (Tasks)</returns>
1154-
public async System.Threading.Tasks.Task<Xero.NetStandard.OAuth2.Client.ApiResponse<Tasks>> GetTasksAsyncWithHttpInfo (string accessToken, string xeroTenantId, Guid projectId, int? page = null, int? pageSize = null, string taskIds = null, ChargeType chargeType = null)
1154+
public async System.Threading.Tasks.Task<Xero.NetStandard.OAuth2.Client.ApiResponse<Tasks>> GetTasksAsyncWithHttpInfo (string accessToken, string xeroTenantId, Guid projectId, int? page = null, int? pageSize = null, string taskIds = null, ChargeType? chargeType = null)
11551155
{
11561156
// verify the required parameter 'xeroTenantId' is set
11571157
if (xeroTenantId == null)

0 commit comments

Comments
 (0)