Search Results for

    Show / Hide Table of Contents

    Class BundlesApiExecutor

    Inheritance
    System.Object
    BundlesApiExecutor
    Implements
    IBundlesApiExecutor
    Namespace: Crowdin.Api.Bundles
    Assembly: Crowdin.Api.dll
    Syntax
    public class BundlesApiExecutor : object, IBundlesApiExecutor

    Constructors

    | Improve this Doc View Source

    BundlesApiExecutor(ICrowdinApiClient)

    Declaration
    public BundlesApiExecutor(ICrowdinApiClient apiClient)
    Parameters
    Type Name Description
    ICrowdinApiClient apiClient
    | Improve this Doc View Source

    BundlesApiExecutor(ICrowdinApiClient, IJsonParser)

    Declaration
    public BundlesApiExecutor(ICrowdinApiClient apiClient, IJsonParser jsonParser)
    Parameters
    Type Name Description
    ICrowdinApiClient apiClient
    IJsonParser jsonParser

    Methods

    | Improve this Doc View Source

    AddBundle(Int32, AddBundleRequest)

    Add bundle. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async 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)

    Bundle list files. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async 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)

    Check Bundle Export Status. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async 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)

    Delete bundle. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async 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)

    Download Bundle. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async 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>)

    Edit bundle. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async 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)

    Export Bundle. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async 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)

    Get bundle. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async 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)

    List bundle branches. Documentation: Crowdin String Based API

    Declaration
    public async 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)

    List bundles. Documentation: Crowdin File Based API Crowdin String Based API Crowdin Enterprise API

    Declaration
    public async 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>>

    Implements

    IBundlesApiExecutor
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX