# TaskCommentDto

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    TaskCommentDto:
      type: object
      properties:
        tenantId:
          type: integer
          format: int64
        taskCommentId:
          type: integer
          format: int64
        comment:
          type: string
        content:
          type: object
          properties: {}
        viaMail:
          type: boolean
        taskId:
          type: integer
          format: int64
        projectId:
          type: integer
          format: int64
        spaceId:
          type: integer
          format: int64
        parentCommentId:
          type: integer
          format: int64
        parentTaskId:
          type: integer
          format: int64
        createdBy:
          type: object
          properties: {}
        mentionedUserIds:
          type: array
          items:
            type: integer
            format: int64
        createdTime:
          type: string
          format: date-time
        modifiedTime:
          type: string
          format: date-time
        taskName:
          type: string
        projectName:
          type: string
        spaceName:
          type: string
      x-apidog-orders:
        - tenantId
        - taskCommentId
        - comment
        - content
        - viaMail
        - taskId
        - projectId
        - spaceId
        - parentCommentId
        - parentTaskId
        - createdBy
        - mentionedUserIds
        - createdTime
        - modifiedTime
        - taskName
        - projectName
        - spaceName
      x-apidog-folder: ''
  securitySchemes:
    oauth21:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: '{{auth-url}}/realms/astravue/protocol/openid-connect/auth'
          tokenUrl: '{{auth-url}}/realms/astravue/protocol/openid-connect/token'
          refreshUrl: ''
          scopes: {}
          x-apidog:
            addTokenTo: header
            useTokenType: access_token
            queryParamKey: access_token
            headerPrefix: Bearer
            redirectUri: https://app.apidog.com/oauth2-browser-callback.html
            clientId: '{{client-id}}'
            clientSecret: ''
            codeVerifier: ''
            challengeAlgorithm: S256
            clientAuthentication: header
            useTokenConfigAsRefreshTokenConfig: true
            authRequestParams: []
            tokenRequestParams: []
servers:
  - url: https://api.astravue.com
    description: Astravue's Production
security:
  - oauth21: []

```
