aboutsummaryrefslogtreecommitdiffstats
path: root/modules/structs/git_blob.go
blob: 643b69ed3726a3eb01eec9e6c6f01bb965518cd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package structs

// GitBlobResponse represents a git blob
type GitBlobResponse struct {
	Content  *string `json:"content"`
	Encoding *string `json:"encoding"`
	URL      string  `json:"url"`
	SHA      string  `json:"sha"`
	Size     int64   `json:"size"`

	LfsOid  *string `json:"lfs_oid,omitempty"`
	LfsSize *int64  `json:"lfs_size,omitempty"`
}