1 Star 0 Fork 0

eden-framework/client_hass

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
client_api_history_period.go 1019 Bytes
一键复制 编辑 原始数据 按行查看 历史
文兄 提交于 2023-05-25 10:02 . init
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
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eden-framework/client_hass.git
git@gitee.com:eden-framework/client_hass.git
eden-framework
client_hass
client_hass
main

搜索帮助