Search Results for

    Show / Hide Table of Contents

    Interface IBundlesApiExecutor

    Namespace: Crowdin.Api.Bundles
    Assembly: Crowdin.Api.dll
    Syntax
    public interface IBundlesApiExecutor

    Methods

    | Improve this Doc View Source

    AddBundle(Int32, AddBundleRequest)

    Declaration
    Task<Bundle> AddBundle(int projectId, AddBundleRequest request)
    Parameters
    Type Name Description
    System.Int32 projectId
    AddBundleRequest request
    Returns
    Type Description
    Task<Bundle>
    | Improve this Doc View Source

    BundleListFiles<T>(Int32, Int32, Int32, Int32)

    Declaration
    Task<ResponseList<T>> BundleListFiles<T>(int projectId, int bundleId, int limit = 25, int offset = 0)
        where T : FileResourceBase
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 bundleId
    System.Int32 limit
    System.Int32 offset
    Returns
    Type Description
    Task<ResponseList<T>>
    Type Parameters
    Name Description
    T
    | Improve this Doc View Source

    CheckBundleExportStatus(Int32, Int32, String)

    Declaration
    Task<BundleExport> CheckBundleExportStatus(int projectId, int bundleId, string exportId)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 bundleId
    System.String exportId
    Returns
    Type Description
    Task<BundleExport>
    | Improve this Doc View Source

    DeleteBundle(Int32, Int32)

    Declaration
    Task DeleteBundle(int projectId, int bundleId)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 bundleId
    Returns
    Type Description
    Task
    | Improve this Doc View Source

    DownloadBundle(Int32, Int32, String)

    Declaration
    Task<DownloadLink> DownloadBundle(int projectId, int bundleId, string exportId)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 bundleId
    System.String exportId
    Returns
    Type Description
    Task<DownloadLink>
    | Improve this Doc View Source

    EditBundle(Int32, Int32, IEnumerable<BundlePatch>)

    Declaration
    Task<Bundle> EditBundle(int projectId, int bundleId, IEnumerable<BundlePatch> patches)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 bundleId
    IEnumerable<BundlePatch> patches
    Returns
    Type Description
    Task<Bundle>
    | Improve this Doc View Source

    ExportBundle(Int32, Int32)

    Declaration
    Task<BundleExport> ExportBundle(int projectId, int bundleId)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 bundleId
    Returns
    Type Description
    Task<BundleExport>
    | Improve this Doc View Source

    GetBundle(Int32, Int32)

    Declaration
    Task<Bundle> GetBundle(int projectId, int bundleId)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 bundleId
    Returns
    Type Description
    Task<Bundle>
    | Improve this Doc View Source

    ListBundleBranches(Int32, Int32, Int32, Int32)

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

    ListBundles(Int32, Int32, Int32)

    Declaration
    Task<ResponseList<Bundle>> ListBundles(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<Bundle>>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX