Documentation
¶
Index ¶
- type AddSessionTicketsReqBody
- type AddSessionsReqBody
- type AddTicketsReqBody
- type BlockPairedMembersReqBody
- type BlockedBy
- type BlockedByMemberParam
- type MembersReqBody
- type OtherItemParam
- type PlanForToday
- type ProfileReqBody
- type ResetPasswordReqBody
- type SessionOtherItemReqBody
- type SessionParam
- type SessionReqBody
- type SessionTicketReqBody
- type SignInReqBody
- type SignupReqBody
- type StatusOtherItemsReqBody
- type StatusParam
- type StatusReqBody
- type StatusSessionOtherItemsReqBody
- type TeamParam
- type TeamReqBody
- type TicketParam
- type TicketReqBody
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddSessionTicketsReqBody ¶
type AddSessionTicketsReqBody struct {
Tickets []SessionTicketReqBody `json:"tickets"`
}
type AddSessionsReqBody ¶
type AddSessionsReqBody struct {
Sessions []SessionReqBody `json:"sessions"`
}
type AddTicketsReqBody ¶
type AddTicketsReqBody struct {
Tickets []TicketReqBody `json:"tickets"`
}
type BlockPairedMembersReqBody ¶ added in v1.0.4
type BlockPairedMembersReqBody struct {
Members []common.PairedMember `json:"members"`
}
type BlockedBy ¶
type BlockedBy struct {
Tickets []TicketReqBody `json:"tickets"`
OtherItems []string `json:"otherItems"`
Members []common.PairedMember `json:"members"`
}
type BlockedByMemberParam ¶ added in v1.0.4
type MembersReqBody ¶ added in v1.0.4
type MembersReqBody struct {
Members []common.MemberReqBody `json:"members"`
}
type OtherItemParam ¶
type PlanForToday ¶
type PlanForToday struct {
Tickets []TicketReqBody `json:"tickets"`
OtherItems []string `json:"otherItems"`
}
type ProfileReqBody ¶
type ProfileReqBody struct {
UserID string `json:"userID"`
Name common.ProfileName `json:"Name"`
PhoneNumbers []common.PhoneNumber `json:"phoneNumbers"`
EmailAddresses []common.EmailAddress `json:"emailAddresses"`
}
type ResetPasswordReqBody ¶
type SessionOtherItemReqBody ¶
type SessionParam ¶
type SessionReqBody ¶
type SessionReqBody struct {
SequenceId int `json:"sequenceId"`
Tickets []SessionTicketReqBody `json:"tickets"`
OtherItems []SessionOtherItemReqBody `json:"otherItems"`
}
type SessionTicketReqBody ¶
type SessionTicketReqBody struct {
TicketID string `json:"ticketID"`
Type string `json:"type"`
Url string `json:"url"`
Description string `json:"description"`
Status string `json:"status"`
TimeSpent float32 `json:"timeSpent"`
PullRequest common.PullRequest `json:"pullRequest"`
PairedMembers []common.PairedMember `json:"pairedWith"`
}
type SignInReqBody ¶
type SignupReqBody ¶
type StatusOtherItemsReqBody ¶
type StatusOtherItemsReqBody struct {
OtherItems []string `json:"otherItems"`
}
type StatusParam ¶
type StatusReqBody ¶
type StatusReqBody struct {
MemberId *string `json:"memberID"`
StatusDate string `json:"statusDate"`
PlanForToday PlanForToday `json:"planForToday"`
Sessions []SessionReqBody `json:"sessions"`
BlockedBy BlockedBy `json:"blockedBy"`
}
type StatusSessionOtherItemsReqBody ¶
type StatusSessionOtherItemsReqBody struct {
OtherItems []SessionOtherItemReqBody `json:"otherItems"`
}
type TeamReqBody ¶
type TeamReqBody struct {
Name string `json:"name"`
}
type TicketParam ¶
Click to show internal directories.
Click to hide internal directories.