tidy3d.web.task.TaskInfo#

class tidy3d.web.task.TaskInfo#

general information about task

Show JSON schema
{
   "title": "TaskInfo",
   "description": "general information about task",
   "type": "object",
   "properties": {
      "taskId": {
         "title": "Taskid",
         "type": "string"
      },
      "taskName": {
         "title": "Taskname",
         "type": "string"
      },
      "nodeSize": {
         "title": "Nodesize",
         "type": "integer"
      },
      "completedAt": {
         "title": "Completedat",
         "type": "string",
         "format": "date-time"
      },
      "status": {
         "title": "Status",
         "type": "string"
      },
      "realCost": {
         "title": "Realcost",
         "type": "number"
      },
      "timeSteps": {
         "title": "Timesteps",
         "type": "integer"
      },
      "solverVersion": {
         "title": "Solverversion",
         "type": "string"
      },
      "createAt": {
         "title": "Createat",
         "type": "string",
         "format": "date-time"
      },
      "estCostMin": {
         "title": "Estcostmin",
         "type": "number"
      },
      "estCostMax": {
         "title": "Estcostmax",
         "type": "number"
      },
      "realFlexUnit": {
         "title": "Realflexunit",
         "type": "number"
      },
      "estFlexUnit": {
         "title": "Estflexunit",
         "type": "number"
      },
      "s3Storage": {
         "title": "S3Storage",
         "type": "number"
      },
      "startSolverTime": {
         "title": "Startsolvertime",
         "type": "string",
         "format": "date-time"
      },
      "finishSolverTime": {
         "title": "Finishsolvertime",
         "type": "string",
         "format": "date-time"
      },
      "totalSolverTime": {
         "title": "Totalsolvertime",
         "type": "integer"
      },
      "callbackUrl": {
         "title": "Callbackurl",
         "type": "string"
      },
      "taskType": {
         "title": "Tasktype",
         "type": "string"
      }
   },
   "required": [
      "taskId"
   ]
}

attribute callbackUrl: str = None#
attribute completedAt: Optional[datetime.datetime] = None#
attribute createAt: Optional[datetime.datetime] = None#
attribute estCostMax: float = None#
attribute estCostMin: float = None#
attribute estFlexUnit: float = None#
attribute finishSolverTime: Optional[datetime.datetime] = None#
attribute nodeSize: int = None#
attribute realCost: float = None#
attribute realFlexUnit: float = None#
attribute s3Storage: float = None#
attribute solverVersion: str = None#
attribute startSolverTime: Optional[datetime.datetime] = None#
attribute status: str = None#
attribute taskId: str [Required]#
attribute taskName: str = None#
attribute taskType: str = None#
attribute timeSteps: int = None#
attribute totalSolverTime: int = None#