Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type OrganizationCreateReq ¶
type OrganizationCreateReq struct {
Title string `json:"title"`
}
OrganizationCreateReq запрос на создание организации.
type OrganizationCreateResp ¶
type OrganizationCreateResp struct {
ID int64 `json:"id"`
}
OrganizationCreateResp ответ на создание организации.
type OrganizationDao ¶
OrganizationDao организация в базе данных.
func (OrganizationDao) ToDto ¶
func (o OrganizationDao) ToDto() OrganizationDto
ToDto конвертирует OrganizationDao в OrganizationDto.
type OrganizationDto ¶
type OrganizationDto struct { Title string `json:"title"` ID int64 `json:"id"` CreatedAt time.Time `json:"created_at"` }
OrganizationDto организация для передачи внутри сервиса.
type OrganizationUpdateReq ¶
OrganizationUpdateReq запрос на обновление названия организации.
Click to show internal directories.
Click to hide internal directories.