Search Results for

    Show / Hide Table of Contents

    Interface IBranchesApiExecutor

    Namespace: Crowdin.Api.Branches
    Assembly: Crowdin.Api.dll
    Syntax
    [PublicAPI]
    public interface IBranchesApiExecutor

    Methods

    | Edit this page View Source

    AddBranch(long, AddBranchRequest)

    Declaration
    Task<Branch> AddBranch(long projectId, AddBranchRequest request)
    Parameters
    Type Name Description
    long projectId
    AddBranchRequest request
    Returns
    Type Description
    Task<Branch>
    | Edit this page View Source

    CheckBranchCloneStatus(long, long, string)

    Declaration
    Task<BranchCloneStatus> CheckBranchCloneStatus(long projectId, long branchId, string cloneId)
    Parameters
    Type Name Description
    long projectId
    long branchId
    string cloneId
    Returns
    Type Description
    Task<BranchCloneStatus>
    | Edit this page View Source

    CheckBranchMergeStatus(long, long, string)

    Declaration
    Task<BranchMergeStatus> CheckBranchMergeStatus(long projectId, long branchId, string mergeId)
    Parameters
    Type Name Description
    long projectId
    long branchId
    string mergeId
    Returns
    Type Description
    Task<BranchMergeStatus>
    | Edit this page View Source

    CloneBranch(long, long, CloneBranchRequest)

    Declaration
    Task<BranchCloneStatus> CloneBranch(long projectId, long branchId, CloneBranchRequest request)
    Parameters
    Type Name Description
    long projectId
    long branchId
    CloneBranchRequest request
    Returns
    Type Description
    Task<BranchCloneStatus>
    | Edit this page View Source

    DeleteBranch(long, long)

    Declaration
    Task DeleteBranch(long projectId, long branchId)
    Parameters
    Type Name Description
    long projectId
    long branchId
    Returns
    Type Description
    Task
    | Edit this page View Source

    EditBranch(long, long, IEnumerable<BranchPatch>)

    Declaration
    Task<Branch> EditBranch(long projectId, long branchId, IEnumerable<BranchPatch> patches)
    Parameters
    Type Name Description
    long projectId
    long branchId
    IEnumerable<BranchPatch> patches
    Returns
    Type Description
    Task<Branch>
    | Edit this page View Source

    GetBranch(long, long)

    Declaration
    Task<Branch> GetBranch(long projectId, long branchId)
    Parameters
    Type Name Description
    long projectId
    long branchId
    Returns
    Type Description
    Task<Branch>
    | Edit this page View Source

    GetBranchMergeSummary(long, long, string)

    Declaration
    Task<BranchMergeSummary> GetBranchMergeSummary(long projectId, long branchId, string mergeId)
    Parameters
    Type Name Description
    long projectId
    long branchId
    string mergeId
    Returns
    Type Description
    Task<BranchMergeSummary>
    | Edit this page View Source

    GetClonedBranch(long, long, string)

    Declaration
    Task<Branch> GetClonedBranch(long projectId, long branchId, string cloneId)
    Parameters
    Type Name Description
    long projectId
    long branchId
    string cloneId
    Returns
    Type Description
    Task<Branch>
    | Edit this page View Source

    ListBranches(long, string?, int, int, IEnumerable<SortingRule>?)

    Declaration
    Task<ResponseList<Branch>> ListBranches(long projectId, string? name = null, int limit = 25, int offset = 0, IEnumerable<SortingRule>? orderBy = null)
    Parameters
    Type Name Description
    long projectId
    string name
    int limit
    int offset
    IEnumerable<SortingRule> orderBy
    Returns
    Type Description
    Task<ResponseList<Branch>>
    | Edit this page View Source

    MergeBranch(long, long, MergeBranchRequest)

    Declaration
    Task<BranchMergeStatus> MergeBranch(long projectId, long branchId, MergeBranchRequest request)
    Parameters
    Type Name Description
    long projectId
    long branchId
    MergeBranchRequest request
    Returns
    Type Description
    Task<BranchMergeStatus>
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX