Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CreateProjectForm = Type("CreateProjectForm", func() { Required("organization_id", "name") security.ByKeyPayload() security.SessionPayload() Attribute("organization_id", String, "The ID of the organization to create the project in") Attribute("name", String, "The name of the project", func() { MaxLength(40) }) })
View Source
var CreateProjectResult = Type("CreateProjectResult", func() { Required("project") Attribute("project", shared.Project, "The created project") })
View Source
var ListProjectsPayload = Type("ListProjectsPayload", func() { Required("organization_id") security.ByKeyPayload() security.SessionPayload() Attribute("organization_id", String, "The ID of the organization to list projects for") })
View Source
var ListProjectsResult = Type("ListProjectsResult", func() { Required("projects") Attribute("projects", ArrayOf(shared.ProjectEntry), "The list of projects") })
View Source
var SetProjectLogoForm = Type("SetProjectLogoForm", func() {
Required("asset_id")
Attribute("asset_id", String, "The ID of the asset")
})
View Source
var SetProjectLogoResult = Type("SetProjectLogoResult", func() { Required("project") Attribute("project", shared.Project, "The updated project with the new logo") })
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.