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"
      }
    ]