v1.5.0-delta

This commit is contained in:
Никита Сорокин
2023-07-13 15:28:07 +03:00
parent 7c787f6fce
commit 5025a17ea4
71 changed files with 1602 additions and 936 deletions

View File

@@ -45,6 +45,13 @@ func (r *InfoResult) UnmarshalJSON(b []byte) error {
// Detailed information about task
type RecordTask struct {
// Updated by
UpdatedBy string `json:"updatedBy"`
ItemTask
}
type ItemTask struct {
// Audit ID
AuditID string `json:"auditId"`
@@ -74,4 +81,10 @@ type RecordTask struct {
}
// List of tasks
type ListTasks []RecordTask
type ListTasks struct {
// Data
Data []ItemTask `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}