Search Results for

    Show / Hide Table of Contents

    Interface ITranslationStatusApiExecutor

    Namespace: Crowdin.Api.TranslationStatus
    Assembly: Crowdin.Api.dll
    Syntax
    public interface ITranslationStatusApiExecutor

    Methods

    | Improve this Doc View Source

    GetBranchProgress(Int32, Int32, Int32, Int32)

    Declaration
    Task<ResponseList<ProgressResource>> GetBranchProgress(int projectId, int branchId, int limit = 25, int offset = 0)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 branchId
    System.Int32 limit
    System.Int32 offset
    Returns
    Type Description
    Task<ResponseList<ProgressResource>>
    | Improve this Doc View Source

    GetDirectoryProgress(Int32, Int32, Int32, Int32)

    Declaration
    Task<ResponseList<ProgressResource>> GetDirectoryProgress(int projectId, int directoryId, int limit = 25, int offset = 0)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 directoryId
    System.Int32 limit
    System.Int32 offset
    Returns
    Type Description
    Task<ResponseList<ProgressResource>>
    | Improve this Doc View Source

    GetFileProgress(Int32, Int32, Int32, Int32)

    Declaration
    Task<ResponseList<FileProgressResource>> GetFileProgress(int projectId, int fileId, int limit = 25, int offset = 0)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 fileId
    System.Int32 limit
    System.Int32 offset
    Returns
    Type Description
    Task<ResponseList<FileProgressResource>>
    | Improve this Doc View Source

    GetLanguageProgress(Int32, String, Int32, Int32)

    Declaration
    Task<ResponseList<LanguageProgressResource>> GetLanguageProgress(int projectId, string languageId, int limit = 25, int offset = 0)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.String languageId
    System.Int32 limit
    System.Int32 offset
    Returns
    Type Description
    Task<ResponseList<LanguageProgressResource>>
    | Improve this Doc View Source

    GetProjectProgress(Int32, Int32, Int32)

    Declaration
    Task<ResponseList<ProgressResource>> GetProjectProgress(int projectId, int limit = 25, int offset = 0)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 limit
    System.Int32 offset
    Returns
    Type Description
    Task<ResponseList<ProgressResource>>
    | Improve this Doc View Source

    ListQaCheckIssues(Int32, QaCheckIssuesListParams)

    Declaration
    Task<ResponseList<QaCheckResource>> ListQaCheckIssues(int projectId, QaCheckIssuesListParams params)
    Parameters
    Type Name Description
    System.Int32 projectId
    QaCheckIssuesListParams params
    Returns
    Type Description
    Task<ResponseList<QaCheckResource>>
    | Improve this Doc View Source

    ListQaCheckIssues(Int32, Int32, Int32, Nullable<ICollection<QaCheckIssueCategory>>, Nullable<ICollection<QaCheckIssueValidationType>>, Nullable<ICollection<String>>)

    Declaration
    Task<ResponseList<QaCheckResource>> ListQaCheckIssues(int projectId, int limit = 25, int offset = 0, ICollection<QaCheckIssueCategory>? categories = null, ICollection<QaCheckIssueValidationType>? validation = null, ICollection<string>? languageIds = null)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 limit
    System.Int32 offset
    System.Nullable<ICollection<QaCheckIssueCategory>> categories
    System.Nullable<ICollection<QaCheckIssueValidationType>> validation
    System.Nullable<ICollection<System.String>> languageIds
    Returns
    Type Description
    Task<ResponseList<QaCheckResource>>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX