Inheritance
StringCommentsApiExecutor
Assembly: Crowdin.Api.dll
public class StringCommentsApiExecutor : IStringCommentsApiExecutor
Constructors
|
Edit this page
View Source
Declaration
public StringCommentsApiExecutor(ICrowdinApiClient apiClient)
Parameters
|
Edit this page
View Source
Declaration
public StringCommentsApiExecutor(ICrowdinApiClient apiClient, IJsonParser jsonParser)
Parameters
Methods
|
Edit this page
View Source
Declaration
[PublicAPI]
public Task<StringComment> AddStringComment(long projectId, AddStringCommentRequest request)
Parameters
Returns
|
Edit this page
View Source
Declaration
[PublicAPI]
public Task DeleteStringComment(long projectId, long stringCommentId)
Parameters
| Type |
Name |
Description |
| long |
projectId |
|
| long |
stringCommentId |
|
Returns
|
Edit this page
View Source
Declaration
[PublicAPI]
public Task<StringComment> EditStringComment(long projectId, long stringCommentId, IEnumerable<StringCommentPatch> patches)
Parameters
Returns
|
Edit this page
View Source
Declaration
[PublicAPI]
public Task<StringComment> GetStringComment(long projectId, long stringCommentId)
Parameters
| Type |
Name |
Description |
| long |
projectId |
|
| long |
stringCommentId |
|
Returns
|
Edit this page
View Source
Declaration
[PublicAPI]
public Task<ResponseList<StringComment>> ListStringComments(long projectId, StringCommentsListParams @params)
Parameters
Returns
|
Edit this page
View Source
Declaration
[PublicAPI]
public Task ListStringComments(long projectId, int limit = 25, int offset = 0, long? stringId = null, StringCommentType? type = null, ISet<IssueType>? issueTypes = null, IssueStatus? issueStatus = null, IEnumerable<SortingRule>? orderBy = null)
Parameters
Returns
|
Edit this page
View Source
Declaration
[PublicAPI]
public Task<ResponseList<StringComment>> StringCommentBatchOperations(long projectId, IEnumerable<StringCommentBatchOpPatch> patches)
Parameters
Returns
Implements