Interface IStringCorrectionsApiExecutor
Assembly: Crowdin.Api.dll
Syntax
public interface IStringCorrectionsApiExecutor
Methods
|
Edit this page
View Source
AddCorrection(long, AddCorrectionRequest)
Declaration
Task<Correction> AddCorrection(long projectId, AddCorrectionRequest request)
Parameters
Returns
|
Edit this page
View Source
DeleteCorrection(long, long)
Declaration
Task DeleteCorrection(long projectId, long correctionId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
correctionId |
|
Returns
|
Edit this page
View Source
DeleteCorrections(long, long)
Declaration
Task DeleteCorrections(long projectId, long stringId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
stringId |
|
Returns
|
Edit this page
View Source
GetCorrection(long, long)
Declaration
Task<Correction> GetCorrection(long projectId, long correctionId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
correctionId |
|
Returns
|
Edit this page
View Source
ListCorrections(long, long, IEnumerable<SortingRule>?, int, int, int)
Declaration
Task<ResponseList<Correction>> ListCorrections(long projectId, long stringId, IEnumerable<SortingRule>? orderBy = null, int denormalizePlaceholders = 0, int limit = 25, int offset = 0)
Parameters
Returns
|
Edit this page
View Source
RestoreCorrection(long, long)
Declaration
Task<Correction> RestoreCorrection(long projectId, long correctionId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
correctionId |
|
Returns