Search Results for

    Show / Hide Table of Contents

    Interface IStringCommentsApiExecutor

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

    Methods

    | Improve this Doc View Source

    AddStringComment(Int32, AddStringCommentRequest)

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

    DeleteStringComment(Int32, Int32)

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

    EditStringComment(Int32, Int32, IEnumerable<StringCommentPatch>)

    Declaration
    Task<StringComment> EditStringComment(int projectId, int stringCommentId, IEnumerable<StringCommentPatch> patches)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 stringCommentId
    IEnumerable<StringCommentPatch> patches
    Returns
    Type Description
    Task<StringComment>
    | Improve this Doc View Source

    GetStringComment(Int32, Int32)

    Declaration
    Task<StringComment> GetStringComment(int projectId, int stringCommentId)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 stringCommentId
    Returns
    Type Description
    Task<StringComment>
    | Improve this Doc View Source

    ListStringComments(Int32, StringCommentsListParams)

    Declaration
    Task<ResponseList<StringComment>> ListStringComments(int projectId, StringCommentsListParams params)
    Parameters
    Type Name Description
    System.Int32 projectId
    StringCommentsListParams params
    Returns
    Type Description
    Task<ResponseList<StringComment>>
    | Improve this Doc View Source

    ListStringComments(Int32, Int32, Int32, Nullable<Int32>, Nullable<StringCommentType>, Nullable<ISet<IssueType>>, Nullable<IssueStatus>, Nullable<IEnumerable<SortingRule>>)

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

    StringCommentBatchOperations(Int32, IEnumerable<StringCommentBatchOpPatch>)

    Declaration
    Task<ResponseList<StringComment>> StringCommentBatchOperations(int projectId, IEnumerable<StringCommentBatchOpPatch> patches)
    Parameters
    Type Name Description
    System.Int32 projectId
    IEnumerable<StringCommentBatchOpPatch> patches
    Returns
    Type Description
    Task<ResponseList<StringComment>>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX