Documentation ¶
Index ¶
- type ConduitCapabilitiesResponse
- type ConduitConnectResponse
- type ConduitQueryResponse
- type DifferentialQueryResponse
- type DiffusionQueryCommitsResponse
- type FileDownloadResponse
- type MacroCreateMemeResponse
- type ManiphestQueryResponse
- type PHIDLookupResponse
- type PHIDQueryResponse
- type PasteCreateResponse
- type PasteQueryResponse
- type ProjectQueryResponse
- type RepositoryQueryResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConduitCapabilitiesResponse ¶
type ConduitCapabilitiesResponse struct { Authentication []string `json:"authentication"` Signatures []string `json:"signatures"` Input []string `json:"input"` Output []string `json:"output"` }
ConduitCapabilitiesResponse represents a response from calling conduit.capabilities.
type ConduitConnectResponse ¶
type ConduitConnectResponse struct { SessionKey string `json:"sessionKey"` ConnectionID int64 `json:"connectionID"` }
ConduitConnectResponse represents the response from calling conduit.connect.
type ConduitQueryResponse ¶ added in v0.2.0
type ConduitQueryResponse map[string]*entities.ConduitMethod
ConduitQueryResponse is the response of calling conduit.query.
type DifferentialQueryResponse ¶
type DifferentialQueryResponse []*entities.DifferentialRevision
DifferentialQueryResponse is the response of calling differential.query.
type DiffusionQueryCommitsResponse ¶
type DiffusionQueryCommitsResponse struct { Data map[string]entities.DiffusionCommit `json:"data"` IdentifierMap map[string]string `json:"identifierMap"` Cursor entities.Cursor `json:"cursor"` }
DiffusionQueryCommitsResponse represents a response of the diffusion.querycommits call.
type FileDownloadResponse ¶
type FileDownloadResponse struct {
Result string `json:"result"`
}
FileDownloadResponse represents a response from calling file.download.
type MacroCreateMemeResponse ¶
type MacroCreateMemeResponse struct {
URI string `json:"uri"`
}
MacroCreateMemeResponse represents a response from calling macro.creatememe.
type ManiphestQueryResponse ¶
type ManiphestQueryResponse map[string]*entities.ManiphestTask
ManiphestQueryResponse is the response of calling maniphest.query.
func (ManiphestQueryResponse) Get ¶
func (res ManiphestQueryResponse) Get(key string) *entities.ManiphestTask
Get gets the task with the speicfied numeric ID.
type PHIDLookupResponse ¶
type PHIDLookupResponse map[string]*entities.PHIDResult
PHIDLookupResponse is the result of phid.lookup operations.
type PHIDQueryResponse ¶
type PHIDQueryResponse map[string]*entities.PHIDResult
PHIDQueryResponse is the result of phid.query operations.
type PasteCreateResponse ¶
PasteCreateResponse represents the result of calling paste.create.
type PasteQueryResponse ¶
PasteQueryResponse represents the result of calling paste.query.
type ProjectQueryResponse ¶
type ProjectQueryResponse struct { Data map[string]entities.Project `json:"data"` SlugMap map[string]string `json:"sligMap"` Cursor entities.Cursor `json:"cursor"` }
ProjectQueryResponse represents a response from calling project.query.
type RepositoryQueryResponse ¶
type RepositoryQueryResponse []*entities.Repository
RepositoryQueryResponse is the result of repository.query operations.