Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CreateOrJoinSessionInput ¶
type CreateOrJoinSessionInput struct {
ID string `form:"id"`
Team string `form:"team"`
Username string `form:"username"`
}
func (CreateOrJoinSessionInput) Validate ¶
func (input CreateOrJoinSessionInput) Validate() error
type GetSessionInput ¶
type GetSessionInput struct {
ID string `param:"id"`
}
func (GetSessionInput) Validate ¶
func (input GetSessionInput) Validate() error
type PatchSessionInput ¶
type PatchSessionInput struct {
SessionID string `param:"id"`
Summary string `form:"summary"`
URL string `form:"url"`
}
func (PatchSessionInput) Validate ¶
func (input PatchSessionInput) Validate() error
type PatchSizingTypeInput ¶
type PatchSizingTypeInput struct {
SessionID string `param:"id"`
SizingType string `param:"sizingType"`
}
func (PatchSizingTypeInput) Validate ¶
func (input PatchSizingTypeInput) Validate() error
type PatchSizingValueInput ¶
type PatchSizingValueInput struct {
SessionID string `param:"id"`
SizingType string `param:"sizingType"`
SizingValue string `param:"sizingValue"`
}
func (PatchSizingValueInput) Validate ¶
func (input PatchSizingValueInput) Validate() error
Click to show internal directories.
Click to hide internal directories.