Search Results for

    Show / Hide Table of Contents

    Interface IStringCommentsApiExecutor

    Namespace: Crowdin.Api.StringComments
    Assembly: Crowdin.Api.dll
    Syntax
    [PublicAPI]
    public interface IStringCommentsApiExecutor

    Methods

    | Edit this page View Source

    AddStringComment(long, AddStringCommentRequest)

    Declaration
    Task<StringComment> AddStringComment(long projectId, AddStringCommentRequest request)
    Parameters
    Type Name Description
    long projectId
    AddStringCommentRequest request
    Returns
    Type Description
    Task<StringComment>
    | Edit this page View Source

    DeleteStringComment(long, long)

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

    EditStringComment(long, long, IEnumerable<StringCommentPatch>)

    Declaration
    Task<StringComment> EditStringComment(long projectId, long stringCommentId, IEnumerable<StringCommentPatch> patches)
    Parameters
    Type Name Description
    long projectId
    long stringCommentId
    IEnumerable<StringCommentPatch> patches
    Returns
    Type Description
    Task<StringComment>
    | Edit this page View Source

    GetStringComment(long, long)

    Declaration
    Task<StringComment> GetStringComment(long projectId, long stringCommentId)
    Parameters
    Type Name Description
    long projectId
    long stringCommentId
    Returns
    Type Description
    Task<StringComment>
    | Edit this page View Source

    ListStringComments(long, StringCommentsListParams)

    Declaration
    Task<ResponseList<StringComment>> ListStringComments(long projectId, StringCommentsListParams @params)
    Parameters
    Type Name Description
    long projectId
    StringCommentsListParams params
    Returns
    Type Description
    Task<ResponseList<StringComment>>
    | Edit this page View Source

    ListStringComments(long, int, int, long?, StringCommentType?, ISet<IssueType>?, IssueStatus?, IEnumerable<SortingRule>?)

    Declaration
    Task ListStringComments(long projectId, int limit = 25, int offset = 0, long? stringId = null, StringCommentType? type = null, ISet<IssueType>? issueTypes = null, IssueStatus? issueStatus = null, IEnumerable<SortingRule>? orderBy = null)
    Parameters
    Type Name Description
    long projectId
    int limit
    int offset
    long? stringId
    StringCommentType? type
    ISet<IssueType> issueTypes
    IssueStatus? issueStatus
    IEnumerable<SortingRule> orderBy
    Returns
    Type Description
    Task
    | Edit this page View Source

    StringCommentBatchOperations(long, IEnumerable<StringCommentBatchOpPatch>)

    Declaration
    Task<ResponseList<StringComment>> StringCommentBatchOperations(long projectId, IEnumerable<StringCommentBatchOpPatch> patches)
    Parameters
    Type Name Description
    long projectId
    IEnumerable<StringCommentBatchOpPatch> patches
    Returns
    Type Description
    Task<ResponseList<StringComment>>
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX