Interface IIssuesApiExecutor
Assembly: Crowdin.Api.dll
Syntax
public interface IIssuesApiExecutor
Methods
|
Improve this Doc
View Source
EditIssue(Int32, Int32, IEnumerable<IssuePatch>)
Declaration
Task<Issue> EditIssue(int projectId, int issueId, IEnumerable<IssuePatch> patches)
Parameters
Type |
Name |
Description |
System.Int32 |
projectId |
|
System.Int32 |
issueId |
|
IEnumerable<IssuePatch> |
patches |
|
Returns
Type |
Description |
Task<Issue> |
|
|
Improve this Doc
View Source
ListReportedIssues(Int32, IssuesListParams)
Declaration
Task<ResponseList<Issue>> ListReportedIssues(int projectId, IssuesListParams params)
Parameters
Returns
|
Improve this Doc
View Source
ListReportedIssues(Int32, Int32, Int32, Nullable<IssueType>, Nullable<IssueStatus>)
Declaration
Task<ResponseList<Issue>> ListReportedIssues(int projectId, int limit = 25, int offset = 0, IssueType? type = null, IssueStatus? status = null)
Parameters
Type |
Name |
Description |
System.Int32 |
projectId |
|
System.Int32 |
limit |
|
System.Int32 |
offset |
|
System.Nullable<IssueType> |
type |
|
System.Nullable<IssueStatus> |
status |
|
Returns