Class StringCorrectionsApiExecutor
Inheritance
StringCorrectionsApiExecutor
Assembly: Crowdin.Api.dll
Syntax
public class StringCorrectionsApiExecutor : IStringCorrectionsApiExecutor
Constructors
|
Edit this page
View Source
StringCorrectionsApiExecutor(ICrowdinApiClient)
Declaration
public StringCorrectionsApiExecutor(ICrowdinApiClient apiClient)
Parameters
|
Edit this page
View Source
StringCorrectionsApiExecutor(ICrowdinApiClient, IJsonParser)
Declaration
public StringCorrectionsApiExecutor(ICrowdinApiClient apiClient, IJsonParser jsonParser)
Parameters
Methods
|
Edit this page
View Source
AddCorrection(long, AddCorrectionRequest)
Declaration
[PublicAPI]
public Task<Correction> AddCorrection(long projectId, AddCorrectionRequest request)
Parameters
Returns
|
Edit this page
View Source
DeleteCorrection(long, long)
Declaration
[PublicAPI]
public Task DeleteCorrection(long projectId, long correctionId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
correctionId |
|
Returns
|
Edit this page
View Source
DeleteCorrections(long, long)
Declaration
[PublicAPI]
public Task DeleteCorrections(long projectId, long stringId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
stringId |
|
Returns
|
Edit this page
View Source
GetCorrection(long, long)
Declaration
[PublicAPI]
public 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
[PublicAPI]
public 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
[PublicAPI]
public Task<Correction> RestoreCorrection(long projectId, long correctionId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
correctionId |
|
Returns
Implements