Search Results for

    Show / Hide Table of Contents

    Interface IScreenshotsApiExecutor

    Namespace: Crowdin.Api.Screenshots
    Assembly: Crowdin.Api.dll
    Syntax
    [PublicAPI]
    public interface IScreenshotsApiExecutor

    Methods

    | Edit this page View Source

    AddScreenshot(long, AddScreenshotRequest)

    Declaration
    Task<Screenshot> AddScreenshot(long projectId, AddScreenshotRequest request)
    Parameters
    Type Name Description
    long projectId
    AddScreenshotRequest request
    Returns
    Type Description
    Task<Screenshot>
    | Edit this page View Source

    AddTag(long, long, IEnumerable<AddTagRequest>)

    Declaration
    Task<ResponseList<Tag>> AddTag(long projectId, long screenshotId, IEnumerable<AddTagRequest> request)
    Parameters
    Type Name Description
    long projectId
    long screenshotId
    IEnumerable<AddTagRequest> request
    Returns
    Type Description
    Task<ResponseList<Tag>>
    | Edit this page View Source

    ClearTags(long, long)

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

    DeleteScreenshot(long, long)

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

    DeleteTag(long, long, long)

    Declaration
    Task DeleteTag(long projectId, long screenshotId, long tagId)
    Parameters
    Type Name Description
    long projectId
    long screenshotId
    long tagId
    Returns
    Type Description
    Task
    | Edit this page View Source

    EditScreenshot(long, long, IEnumerable<ScreenshotPatch>)

    Declaration
    Task<Screenshot> EditScreenshot(long projectId, long screenshotId, IEnumerable<ScreenshotPatch> patches)
    Parameters
    Type Name Description
    long projectId
    long screenshotId
    IEnumerable<ScreenshotPatch> patches
    Returns
    Type Description
    Task<Screenshot>
    | Edit this page View Source

    EditTag(long, long, long, IEnumerable<TagPatch>)

    Declaration
    Task<Screenshot> EditTag(long projectId, long screenshotId, long tagId, IEnumerable<TagPatch> patches)
    Parameters
    Type Name Description
    long projectId
    long screenshotId
    long tagId
    IEnumerable<TagPatch> patches
    Returns
    Type Description
    Task<Screenshot>
    | Edit this page View Source

    GetScreenshot(long, long)

    Declaration
    Task<Screenshot> GetScreenshot(long projectId, long screenshotId)
    Parameters
    Type Name Description
    long projectId
    long screenshotId
    Returns
    Type Description
    Task<Screenshot>
    | Edit this page View Source

    GetTag(long, long, long)

    Declaration
    Task<Tag> GetTag(long projectId, long screenshotId, long tagId)
    Parameters
    Type Name Description
    long projectId
    long screenshotId
    long tagId
    Returns
    Type Description
    Task<Tag>
    | Edit this page View Source

    ListScreenshots(long, int, int, IEnumerable<SortingRule>?, IEnumerable<long>?)

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

    ListTags(long, long, int, int)

    Declaration
    Task<ResponseList<Tag>> ListTags(long projectId, long screenshotId, int limit = 25, int offset = 0)
    Parameters
    Type Name Description
    long projectId
    long screenshotId
    int limit
    int offset
    Returns
    Type Description
    Task<ResponseList<Tag>>
    | Edit this page View Source

    ReplaceTags(long, long, AutoTagReplaceTagsRequest)

    Declaration
    Task ReplaceTags(long projectId, long screenshotId, AutoTagReplaceTagsRequest request)
    Parameters
    Type Name Description
    long projectId
    long screenshotId
    AutoTagReplaceTagsRequest request
    Returns
    Type Description
    Task
    | Edit this page View Source

    ReplaceTags(long, long, IEnumerable<AddTagRequest>)

    Declaration
    Task ReplaceTags(long projectId, long screenshotId, IEnumerable<AddTagRequest> request)
    Parameters
    Type Name Description
    long projectId
    long screenshotId
    IEnumerable<AddTagRequest> request
    Returns
    Type Description
    Task
    | Edit this page View Source

    UpdateScreenshot(long, long, UpdateScreenshotRequest)

    Declaration
    Task<Screenshot> UpdateScreenshot(long projectId, long screenshotId, UpdateScreenshotRequest request)
    Parameters
    Type Name Description
    long projectId
    long screenshotId
    UpdateScreenshotRequest request
    Returns
    Type Description
    Task<Screenshot>
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX