Interface IBundlesApiExecutor
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public interface IBundlesApiExecutor
Methods
|
Edit this page
View Source
AddBundle(long, AddBundleRequest)
Declaration
Task<Bundle> AddBundle(long projectId, AddBundleRequest request)
Parameters
Returns
|
Edit this page
View Source
BundleListFiles<T>(long, long, int, int)
Declaration
Task<ResponseList<T>> BundleListFiles<T>(long projectId, long bundleId, int limit = 25, int offset = 0) where T : FileResourceBase
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
bundleId |
|
int |
limit |
|
int |
offset |
|
Returns
Type Parameters
|
Edit this page
View Source
CheckBundleExportStatus(long, long, string)
Declaration
Task<BundleExport> CheckBundleExportStatus(long projectId, long bundleId, string exportId)
Parameters
Returns
|
Edit this page
View Source
DeleteBundle(long, long)
Declaration
Task DeleteBundle(long projectId, long bundleId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
bundleId |
|
Returns
|
Edit this page
View Source
DownloadBundle(long, long, string)
Declaration
Task<DownloadLink> DownloadBundle(long projectId, long bundleId, string exportId)
Parameters
Returns
|
Edit this page
View Source
EditBundle(long, long, IEnumerable<BundlePatch>)
Declaration
Task<Bundle> EditBundle(long projectId, long bundleId, IEnumerable<BundlePatch> patches)
Parameters
Returns
|
Edit this page
View Source
ExportBundle(long, long)
Declaration
Task<BundleExport> ExportBundle(long projectId, long bundleId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
bundleId |
|
Returns
|
Edit this page
View Source
GetBundle(long, long)
Declaration
Task<Bundle> GetBundle(long projectId, long bundleId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
bundleId |
|
Returns
|
Edit this page
View Source
ListBundleBranches(long, long, int, int)
Declaration
Task<ResponseList<Branch>> ListBundleBranches(long projectId, long bundleId, int limit = 25, int offset = 0)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
bundleId |
|
int |
limit |
|
int |
offset |
|
Returns
|
Edit this page
View Source
ListBundles(long, int, int)
Declaration
Task<ResponseList<Bundle>> ListBundles(long projectId, int limit = 25, int offset = 0)
Parameters
Type |
Name |
Description |
long |
projectId |
|
int |
limit |
|
int |
offset |
|
Returns