代码拉取完成,页面将自动刷新
package client_hass
import "path"
type History struct {
EntityID string `json:"entity_id"`
Attributes map[string]any `json:"attributes"`
LastChanged string `json:"last_changed"`
LastUpdated string `json:"last_updated"`
State string `json:"state"`
}
type GetHistoryPeriodRequest struct {
*CommonRequest
FilterEntityID []string `in:"query" name:"filter_entity_id"`
EndTime *string `in:"query" name:"end_time,omitempty"`
MinimalResponse *bool `in:"query" name:"minimal_response,omitempty"`
NoAttributes *bool `in:"query" name:"no_attributes,omitempty"`
SignificantChangesOnly *bool `in:"query" name:"significant_changes_only,omitempty"`
}
func (c *clientHASS) GetHistoryPeriod(req GetHistoryPeriodRequest, timestamp string) (resp [][]History, err error) {
url := "/api/history/period"
if timestamp != "" {
url = path.Join(url, timestamp)
}
err = c.RequestWithToken("GET", url, req).Do().Into(&resp)
return
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。