Discover Packages
github.com/dlbroadfoot/bitbucket-cli
pkg
cmd
project
shared
package
Version:
v1.0.0
Opens a new window with list of versions in this module.
Published: Dec 12, 2025
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type Links struct {
HTML struct {
Href string `json:"href"`
} `json:"html"`
Self struct {
Href string `json:"href"`
} `json:"self"`
Avatar struct {
Href string `json:"href"`
} `json:"avatar"`
}
type Owner struct {
DisplayName string `json:"display_name"`
UUID string `json:"uuid"`
Username string `json:"username"`
Slug string `json:"slug"`
Links Links `json:"links"`
}
type Project struct {
Key string `json:"key"`
UUID string `json:"uuid"`
Name string `json:"name"`
Description string `json:"description"`
IsPrivate bool `json:"is_private"`
CreatedOn string `json:"created_on"`
UpdatedOn string `json:"updated_on"`
Owner *Owner `json:"owner,omitempty"`
Workspace *Owner `json:"workspace,omitempty"`
Links Links `json:"links"`
}
Project represents a Bitbucket project
HTMLURL returns the web URL for the project
type ProjectList struct {
Size int `json:"size"`
Page int `json:"page"`
PageLen int `json:"pagelen"`
Next string `json:"next"`
Previous string `json:"previous"`
Values []Project `json:"values"`
}
ProjectList represents a paginated list of projects
Source Files
¶
Click to show internal directories.
Click to hide internal directories.