gitee.com/openeuler/go-gitee@v0.0.0-20220530104019-3af895bc380c/gitee/model_pull_request_files.go (about)

     1  /*
     2   * 码云 Open API
     3   *
     4   * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
     5   *
     6   * API version: 5.3.2
     7   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     8   */
     9  
    10  package gitee
    11  
    12  // Pull Request Commit文件列表。最多显示300条diff
    13  type PullRequestFiles struct {
    14  	Sha       string               `json:"sha,omitempty"`
    15  	Filename  string               `json:"filename,omitempty"`
    16  	Status    string               `json:"status,omitempty"`
    17  	Additions string               `json:"additions,omitempty"`
    18  	Deletions string               `json:"deletions,omitempty"`
    19  	BlobUrl   string               `json:"blob_url,omitempty"`
    20  	RawUrl    string               `json:"raw_url,omitempty"`
    21  	Patch     *PullRequestFilePath `json:"patch,omitempty"`
    22  }