package client type QueryByWhereAndOrderByRequest struct { TablePrefixWithSchema string Version string Select map[string][]any Where map[string][]any OrderBy []string PageNo int PageSize int } type CommonQueryRequest struct { TablePrefixWithSchema string Version string Select map[string][]any Where map[string][]any OrderBy []string Or map[string][]any GroupBy []string Joins map[string][]any Having map[string][]any PageNo int PageSize int } type QueryByKeysRequest struct { TablePrefixWithSchema string Version string Select map[string][]any KeyValues map[string]string } type CountWhereRequest struct { TablePrefixWithSchema string Version string Where map[string][]any } type CommonCountRequest struct { TablePrefixWithSchema string Version string Where map[string][]any Or map[string][]any GroupBy []string Joins map[string][]any Having map[string][]any } type EventQueryByKeysRequest struct { TablePrefixWithSchema string Select map[string][]any KeyValues []string PageNo int PageSize int } type CommonEventQueryRequest struct { TablePrefixWithSchema string Select map[string][]any KeyValues []string Version string Operation string CreatorID string StartCreatedTime string EndCreatedTime string PageNo int PageSize int } type CountEventByKeysRequest struct { TablePrefixWithSchema string KeyValues []string } type CommonCountEventRequest struct { TablePrefixWithSchema string KeyValues []string Version string Operation string CreatorID string StartCreatedTime string EndCreatedTime string }