2019-05-11 10:21:34 +00:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-11 10:21:34 +00:00
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PublicKey publickey is a user key to push code to repository
|
|
|
|
type PublicKey struct {
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
Key string `json:"key"`
|
|
|
|
URL string `json:"url,omitempty"`
|
|
|
|
Title string `json:"title,omitempty"`
|
|
|
|
Fingerprint string `json:"fingerprint,omitempty"`
|
|
|
|
// swagger:strfmt date-time
|
|
|
|
Created time.Time `json:"created_at,omitempty"`
|
|
|
|
Owner *User `json:"user,omitempty"`
|
|
|
|
ReadOnly bool `json:"read_only,omitempty"`
|
|
|
|
KeyType string `json:"key_type,omitempty"`
|
|
|
|
}
|