Skip to content

Commit

Permalink
add boiler api for get recordings
Browse files Browse the repository at this point in the history
  • Loading branch information
vendyp committed Aug 21, 2023
1 parent 6469845 commit 9cb1c0a
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/Recordings/GetRecordings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
namespace Basecamp3Api;

public partial class BasecampApiClient
{
public Task<(PagedList<object>? Response, Error? Error)> GetRecordingsAsync(
int page,
GetRecordingType type,
long[]? projectIds,
GetRecodingStatus status = GetRecodingStatus.Active,
GetRecordingSort sort = GetRecordingSort.Created,
GetRecordingDirection direction = GetRecordingDirection.Descending,
CancellationToken cancellationToken = default)
{
throw new NotImplementedException();
}

public enum GetRecodingStatus
{
Active,

Archived,

Trashed
}

public enum GetRecordingType
{
Todo,

Todolist,
}

public enum GetRecordingSort
{
Created,

Updated
}

public enum GetRecordingDirection
{
Ascending,

Descending
}
}

0 comments on commit 9cb1c0a

Please sign in to comment.