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_file_commit_response.go
John Olheiser fc382e2e9d
Initial generation
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2020-01-10 20:43:26 -06:00

22 lines
632 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
type FileCommitResponse struct {
Author *CommitUser `json:"author,omitempty"`
Committer *CommitUser `json:"committer,omitempty"`
HtmlUrl string `json:"html_url,omitempty"`
Message string `json:"message,omitempty"`
Parents []CommitMeta `json:"parents,omitempty"`
Sha string `json:"sha,omitempty"`
Tree *CommitMeta `json:"tree,omitempty"`
Url string `json:"url,omitempty"`
}