Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ReleaseFileVersionDo ¶
type ReleaseFileVersionDo struct { // 发布库文件的版本 Version *string `json:"version,omitempty"` // 发布库文件的路径 Path *string `json:"path,omitempty"` // 发布库文件的下载链接 DownloadUrl *string `json:"download_url,omitempty"` }
发布文件版本信息
func (ReleaseFileVersionDo) String ¶
func (o ReleaseFileVersionDo) String() string
type ShowProjectReleaseFilesRequest ¶
type ShowProjectReleaseFilesRequest struct { // 文件名称,模糊搜索 FileName string `json:"file_name"` // 每页显示的条目数量 Limit *int32 `json:"limit,omitempty"` // 偏移量,表示从此偏移量开始查询, offset大于等于0 Offset *int32 `json:"offset,omitempty"` // 华为云devcloud的项目id ProjectId string `json:"project_id"` }
Request Object
func (ShowProjectReleaseFilesRequest) String ¶
func (o ShowProjectReleaseFilesRequest) String() string
type ShowProjectReleaseFilesResponse ¶
type ShowProjectReleaseFilesResponse struct { Result *StandardResponseResult `json:"result,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ShowProjectReleaseFilesResponse) String ¶
func (o ShowProjectReleaseFilesResponse) String() string
type ShowReleaseProjectFilesRequest ¶
type ShowReleaseProjectFilesRequest struct { // 文件名称,模糊搜索 FileName string `json:"file_name"` // 每页显示的条目数量 Limit *int32 `json:"limit,omitempty"` // 偏移量,表示从此偏移量开始查询, offset大于等于0 Offset *int32 `json:"offset,omitempty"` // 华为云devcloud的项目id ProjectId string `json:"project_id"` }
Request Object
func (ShowReleaseProjectFilesRequest) String ¶
func (o ShowReleaseProjectFilesRequest) String() string
type ShowReleaseProjectFilesResponse ¶
type ShowReleaseProjectFilesResponse struct { Result *StandardResponseResult `json:"result,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ShowReleaseProjectFilesResponse) String ¶
func (o ShowReleaseProjectFilesResponse) String() string
type StandardResponseResult ¶
type StandardResponseResult struct { // 符合条件的结果列表 Data *[]ReleaseFileVersionDo `json:"data,omitempty"` // 符合条件的结果总数 TotalRecords *int32 `json:"total_records,omitempty"` // 符合条件的结果总页数 TotalPages *int32 `json:"total_pages,omitempty"` }
返回的具体结果信息
func (StandardResponseResult) String ¶
func (o StandardResponseResult) String() string
Click to show internal directories.
Click to hide internal directories.