Interface IWorkflowsApiExecutor
Assembly: Crowdin.Api.dll
Syntax
public interface IWorkflowsApiExecutor
Methods
|
Improve this Doc
View Source
GetWorkflowStep(Int32, Int32)
Declaration
Task<WorkflowStep> GetWorkflowStep(int projectId, int stepId)
Parameters
Type |
Name |
Description |
System.Int32 |
projectId |
|
System.Int32 |
stepId |
|
Returns
|
Improve this Doc
View Source
GetWorkflowTemplate(Int32)
Declaration
Task<WorkflowTemplate> GetWorkflowTemplate(int templateId)
Parameters
Type |
Name |
Description |
System.Int32 |
templateId |
|
Returns
|
Improve this Doc
View Source
ListStringsOnTheWorkflowStep(Int32, Int32, StringsOnTheWorkflowStepListParams)
Declaration
Task<ResponseList<SourceString>> ListStringsOnTheWorkflowStep(int projectId, int stepId, StringsOnTheWorkflowStepListParams params = null)
Parameters
Returns
|
Improve this Doc
View Source
ListStringsOnTheWorkflowStep(Int32, Int32, Nullable<IEnumerable<String>>, Nullable<IEnumerable<SortingRule>>, Nullable<WorkflowStatus>, Nullable<Int32>, Nullable<Int32>)
Declaration
Task<ResponseList<SourceString>> ListStringsOnTheWorkflowStep(int projectId, int stepId, IEnumerable<string>? languageIds = null, IEnumerable<SortingRule>? orderBy = null, WorkflowStatus? status = null, int? limit = null, int? offset = null)
Parameters
Type |
Name |
Description |
System.Int32 |
projectId |
|
System.Int32 |
stepId |
|
System.Nullable<IEnumerable<System.String>> |
languageIds |
|
System.Nullable<IEnumerable<SortingRule>> |
orderBy |
|
System.Nullable<WorkflowStatus> |
status |
|
System.Nullable<System.Int32> |
limit |
|
System.Nullable<System.Int32> |
offset |
|
Returns
|
Improve this Doc
View Source
ListWorkflowSteps(Int32)
Declaration
Task<ResponseList<WorkflowStep>> ListWorkflowSteps(int projectId)
Parameters
Type |
Name |
Description |
System.Int32 |
projectId |
|
Returns
|
Improve this Doc
View Source
ListWorkflowTemplates(Int32, Int32, Int32)
Declaration
Task<ResponseList<WorkflowTemplate>> ListWorkflowTemplates(int groupId, int limit = 25, int offset = 0)
Parameters
Type |
Name |
Description |
System.Int32 |
groupId |
|
System.Int32 |
limit |
|
System.Int32 |
offset |
|
Returns