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

29 lines
942 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
// MigrateRepoForm form for migrating repository
type MigrateRepoForm struct {
AuthPassword string `json:"auth_password,omitempty"`
AuthUsername string `json:"auth_username,omitempty"`
CloneAddr string `json:"clone_addr"`
Description string `json:"description,omitempty"`
Issues bool `json:"issues,omitempty"`
Labels bool `json:"labels,omitempty"`
Milestones bool `json:"milestones,omitempty"`
Mirror bool `json:"mirror,omitempty"`
Private bool `json:"private,omitempty"`
PullRequests bool `json:"pull_requests,omitempty"`
Releases bool `json:"releases,omitempty"`
RepoName string `json:"repo_name"`
Uid int64 `json:"uid"`
Wiki bool `json:"wiki,omitempty"`
}