Class WorkflowsApiExecutor
Inheritance
WorkflowsApiExecutor
Assembly: Crowdin.Api.dll
Syntax
public class WorkflowsApiExecutor : IWorkflowsApiExecutor
Constructors
|
Edit this page
View Source
WorkflowsApiExecutor(ICrowdinApiClient)
Declaration
public WorkflowsApiExecutor(ICrowdinApiClient apiClient)
Parameters
|
Edit this page
View Source
WorkflowsApiExecutor(ICrowdinApiClient, IJsonParser)
Declaration
public WorkflowsApiExecutor(ICrowdinApiClient apiClient, IJsonParser jsonParser)
Parameters
Methods
|
Edit this page
View Source
GetWorkflowStep(long, long)
Declaration
[PublicAPI]
public Task<WorkflowStep> GetWorkflowStep(long projectId, long stepId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
stepId |
|
Returns
|
Edit this page
View Source
GetWorkflowTemplate(long)
Declaration
[PublicAPI]
public Task<WorkflowTemplate> GetWorkflowTemplate(long templateId)
Parameters
Type |
Name |
Description |
long |
templateId |
|
Returns
|
Edit this page
View Source
ListStringsOnTheWorkflowStep(long, long, StringsOnTheWorkflowStepListParams?)
Declaration
[PublicAPI]
public Task<ResponseList<SourceString>> ListStringsOnTheWorkflowStep(long projectId, long stepId, StringsOnTheWorkflowStepListParams? @params = null)
Parameters
Returns
|
Edit this page
View Source
ListStringsOnTheWorkflowStep(long, long, IEnumerable<string>?, IEnumerable<SortingRule>?, WorkflowStatus?, int?, int?)
Declaration
[PublicAPI]
public Task<ResponseList<SourceString>> ListStringsOnTheWorkflowStep(long projectId, long stepId, IEnumerable<string>? languageIds = null, IEnumerable<SortingRule>? orderBy = null, WorkflowStatus? status = null, int? limit = null, int? offset = null)
Parameters
Returns
|
Edit this page
View Source
ListWorkflowSteps(long)
Declaration
[PublicAPI]
public Task<ResponseList<WorkflowStep>> ListWorkflowSteps(long projectId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
Returns
|
Edit this page
View Source
ListWorkflowTemplates(long, int, int)
Declaration
[PublicAPI]
public Task<ResponseList<WorkflowTemplate>> ListWorkflowTemplates(long groupId, int limit = 25, int offset = 0)
Parameters
Type |
Name |
Description |
long |
groupId |
|
int |
limit |
|
int |
offset |
|
Returns
Implements