package
Version:
v0.0.0-...-c60c4f7
Opens a new window with list of versions in this module.
Published: Aug 11, 2023
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
¶
type CreateProjectReq struct {
OrgId int64 `json:"org_id"`
Name string `json:"name"`
Description string `json:"description"`
Timezone string `json:"timezone"`
DefaultLanguage string `json:"default_language"`
}
CreateProjectReq represent create project request body
type SearchProjectsReq struct {
Limit int64 `json:"limit" query:"limit"`
Page int64 `json:"page" query:"page"`
OrgId int64 `json:"org_id" query:"org_id"`
}
type UpdateProjectReq struct {
ID int64 `json:"-" param:"projectId"`
Name string `json:"name"`
Description string `json:"description"`
Timezone string `json:"timezone"`
DefaultLanguage string `json:"default_language"`
}
UpdateProjectReq represent update project request body
Source Files
¶
Click to show internal directories.
Click to hide internal directories.