CountStatus(状态)

使用 CountStatus 可报告各种项的统计状态,如投票类型或手写内容,或者计数是正在进行、尚未开始还是已完成。ContestElectionGpUnit 实体包含 CountStatus

元素

下表介绍了 CountStatus 的元素:

元素 多样性 类型 说明
Status 1 CountItemStatus 计数的状态。
Type 1 CountItemType 要统计的项目的类型。如果 CountStatus 项的类型未列在 CountItemType 枚举中,请将 Type 设置为 other,并将该自定义类型包含在 OtherType 中。
OtherType 0 或 1 string Typeother 时,用于指定要统计的内容的状态。

示例

XML

    <CountStatus>
      <Status>completed</Status>
      <Type>early</Type>
    </CountStatus>
    <CountStatus>
      <Status>in-process</Status>
      <Type>election-day</Type>
    </CountStatus>

JSON

    "CountStatus": [
      {
        "Status": "completed",
        "Type": "early"
      }
    ]
    "CountStatus": [
      {
        "Status": "in-process",
        "Type": "election-day"
      }
    ]