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