This repository has been archived on 2020-07-09. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-sdk/model_tracked_time.go
jolheiser fc382e2e9d
Initial generation
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2020-01-10 20:43:26 -06:00

29 lines
711 B
Go

/*
* Gitea API.
*
* This documentation describes the Gitea API.
*
* API version: 1.1.1
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package gitea
import (
"time"
)
// TrackedTime worked time for an issue / pr
type TrackedTime struct {
Created time.Time `json:"created,omitempty"`
Id int64 `json:"id,omitempty"`
Issue *Issue `json:"issue,omitempty"`
// deprecated (only for backwards compatibility)
IssueId int64 `json:"issue_id,omitempty"`
// Time in seconds
Time int64 `json:"time,omitempty"`
// deprecated (only for backwards compatibility)
UserId int64 `json:"user_id,omitempty"`
UserName string `json:"user_name,omitempty"`
}